fix: podLabels to all charts (and appVersion update)
This commit is contained in:
parent
3151f85fcf
commit
1055727adf
43 changed files with 82 additions and 27 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
|||
name: alertmanager-matrix
|
||||
description: Service for managing and receiving Alertmanager alerts on Matrix
|
||||
type: application
|
||||
version: 0.1.2
|
||||
version: 0.1.3
|
||||
appVersion: "latest"
|
||||
keywords:
|
||||
- matrix
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# alertmanager-matrix
|
||||
|
||||
  
|
||||
  
|
||||
|
||||
Service for managing and receiving Alertmanager alerts on Matrix
|
||||
|
||||
|
@ -55,6 +55,7 @@ Service for managing and receiving Alertmanager alerts on Matrix
|
|||
| nameOverride | string | `""` | |
|
||||
| nodeSelector | object | `{}` | |
|
||||
| podAnnotations | object | `{}` | |
|
||||
| podLabels | object | `{}` | |
|
||||
| podSecurityContext | object | `{}` | |
|
||||
| replicaCount | int | `1` | |
|
||||
| resources | object | `{}` | |
|
||||
|
|
|
@ -4,9 +4,9 @@ kind: ConfigMap
|
|||
metadata:
|
||||
name: {{ include "alertmanager-matrix.fullname" . }}
|
||||
annotations:
|
||||
config-icons: {{ toYaml .Values.bot.icons | sha256sum | trunc 32}}
|
||||
config-colors: {{ toYaml .Values.bot.colors | sha256sum | trunc 32}}
|
||||
config-templates: {{ toYaml .Values.bot.templates | sha256sum | trunc 32}}
|
||||
config-icons: {{ toYaml .Values.bot.icons | sha256sum }}
|
||||
config-colors: {{ toYaml .Values.bot.colors | sha256sum }}
|
||||
config-templates: {{ toYaml .Values.bot.template | sha256sum }}
|
||||
data:
|
||||
icon.yaml: |
|
||||
{{- toYaml .Values.bot.icons | nindent 4 }}
|
||||
|
|
|
@ -14,14 +14,17 @@ spec:
|
|||
template:
|
||||
metadata:
|
||||
annotations:
|
||||
config-icons: {{ toYaml .Values.bot.icons | sha256sum | trunc 32}}
|
||||
config-colors: {{ toYaml .Values.bot.colors | sha256sum | trunc 32}}
|
||||
config-templates: {{ toYaml .Values.bot.templates | sha256sum | trunc 32}}
|
||||
config-icons: {{ toYaml .Values.bot.icons | sha256sum }}
|
||||
config-colors: {{ toYaml .Values.bot.colors | sha256sum }}
|
||||
config-templates: {{ toYaml .Values.bot.template | sha256sum }}
|
||||
{{- with .Values.podAnnotations }}
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
labels:
|
||||
{{- include "alertmanager-matrix.selectorLabels" . | nindent 8 }}
|
||||
{{- with .Values.podLabels }}
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
spec:
|
||||
{{- with .Values.imagePullSecrets }}
|
||||
imagePullSecrets:
|
||||
|
|
|
@ -97,6 +97,7 @@ serviceAccount:
|
|||
# If not set and create is true, a name is generated using the fullname template
|
||||
name: ""
|
||||
|
||||
podLabels: {}
|
||||
podAnnotations: {}
|
||||
|
||||
podSecurityContext: {}
|
||||
|
|
|
@ -2,6 +2,6 @@ apiVersion: v2
|
|||
name: alertmanager-ntfy
|
||||
description: Receiver for alertmanager to forward to ntfy.sh
|
||||
type: application
|
||||
version: 0.1.1
|
||||
version: 0.1.2
|
||||
|
||||
appVersion: "0.3.0"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# alertmanager-ntfy
|
||||
|
||||
  
|
||||
  
|
||||
|
||||
Receiver for alertmanager to forward to ntfy.sh
|
||||
|
||||
|
@ -46,6 +46,7 @@ Receiver for alertmanager to forward to ntfy.sh
|
|||
| ntfyAlertmanager.resolved.tags[0] | string | `"resolved"` | |
|
||||
| ntfyAlertmanager.resolved.tags[1] | string | `"partying_face"` | |
|
||||
| podAnnotations | object | `{}` | |
|
||||
| podLabels | object | `{}` | |
|
||||
| podSecurityContext | object | `{}` | |
|
||||
| replicaCount | int | `1` | |
|
||||
| resources | object | `{}` | |
|
||||
|
|
|
@ -20,6 +20,9 @@ spec:
|
|||
{{- end }}
|
||||
labels:
|
||||
{{- include "alertmanager-ntfy.selectorLabels" . | nindent 8 }}
|
||||
{{- with .Values.podLabels }}
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
spec:
|
||||
{{- with .Values.imagePullSecrets }}
|
||||
imagePullSecrets:
|
||||
|
|
|
@ -59,6 +59,7 @@ serviceAccount:
|
|||
# If not set and create is true, a name is generated using the fullname template
|
||||
name: ""
|
||||
|
||||
podLabels: {}
|
||||
podAnnotations: {}
|
||||
|
||||
podSecurityContext: {}
|
||||
|
|
|
@ -3,4 +3,4 @@ name: authentik-application
|
|||
description: A Chart to deploy a secret for the authentik blueprint-sidecar
|
||||
type: application
|
||||
|
||||
version: 0.3.3
|
||||
version: 0.3.4
|
||||
|
|
|
@ -4,5 +4,5 @@ description: Conduit is a simple, fast and reliable chat server powered by Matri
|
|||
|
||||
type: application
|
||||
|
||||
version: 0.2.0
|
||||
version: 0.2.1
|
||||
appVersion: "0.6.0"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# conduit
|
||||
|
||||
  
|
||||
  
|
||||
|
||||
Conduit is a simple, fast and reliable chat server powered by Matrix.
|
||||
|
||||
|
@ -44,6 +44,7 @@ Conduit is a simple, fast and reliable chat server powered by Matrix.
|
|||
| persistence.enabled | bool | `true` | |
|
||||
| persistence.size | string | `"1Gi"` | |
|
||||
| podAnnotations | object | `{}` | |
|
||||
| podLabels | object | `{}` | |
|
||||
| podSecurityContext | object | `{}` | |
|
||||
| replicaCount | int | `1` | |
|
||||
| resources | object | `{}` | |
|
||||
|
@ -65,6 +66,7 @@ Conduit is a simple, fast and reliable chat server powered by Matrix.
|
|||
| wellknown.image.tag | string | `"1.25"` | |
|
||||
| wellknown.nodeSelector | object | `{}` | |
|
||||
| wellknown.podAnnotations | list | `[]` | |
|
||||
| wellknown.podLabels | object | `{}` | |
|
||||
| wellknown.podSecurityContext | object | `{}` | |
|
||||
| wellknown.replicaCount | int | `1` | |
|
||||
| wellknown.resources | object | `{}` | |
|
||||
|
|
|
@ -22,6 +22,9 @@ spec:
|
|||
{{- end }}
|
||||
labels:
|
||||
{{- include "conduit.selectorLabels" . | nindent 8 }}
|
||||
{{- with .Values.podLabels }}
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
type: conduit
|
||||
spec:
|
||||
{{- with .Values.imagePullSecrets }}
|
||||
|
|
|
@ -21,6 +21,9 @@ spec:
|
|||
{{- end }}
|
||||
labels:
|
||||
{{- include "conduit.selectorLabels" . | nindent 8 }}
|
||||
{{- with .Values.wellknown.podLabels }}
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
type: wellknown
|
||||
spec:
|
||||
{{- with .Values.imagePullSecrets }}
|
||||
|
|
|
@ -48,6 +48,7 @@ wellknown:
|
|||
tag: "1.25"
|
||||
|
||||
replicaCount: 1
|
||||
podLabels: {}
|
||||
podAnnotations: []
|
||||
podSecurityContext: {}
|
||||
securityContext: {}
|
||||
|
@ -72,6 +73,7 @@ wellknown:
|
|||
"org.matrix.msc3575.proxy":
|
||||
"url": "https://your.server.name/"
|
||||
|
||||
podLabels: {}
|
||||
podAnnotations: {}
|
||||
|
||||
podSecurityContext: {}
|
||||
|
|
|
@ -3,6 +3,6 @@ name: headscale-ui
|
|||
description: A simple Headscale web UI for small-scale deployments.
|
||||
|
||||
type: application
|
||||
version: 0.1.0
|
||||
version: 0.1.1
|
||||
|
||||
appVersion: "2023.01.30-beta-1"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# headscale-ui
|
||||
|
||||
  
|
||||
  
|
||||
|
||||
A simple Headscale web UI for small-scale deployments.
|
||||
|
||||
|
@ -28,6 +28,7 @@ A simple Headscale web UI for small-scale deployments.
|
|||
| nameOverride | string | `""` | |
|
||||
| nodeSelector | object | `{}` | |
|
||||
| podAnnotations | object | `{}` | |
|
||||
| podLabels | object | `{}` | |
|
||||
| podSecurityContext | object | `{}` | |
|
||||
| replicaCount | int | `1` | |
|
||||
| resources | object | `{}` | |
|
||||
|
|
|
@ -19,6 +19,9 @@ spec:
|
|||
{{- end }}
|
||||
labels:
|
||||
{{- include "headscale-ui.selectorLabels" . | nindent 8 }}
|
||||
{{- with .Values.podLabels }}
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
spec:
|
||||
{{- with .Values.imagePullSecrets }}
|
||||
imagePullSecrets:
|
||||
|
|
|
@ -23,6 +23,7 @@ serviceAccount:
|
|||
# If not set and create is true, a name is generated using the fullname template
|
||||
name: ""
|
||||
|
||||
podLabels: {}
|
||||
podAnnotations: {}
|
||||
|
||||
podSecurityContext: {}
|
||||
|
|
|
@ -3,7 +3,7 @@ name: headscale
|
|||
description: An open source, self-hosted implementation of the Tailscale control server.
|
||||
icon: https://raw.githubusercontent.com/juanfont/headscale/56a7b1e34952c3e0306a134b2be9b4277f5d8d6e/docs/logo/headscale3-dots.svg
|
||||
type: application
|
||||
version: 0.2.1
|
||||
version: 0.2.2
|
||||
appVersion: "0.22.3"
|
||||
keywords:
|
||||
- headscale
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# headscale
|
||||
|
||||
  
|
||||
  
|
||||
|
||||
An open source, self-hosted implementation of the Tailscale control server.
|
||||
|
||||
|
@ -58,6 +58,7 @@ An open source, self-hosted implementation of the Tailscale control server.
|
|||
| persistence.enabled | bool | `false` | |
|
||||
| persistence.size | string | `"1Gi"` | |
|
||||
| podAnnotations | object | `{}` | |
|
||||
| podLabels | object | `{}` | |
|
||||
| podSecurityContext | object | `{}` | |
|
||||
| prometheus.rules.additionalRules | list | `[]` | |
|
||||
| prometheus.rules.enabled | bool | `false` | |
|
||||
|
|
|
@ -20,6 +20,9 @@ spec:
|
|||
{{- end }}
|
||||
labels:
|
||||
{{- include "headscale.selectorLabels" . | nindent 8 }}
|
||||
{{- with .Values.podLabels }}
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
spec:
|
||||
{{- with .Values.imagePullSecrets }}
|
||||
imagePullSecrets:
|
||||
|
|
|
@ -118,6 +118,7 @@ serviceAccount:
|
|||
# If not set and create is true, a name is generated using the fullname template
|
||||
name: ""
|
||||
|
||||
podLabels: {}
|
||||
podAnnotations: {}
|
||||
|
||||
podSecurityContext: {}
|
||||
|
|
|
@ -4,5 +4,5 @@ description: A Helm Chart to install hydrogen-web (a nextgen Matrix Webclient)
|
|||
|
||||
type: application
|
||||
|
||||
version: 0.1.2
|
||||
version: 0.1.3
|
||||
appVersion: "0.4.1"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# hydrogen-web
|
||||
|
||||
  
|
||||
  
|
||||
|
||||
A Helm Chart to install hydrogen-web (a nextgen Matrix Webclient)
|
||||
|
||||
|
@ -36,6 +36,7 @@ A Helm Chart to install hydrogen-web (a nextgen Matrix Webclient)
|
|||
| nameOverride | string | `""` | |
|
||||
| nodeSelector | object | `{}` | |
|
||||
| podAnnotations | object | `{}` | |
|
||||
| podLabels | object | `{}` | |
|
||||
| podSecurityContext | object | `{}` | |
|
||||
| replicaCount | int | `1` | |
|
||||
| resources | object | `{}` | |
|
||||
|
|
|
@ -20,6 +20,9 @@ spec:
|
|||
confighash: {{ .Values.hydrogen | toYaml | sha256sum | trunc 32 }}
|
||||
labels:
|
||||
{{- include "hydrogen-web.selectorLabels" . | nindent 8 }}
|
||||
{{- with .Values.podLabels }}
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
spec:
|
||||
{{- with .Values.imagePullSecrets }}
|
||||
imagePullSecrets:
|
||||
|
|
|
@ -38,6 +38,7 @@ serviceAccount:
|
|||
# If not set and create is true, a name is generated using the fullname template
|
||||
name: ""
|
||||
|
||||
podLabels: {}
|
||||
podAnnotations: {}
|
||||
|
||||
podSecurityContext: {}
|
||||
|
|
|
@ -3,5 +3,5 @@ name: jellyfin
|
|||
description: The Free Software Media System
|
||||
type: application
|
||||
|
||||
version: 0.1.2
|
||||
version: 0.1.3
|
||||
appVersion: "10.8.11"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# jellyfin
|
||||
|
||||
  
|
||||
  
|
||||
|
||||
The Free Software Media System
|
||||
|
||||
|
@ -37,6 +37,7 @@ The Free Software Media System
|
|||
| persistence.media.pvc.enabled | bool | `false` | |
|
||||
| persistence.media.readOnly | bool | `true` | |
|
||||
| podAnnotations | object | `{}` | |
|
||||
| podLabels | object | `{}` | |
|
||||
| podSecurityContext | object | `{}` | |
|
||||
| replicaCount | int | `1` | |
|
||||
| resources | object | `{}` | |
|
||||
|
|
|
@ -21,6 +21,9 @@ spec:
|
|||
{{- end }}
|
||||
labels:
|
||||
{{- include "jellyfin.selectorLabels" . | nindent 8 }}
|
||||
{{- with .Values.podLabels }}
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
spec:
|
||||
{{- with .Values.imagePullSecrets }}
|
||||
imagePullSecrets:
|
||||
|
|
|
@ -40,6 +40,7 @@ serviceAccount:
|
|||
# If not set and create is true, a name is generated using the fullname template
|
||||
name: ""
|
||||
|
||||
podLabels: {}
|
||||
podAnnotations: {}
|
||||
|
||||
podSecurityContext: {}
|
||||
|
|
|
@ -2,6 +2,6 @@ apiVersion: v2
|
|||
name: miniserve
|
||||
description: A Helm chart for Kubernetes
|
||||
type: application
|
||||
version: 0.3.1
|
||||
version: 0.3.2
|
||||
|
||||
appVersion: "0.24.0"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# miniserve
|
||||
|
||||
  
|
||||
  
|
||||
|
||||
A Helm chart for Kubernetes
|
||||
|
||||
|
@ -60,6 +60,7 @@ A Helm chart for Kubernetes
|
|||
| persistence.enabled | bool | `false` | |
|
||||
| persistence.size | string | `"1Gi"` | |
|
||||
| podAnnotations | object | `{}` | |
|
||||
| podLabels | object | `{}` | |
|
||||
| podSecurityContext | object | `{}` | |
|
||||
| replicaCount | int | `1` | |
|
||||
| resources.limits.memory | string | `"256Mi"` | |
|
||||
|
|
|
@ -20,6 +20,9 @@ spec:
|
|||
{{- end }}
|
||||
labels:
|
||||
{{- include "miniserve.selectorLabels" . | nindent 8 }}
|
||||
{{- with .Values.podLabels }}
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
spec:
|
||||
{{- with .Values.imagePullSecrets }}
|
||||
imagePullSecrets:
|
||||
|
|
|
@ -108,6 +108,7 @@ serviceAccount:
|
|||
# If not set and create is true, a name is generated using the fullname template
|
||||
name: ""
|
||||
|
||||
podLabels: {}
|
||||
podAnnotations: {}
|
||||
|
||||
podSecurityContext: {}
|
||||
|
|
|
@ -3,5 +3,5 @@ name: ntfy
|
|||
description: A Helm chart for Kubernetes
|
||||
type: application
|
||||
|
||||
version: 0.1.4
|
||||
version: 0.1.5
|
||||
appVersion: "2.7.0"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# ntfy
|
||||
|
||||
  
|
||||
  
|
||||
|
||||
A Helm chart for Kubernetes
|
||||
|
||||
|
@ -81,6 +81,7 @@ A Helm chart for Kubernetes
|
|||
| persistence.enabled | bool | `false` | |
|
||||
| persistence.size | string | `"1Gi"` | |
|
||||
| podAnnotations | object | `{}` | |
|
||||
| podLabels | object | `{}` | |
|
||||
| podSecurityContext | object | `{}` | |
|
||||
| prometheus.rules.additionalRules | list | `[]` | |
|
||||
| prometheus.rules.enabled | bool | `false` | |
|
||||
|
|
|
@ -20,6 +20,9 @@ spec:
|
|||
{{- end }}
|
||||
labels:
|
||||
{{- include "ntfy.selectorLabels" . | nindent 8 }}
|
||||
{{- with .Values.podLabels }}
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
spec:
|
||||
{{- with .Values.imagePullSecrets }}
|
||||
imagePullSecrets:
|
||||
|
|
|
@ -139,6 +139,7 @@ serviceAccount:
|
|||
# If not set and create is true, a name is generated using the fullname template
|
||||
name: ""
|
||||
|
||||
podLabels: {}
|
||||
podAnnotations: {}
|
||||
|
||||
podSecurityContext: {}
|
||||
|
|
|
@ -3,7 +3,7 @@ apiVersion: "v2"
|
|||
name: "postgresql"
|
||||
description: "A Helm chart for running PostgreSQL (Postgres) database"
|
||||
type: "application"
|
||||
version: "0.1.0"
|
||||
version: "0.1.1"
|
||||
appVersion: "16.0-alpine3.18"
|
||||
|
||||
keywords:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# postgresql
|
||||
|
||||
  
|
||||
  
|
||||
|
||||
A Helm chart for running PostgreSQL (Postgres) database
|
||||
|
||||
|
@ -27,6 +27,7 @@ A Helm chart for running PostgreSQL (Postgres) database
|
|||
| persistence.enabled | bool | `true` | |
|
||||
| persistence.size | string | `"1Gi"` | |
|
||||
| podAnnotations | object | `{}` | |
|
||||
| podLabels | object | `{}` | |
|
||||
| podSecurityContext | object | `{}` | |
|
||||
| postgres.password | string | `"SUPERSTRONGPW"` | Database password. |
|
||||
| postgres.user | string | `"postgres"` | Database user. |
|
||||
|
|
|
@ -18,6 +18,9 @@ spec:
|
|||
{{- end }}
|
||||
labels:
|
||||
{{- include "postgresql.selectorLabels" . | nindent 8 }}
|
||||
{{- with .Values.podLabels }}
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
spec:
|
||||
{{- with .Values.imagePullSecrets }}
|
||||
imagePullSecrets:
|
||||
|
|
|
@ -22,6 +22,7 @@ serviceAccount:
|
|||
# If not set and create is true, a name is generated using the fullname template
|
||||
name: ""
|
||||
|
||||
podLabels: {}
|
||||
podAnnotations: {}
|
||||
|
||||
podSecurityContext: {}
|
||||
|
|
Loading…
Add table
Reference in a new issue