Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
010af98f32
commit
eb5ecb207c
|
@ -4,6 +4,15 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## [ntfy-6.0.1](https://github.com/truecharts/charts/compare/ntfy-6.0.0...ntfy-6.0.1) (2023-08-12)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- enable prometheus metrics ([#11389](https://github.com/truecharts/charts/issues/11389))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [ntfy-6.0.0](https://github.com/truecharts/charts/compare/ntfy-5.0.20...ntfy-6.0.0) (2023-07-31)
|
## [ntfy-6.0.0](https://github.com/truecharts/charts/compare/ntfy-5.0.20...ntfy-6.0.0) (2023-07-31)
|
||||||
|
|
||||||
|
@ -88,12 +97,3 @@
|
||||||
|
|
||||||
## [ntfy-5.0.12](https://github.com/truecharts/charts/compare/ntfy-5.0.11...ntfy-5.0.12) (2023-05-27)
|
## [ntfy-5.0.12](https://github.com/truecharts/charts/compare/ntfy-5.0.11...ntfy-5.0.12) (2023-05-27)
|
||||||
|
|
||||||
### Chore
|
|
||||||
|
|
||||||
- update helm general non-major ([#9197](https://github.com/truecharts/charts/issues/9197))
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [ntfy-5.0.11](https://github.com/truecharts/charts/compare/ntfy-5.0.10...ntfy-5.0.11) (2023-05-26)
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ name: ntfy
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/truecharts/charts/tree/master/charts/stable/ntfy
|
- https://github.com/truecharts/charts/tree/master/charts/stable/ntfy
|
||||||
- https://github.com/binwiederhier/ntfy/
|
- https://github.com/binwiederhier/ntfy/
|
||||||
version: 6.0.0
|
version: 6.0.1
|
||||||
annotations:
|
annotations:
|
||||||
truecharts.org/catagories: |
|
truecharts.org/catagories: |
|
||||||
- media
|
- media
|
|
@ -0,0 +1,9 @@
|
||||||
|
|
||||||
|
|
||||||
|
## [ntfy-6.0.1](https://github.com/truecharts/charts/compare/ntfy-6.0.0...ntfy-6.0.1) (2023-08-12)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- enable prometheus metrics ([#11389](https://github.com/truecharts/charts/issues/11389))
|
||||||
|
|
||||||
|
|
|
@ -50,6 +50,7 @@ workload:
|
||||||
ENABLE_CACHE_FILE: false
|
ENABLE_CACHE_FILE: false
|
||||||
ENABLE_ATTACHMENT_CACHE_DIR: false
|
ENABLE_ATTACHMENT_CACHE_DIR: false
|
||||||
ENABLE_AUTH_FILE: false
|
ENABLE_AUTH_FILE: false
|
||||||
|
NTFY_ENABLE_METRICS: "{{ .Values.metrics.main.enabled }}"
|
||||||
# NTFY_CACHE_DURATION: "12h"
|
# NTFY_CACHE_DURATION: "12h"
|
||||||
# NTFY_KEEPALIVE_INTERVAL: "45s"
|
# NTFY_KEEPALIVE_INTERVAL: "45s"
|
||||||
# NTFY_MANAGER_INTERVAL: "1m"
|
# NTFY_MANAGER_INTERVAL: "1m"
|
||||||
|
@ -76,3 +77,31 @@ workload:
|
||||||
envFrom:
|
envFrom:
|
||||||
- configMapRef:
|
- configMapRef:
|
||||||
name: "ntfy"
|
name: "ntfy"
|
||||||
|
|
||||||
|
metrics:
|
||||||
|
main:
|
||||||
|
# -- Enable and configure a Prometheus serviceMonitor for the chart under this key.
|
||||||
|
# @default -- See values.yaml
|
||||||
|
enabled: false
|
||||||
|
type: "servicemonitor"
|
||||||
|
endpoints:
|
||||||
|
- port: main
|
||||||
|
path: /metrics
|
||||||
|
# -- Enable and configure Prometheus Rules for the chart under this key.
|
||||||
|
# @default -- See values.yaml
|
||||||
|
prometheusRule:
|
||||||
|
enabled: false
|
||||||
|
labels: {}
|
||||||
|
# -- Configure additionial rules for the chart under this key.
|
||||||
|
# @default -- See prometheusrules.yaml
|
||||||
|
rules:
|
||||||
|
[]
|
||||||
|
# - alert: UnifiPollerAbsent
|
||||||
|
# annotations:
|
||||||
|
# description: Unifi Poller has disappeared from Prometheus service discovery.
|
||||||
|
# summary: Unifi Poller is down.
|
||||||
|
# expr: |
|
||||||
|
# absent(up{job=~".*unifi-poller.*"} == 1)
|
||||||
|
# for: 5m
|
||||||
|
# labels:
|
||||||
|
# severity: critical
|
|
@ -1572,6 +1572,41 @@ questions:
|
||||||
type: string
|
type: string
|
||||||
default: workaround
|
default: workaround
|
||||||
hidden: true
|
hidden: true
|
||||||
|
- variable: metrics
|
||||||
|
group: Metrics
|
||||||
|
label: Prometheus Metrics
|
||||||
|
schema:
|
||||||
|
additional_attrs: true
|
||||||
|
type: dict
|
||||||
|
attrs:
|
||||||
|
- variable: main
|
||||||
|
label: Main Metrics
|
||||||
|
schema:
|
||||||
|
additional_attrs: true
|
||||||
|
type: dict
|
||||||
|
attrs:
|
||||||
|
- variable: enabled
|
||||||
|
label: Enabled
|
||||||
|
description: Enable Prometheus Metrics
|
||||||
|
schema:
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
|
show_subquestions_if: true
|
||||||
|
subquestions:
|
||||||
|
- variable: prometheusRule
|
||||||
|
label: PrometheusRule
|
||||||
|
description: Enable and configure Prometheus Rules for the App.
|
||||||
|
schema:
|
||||||
|
additional_attrs: true
|
||||||
|
type: dict
|
||||||
|
attrs:
|
||||||
|
- variable: enabled
|
||||||
|
label: Enabled
|
||||||
|
description: Enable Prometheus Metrics
|
||||||
|
schema:
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
|
# TODO: Rule List section
|
||||||
# - variable: horizontalPodAutoscaler
|
# - variable: horizontalPodAutoscaler
|
||||||
# group: Advanced
|
# group: Advanced
|
||||||
# label: (Advanced) Horizontal Pod Autoscaler
|
# label: (Advanced) Horizontal Pod Autoscaler
|
|
@ -0,0 +1,13 @@
|
||||||
|
**Important:**
|
||||||
|
*for the complete changelog, please refer to the website*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## [static-web-server-1.0.0](https://github.com/truecharts/charts/compare/static-web-server-0.0.2...static-web-server-1.0.0) (2023-08-12)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- Move to stable ([#11391](https://github.com/truecharts/charts/issues/11391))
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
apiVersion: v2
|
||||||
|
appVersion: "2.20.2"
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: https://library-charts.truecharts.org
|
||||||
|
version: 14.0.1
|
||||||
|
deprecated: false
|
||||||
|
description: A cross-platform, high-performance and asynchronous web server for static files-serving.
|
||||||
|
home: https://truecharts.org/charts/stable/static-web-server
|
||||||
|
icon: https://truecharts.org/img/hotlink-ok/chart-icons/static-web-server.png
|
||||||
|
keywords:
|
||||||
|
- web-server
|
||||||
|
- apache
|
||||||
|
- rust
|
||||||
|
kubeVersion: ">=1.16.0-0"
|
||||||
|
maintainers:
|
||||||
|
- email: info@truecharts.org
|
||||||
|
name: TrueCharts
|
||||||
|
url: https://truecharts.org
|
||||||
|
name: static-web-server
|
||||||
|
sources:
|
||||||
|
- https://github.com/truecharts/charts/tree/master/charts/stable/static-web-server
|
||||||
|
- https://github.com/static-web-server/static-web-server
|
||||||
|
- https://static-web-server.net
|
||||||
|
type: application
|
||||||
|
version: 1.0.0
|
||||||
|
annotations:
|
||||||
|
truecharts.org/catagories: |
|
||||||
|
- web-server
|
||||||
|
- networking
|
||||||
|
truecharts.org/SCALE-support: "true"
|
|
@ -0,0 +1,27 @@
|
||||||
|
# README
|
||||||
|
|
||||||
|
## General Info
|
||||||
|
|
||||||
|
TrueCharts can be installed as both *normal* Helm Charts or as Apps on TrueNAS SCALE.
|
||||||
|
However only installations using the TrueNAS SCALE Apps system are supported.
|
||||||
|
|
||||||
|
For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/incubator/)
|
||||||
|
|
||||||
|
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)**
|
||||||
|
|
||||||
|
|
||||||
|
## Support
|
||||||
|
|
||||||
|
- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE/guides/scale-intro).
|
||||||
|
- See the [Website](https://truecharts.org)
|
||||||
|
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
|
||||||
|
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Sponsor TrueCharts
|
||||||
|
|
||||||
|
TrueCharts can only exist due to the incredible effort of our staff.
|
||||||
|
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
|
||||||
|
|
||||||
|
*All Rights Reserved - The TrueCharts Project*
|
|
@ -0,0 +1,9 @@
|
||||||
|
|
||||||
|
|
||||||
|
## [static-web-server-1.0.0](https://github.com/truecharts/charts/compare/static-web-server-0.0.2...static-web-server-1.0.0) (2023-08-12)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- Move to stable ([#11391](https://github.com/truecharts/charts/issues/11391))
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
A cross-platform, high-performance and asynchronous web server for static files-serving.
|
||||||
|
|
||||||
|
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/static-web-server](https://truecharts.org/charts/stable/static-web-server)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
TrueCharts can only exist due to the incredible effort of our staff.
|
||||||
|
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
|
Binary file not shown.
|
@ -0,0 +1,36 @@
|
||||||
|
image:
|
||||||
|
repository: tccr.io/truecharts/static-web-server
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
tag: v2.20.2@sha256:cde29086b0c99d70965d4bb816499feeccc262d2f7d3465972bc3ccd888b4339
|
||||||
|
|
||||||
|
service:
|
||||||
|
main:
|
||||||
|
ports:
|
||||||
|
main:
|
||||||
|
protocol: http
|
||||||
|
port: 38080
|
||||||
|
|
||||||
|
workload:
|
||||||
|
main:
|
||||||
|
podSpec:
|
||||||
|
containers:
|
||||||
|
main:
|
||||||
|
env:
|
||||||
|
SERVER_PORT: "{{ .Values.service.main.ports.main.port }}"
|
||||||
|
SERVER_ROOT: "/public"
|
||||||
|
probes:
|
||||||
|
liveness:
|
||||||
|
type: tcp
|
||||||
|
readiness:
|
||||||
|
type: tcp
|
||||||
|
startup:
|
||||||
|
type: tcp
|
||||||
|
|
||||||
|
persistence:
|
||||||
|
config:
|
||||||
|
enabled: true
|
||||||
|
mountPath: "/public"
|
||||||
|
|
||||||
|
portal:
|
||||||
|
open:
|
||||||
|
enabled: true
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1 @@
|
||||||
|
{{- include "tc.v1.common.lib.chart.notes" $ -}}
|
|
@ -0,0 +1 @@
|
||||||
|
{{ include "tc.v1.common.loader.all" . }}
|
|
@ -0,0 +1,6 @@
|
||||||
|
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/static-web-server.png
|
||||||
|
categories:
|
||||||
|
- web-server
|
||||||
|
- networking
|
||||||
|
|
||||||
|
screenshots: []
|
Loading…
Reference in New Issue