Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
da3a0dfd03
commit
4082c53c6e
|
@ -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
|
||||
|
||||
|
|
@ -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" . }}
|
|
@ -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
|
||||
|
||||
|
|
@ -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
|
|
@ -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))
|
||||
|
||||
|
|
@ -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:
|
|
@ -0,0 +1,7 @@
|
|||
{{- include "tc.common.loader.init" . }}
|
||||
|
||||
{{- include "uptime.servicemonitor" . -}}
|
||||
{{- include "uptime.prometheusrule" . -}}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "tc.common.loader.apply" . }}
|
Loading…
Reference in New Issue