Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-01-21 12:01:01 +00:00
parent da3a0dfd03
commit 4082c53c6e
14 changed files with 29 additions and 46 deletions

View File

@ -1,9 +0,0 @@
## [uptime-kuma-5.0.14](https://github.com/truecharts/charts/compare/uptime-kuma-5.0.13...uptime-kuma-5.0.14) (2023-01-19)
### Chore
- update container image tccr.io/truecharts/uptime-kuma to v1.19.6

View File

@ -1,15 +0,0 @@
{{- include "tc.common.loader.init" . }}
{{- if hasKey .Values "metrics" -}}
{{- if .Values.metrics.enabled -}}
{{- $_ := set .Values.podAnnotations "prometheus.io/scrape" "true" -}}
{{- $_ := set .Values.podAnnotations "prometheus.io/path" "/metrics" -}}
{{- $_ := set .Values.podAnnotations "prometheus.io/port" (.Values.service.metrics.ports.metrics.targetPort | quote) -}}
{{- end -}}
{{- end -}}
{{- include "uptime.servicemonitor" . -}}
{{- include "uptime.prometheusrule" . -}}
{{/* Render the templates */}}
{{ include "tc.common.loader.apply" . }}

View File

@ -4,6 +4,15 @@
## [uptime-kuma-5.0.15](https://github.com/truecharts/charts/compare/uptime-kuma-5.0.14...uptime-kuma-5.0.15) (2023-01-21)
### Fix
- Wrong metrics port ([#6456](https://github.com/truecharts/charts/issues/6456))
## [uptime-kuma-5.0.14](https://github.com/truecharts/charts/compare/uptime-kuma-5.0.13...uptime-kuma-5.0.14) (2023-01-19)
### Chore
@ -88,12 +97,3 @@
- update container image tccr.io/truecharts/uptime-kuma to v1.19.0
## [uptime-kuma-5.0.4](https://github.com/truecharts/charts/compare/uptime-kuma-5.0.3...uptime-kuma-5.0.4) (2022-12-19)
### Chore
- update helm general non-major

View File

@ -21,7 +21,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/uptime-kuma
- https://github.com/louislam/uptime-kuma
type: application
version: 5.0.14
version: 5.0.15
annotations:
truecharts.org/catagories: |
- monitoring

View File

@ -0,0 +1,9 @@
## [uptime-kuma-5.0.15](https://github.com/truecharts/charts/compare/uptime-kuma-5.0.14...uptime-kuma-5.0.15) (2023-01-21)
### Fix
- Wrong metrics port ([#6456](https://github.com/truecharts/charts/issues/6456))

View File

@ -13,23 +13,14 @@ podSecurityContext:
security:
PUID: 0
env:
UPTIME_KUMA_PORT: "{{ .Values.service.main.ports.main.port }}"
service:
main:
ports:
main:
port: 3001
targetPort: 3001
# Metrics Services
metrics:
enabled: true
type: ClusterIP
ports:
metrics:
enabled: true
protocol: HTTP
port: 3002
targetPort: 3002
persistence:
config:

View File

@ -0,0 +1,7 @@
{{- include "tc.common.loader.init" . }}
{{- include "uptime.servicemonitor" . -}}
{{- include "uptime.prometheusrule" . -}}
{{/* Render the templates */}}
{{ include "tc.common.loader.apply" . }}