fix: podLabels to all charts (and appVersion update)

This commit is contained in:
WrenIX 2023-10-16 21:55:50 +02:00
parent 3151f85fcf
commit 1055727adf
Signed by: wrenix
GPG key ID: 7AFDB012974B1BB5
43 changed files with 82 additions and 27 deletions

View file

@ -2,7 +2,7 @@ apiVersion: v2
name: alertmanager-matrix name: alertmanager-matrix
description: Service for managing and receiving Alertmanager alerts on Matrix description: Service for managing and receiving Alertmanager alerts on Matrix
type: application type: application
version: 0.1.2 version: 0.1.3
appVersion: "latest" appVersion: "latest"
keywords: keywords:
- matrix - matrix

View file

@ -1,6 +1,6 @@
# alertmanager-matrix # alertmanager-matrix
![Version: 0.1.2](https://img.shields.io/badge/Version-0.1.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square) ![Version: 0.1.3](https://img.shields.io/badge/Version-0.1.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
Service for managing and receiving Alertmanager alerts on 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 | `""` | | | nameOverride | string | `""` | |
| nodeSelector | object | `{}` | | | nodeSelector | object | `{}` | |
| podAnnotations | object | `{}` | | | podAnnotations | object | `{}` | |
| podLabels | object | `{}` | |
| podSecurityContext | object | `{}` | | | podSecurityContext | object | `{}` | |
| replicaCount | int | `1` | | | replicaCount | int | `1` | |
| resources | object | `{}` | | | resources | object | `{}` | |

View file

@ -4,9 +4,9 @@ kind: ConfigMap
metadata: metadata:
name: {{ include "alertmanager-matrix.fullname" . }} name: {{ include "alertmanager-matrix.fullname" . }}
annotations: annotations:
config-icons: {{ toYaml .Values.bot.icons | sha256sum | trunc 32}} config-icons: {{ toYaml .Values.bot.icons | sha256sum }}
config-colors: {{ toYaml .Values.bot.colors | sha256sum | trunc 32}} config-colors: {{ toYaml .Values.bot.colors | sha256sum }}
config-templates: {{ toYaml .Values.bot.templates | sha256sum | trunc 32}} config-templates: {{ toYaml .Values.bot.template | sha256sum }}
data: data:
icon.yaml: | icon.yaml: |
{{- toYaml .Values.bot.icons | nindent 4 }} {{- toYaml .Values.bot.icons | nindent 4 }}

View file

@ -14,14 +14,17 @@ spec:
template: template:
metadata: metadata:
annotations: annotations:
config-icons: {{ toYaml .Values.bot.icons | sha256sum | trunc 32}} config-icons: {{ toYaml .Values.bot.icons | sha256sum }}
config-colors: {{ toYaml .Values.bot.colors | sha256sum | trunc 32}} config-colors: {{ toYaml .Values.bot.colors | sha256sum }}
config-templates: {{ toYaml .Values.bot.templates | sha256sum | trunc 32}} config-templates: {{ toYaml .Values.bot.template | sha256sum }}
{{- with .Values.podAnnotations }} {{- with .Values.podAnnotations }}
{{- toYaml . | nindent 8 }} {{- toYaml . | nindent 8 }}
{{- end }} {{- end }}
labels: labels:
{{- include "alertmanager-matrix.selectorLabels" . | nindent 8 }} {{- include "alertmanager-matrix.selectorLabels" . | nindent 8 }}
{{- with .Values.podLabels }}
{{- toYaml . | nindent 8 }}
{{- end }}
spec: spec:
{{- with .Values.imagePullSecrets }} {{- with .Values.imagePullSecrets }}
imagePullSecrets: imagePullSecrets:

View file

@ -97,6 +97,7 @@ serviceAccount:
# If not set and create is true, a name is generated using the fullname template # If not set and create is true, a name is generated using the fullname template
name: "" name: ""
podLabels: {}
podAnnotations: {} podAnnotations: {}
podSecurityContext: {} podSecurityContext: {}

View file

@ -2,6 +2,6 @@ apiVersion: v2
name: alertmanager-ntfy name: alertmanager-ntfy
description: Receiver for alertmanager to forward to ntfy.sh description: Receiver for alertmanager to forward to ntfy.sh
type: application type: application
version: 0.1.1 version: 0.1.2
appVersion: "0.3.0" appVersion: "0.3.0"

View file

@ -1,6 +1,6 @@
# alertmanager-ntfy # alertmanager-ntfy
![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.3.0](https://img.shields.io/badge/AppVersion-0.3.0-informational?style=flat-square) ![Version: 0.1.2](https://img.shields.io/badge/Version-0.1.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.3.0](https://img.shields.io/badge/AppVersion-0.3.0-informational?style=flat-square)
Receiver for alertmanager to forward to ntfy.sh 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[0] | string | `"resolved"` | |
| ntfyAlertmanager.resolved.tags[1] | string | `"partying_face"` | | | ntfyAlertmanager.resolved.tags[1] | string | `"partying_face"` | |
| podAnnotations | object | `{}` | | | podAnnotations | object | `{}` | |
| podLabels | object | `{}` | |
| podSecurityContext | object | `{}` | | | podSecurityContext | object | `{}` | |
| replicaCount | int | `1` | | | replicaCount | int | `1` | |
| resources | object | `{}` | | | resources | object | `{}` | |

View file

@ -20,6 +20,9 @@ spec:
{{- end }} {{- end }}
labels: labels:
{{- include "alertmanager-ntfy.selectorLabels" . | nindent 8 }} {{- include "alertmanager-ntfy.selectorLabels" . | nindent 8 }}
{{- with .Values.podLabels }}
{{- toYaml . | nindent 8 }}
{{- end }}
spec: spec:
{{- with .Values.imagePullSecrets }} {{- with .Values.imagePullSecrets }}
imagePullSecrets: imagePullSecrets:

View file

@ -59,6 +59,7 @@ serviceAccount:
# If not set and create is true, a name is generated using the fullname template # If not set and create is true, a name is generated using the fullname template
name: "" name: ""
podLabels: {}
podAnnotations: {} podAnnotations: {}
podSecurityContext: {} podSecurityContext: {}

View file

@ -3,4 +3,4 @@ name: authentik-application
description: A Chart to deploy a secret for the authentik blueprint-sidecar description: A Chart to deploy a secret for the authentik blueprint-sidecar
type: application type: application
version: 0.3.3 version: 0.3.4

View file

@ -4,5 +4,5 @@ description: Conduit is a simple, fast and reliable chat server powered by Matri
type: application type: application
version: 0.2.0 version: 0.2.1
appVersion: "0.6.0" appVersion: "0.6.0"

View file

@ -1,6 +1,6 @@
# conduit # conduit
![Version: 0.2.0](https://img.shields.io/badge/Version-0.2.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.6.0](https://img.shields.io/badge/AppVersion-0.6.0-informational?style=flat-square) ![Version: 0.2.1](https://img.shields.io/badge/Version-0.2.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.6.0](https://img.shields.io/badge/AppVersion-0.6.0-informational?style=flat-square)
Conduit is a simple, fast and reliable chat server powered by Matrix. 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.enabled | bool | `true` | |
| persistence.size | string | `"1Gi"` | | | persistence.size | string | `"1Gi"` | |
| podAnnotations | object | `{}` | | | podAnnotations | object | `{}` | |
| podLabels | object | `{}` | |
| podSecurityContext | object | `{}` | | | podSecurityContext | object | `{}` | |
| replicaCount | int | `1` | | | replicaCount | int | `1` | |
| resources | object | `{}` | | | 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.image.tag | string | `"1.25"` | |
| wellknown.nodeSelector | object | `{}` | | | wellknown.nodeSelector | object | `{}` | |
| wellknown.podAnnotations | list | `[]` | | | wellknown.podAnnotations | list | `[]` | |
| wellknown.podLabels | object | `{}` | |
| wellknown.podSecurityContext | object | `{}` | | | wellknown.podSecurityContext | object | `{}` | |
| wellknown.replicaCount | int | `1` | | | wellknown.replicaCount | int | `1` | |
| wellknown.resources | object | `{}` | | | wellknown.resources | object | `{}` | |

View file

@ -22,6 +22,9 @@ spec:
{{- end }} {{- end }}
labels: labels:
{{- include "conduit.selectorLabels" . | nindent 8 }} {{- include "conduit.selectorLabels" . | nindent 8 }}
{{- with .Values.podLabels }}
{{- toYaml . | nindent 8 }}
{{- end }}
type: conduit type: conduit
spec: spec:
{{- with .Values.imagePullSecrets }} {{- with .Values.imagePullSecrets }}

View file

@ -21,6 +21,9 @@ spec:
{{- end }} {{- end }}
labels: labels:
{{- include "conduit.selectorLabels" . | nindent 8 }} {{- include "conduit.selectorLabels" . | nindent 8 }}
{{- with .Values.wellknown.podLabels }}
{{- toYaml . | nindent 8 }}
{{- end }}
type: wellknown type: wellknown
spec: spec:
{{- with .Values.imagePullSecrets }} {{- with .Values.imagePullSecrets }}

View file

@ -48,6 +48,7 @@ wellknown:
tag: "1.25" tag: "1.25"
replicaCount: 1 replicaCount: 1
podLabels: {}
podAnnotations: [] podAnnotations: []
podSecurityContext: {} podSecurityContext: {}
securityContext: {} securityContext: {}
@ -72,6 +73,7 @@ wellknown:
"org.matrix.msc3575.proxy": "org.matrix.msc3575.proxy":
"url": "https://your.server.name/" "url": "https://your.server.name/"
podLabels: {}
podAnnotations: {} podAnnotations: {}
podSecurityContext: {} podSecurityContext: {}

View file

@ -3,6 +3,6 @@ name: headscale-ui
description: A simple Headscale web UI for small-scale deployments. description: A simple Headscale web UI for small-scale deployments.
type: application type: application
version: 0.1.0 version: 0.1.1
appVersion: "2023.01.30-beta-1" appVersion: "2023.01.30-beta-1"

View file

@ -1,6 +1,6 @@
# headscale-ui # headscale-ui
![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2023.01.30-beta-1](https://img.shields.io/badge/AppVersion-2023.01.30--beta--1-informational?style=flat-square) ![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2023.01.30-beta-1](https://img.shields.io/badge/AppVersion-2023.01.30--beta--1-informational?style=flat-square)
A simple Headscale web UI for small-scale deployments. A simple Headscale web UI for small-scale deployments.
@ -28,6 +28,7 @@ A simple Headscale web UI for small-scale deployments.
| nameOverride | string | `""` | | | nameOverride | string | `""` | |
| nodeSelector | object | `{}` | | | nodeSelector | object | `{}` | |
| podAnnotations | object | `{}` | | | podAnnotations | object | `{}` | |
| podLabels | object | `{}` | |
| podSecurityContext | object | `{}` | | | podSecurityContext | object | `{}` | |
| replicaCount | int | `1` | | | replicaCount | int | `1` | |
| resources | object | `{}` | | | resources | object | `{}` | |

View file

@ -19,6 +19,9 @@ spec:
{{- end }} {{- end }}
labels: labels:
{{- include "headscale-ui.selectorLabels" . | nindent 8 }} {{- include "headscale-ui.selectorLabels" . | nindent 8 }}
{{- with .Values.podLabels }}
{{- toYaml . | nindent 8 }}
{{- end }}
spec: spec:
{{- with .Values.imagePullSecrets }} {{- with .Values.imagePullSecrets }}
imagePullSecrets: imagePullSecrets:

View file

@ -23,6 +23,7 @@ serviceAccount:
# If not set and create is true, a name is generated using the fullname template # If not set and create is true, a name is generated using the fullname template
name: "" name: ""
podLabels: {}
podAnnotations: {} podAnnotations: {}
podSecurityContext: {} podSecurityContext: {}

View file

@ -3,7 +3,7 @@ name: headscale
description: An open source, self-hosted implementation of the Tailscale control server. 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 icon: https://raw.githubusercontent.com/juanfont/headscale/56a7b1e34952c3e0306a134b2be9b4277f5d8d6e/docs/logo/headscale3-dots.svg
type: application type: application
version: 0.2.1 version: 0.2.2
appVersion: "0.22.3" appVersion: "0.22.3"
keywords: keywords:
- headscale - headscale

View file

@ -1,6 +1,6 @@
# headscale # headscale
![Version: 0.2.1](https://img.shields.io/badge/Version-0.2.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.22.3](https://img.shields.io/badge/AppVersion-0.22.3-informational?style=flat-square) ![Version: 0.2.2](https://img.shields.io/badge/Version-0.2.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.22.3](https://img.shields.io/badge/AppVersion-0.22.3-informational?style=flat-square)
An open source, self-hosted implementation of the Tailscale control server. 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.enabled | bool | `false` | |
| persistence.size | string | `"1Gi"` | | | persistence.size | string | `"1Gi"` | |
| podAnnotations | object | `{}` | | | podAnnotations | object | `{}` | |
| podLabels | object | `{}` | |
| podSecurityContext | object | `{}` | | | podSecurityContext | object | `{}` | |
| prometheus.rules.additionalRules | list | `[]` | | | prometheus.rules.additionalRules | list | `[]` | |
| prometheus.rules.enabled | bool | `false` | | | prometheus.rules.enabled | bool | `false` | |

View file

@ -20,6 +20,9 @@ spec:
{{- end }} {{- end }}
labels: labels:
{{- include "headscale.selectorLabels" . | nindent 8 }} {{- include "headscale.selectorLabels" . | nindent 8 }}
{{- with .Values.podLabels }}
{{- toYaml . | nindent 8 }}
{{- end }}
spec: spec:
{{- with .Values.imagePullSecrets }} {{- with .Values.imagePullSecrets }}
imagePullSecrets: imagePullSecrets:

View file

@ -118,6 +118,7 @@ serviceAccount:
# If not set and create is true, a name is generated using the fullname template # If not set and create is true, a name is generated using the fullname template
name: "" name: ""
podLabels: {}
podAnnotations: {} podAnnotations: {}
podSecurityContext: {} podSecurityContext: {}

View file

@ -4,5 +4,5 @@ description: A Helm Chart to install hydrogen-web (a nextgen Matrix Webclient)
type: application type: application
version: 0.1.2 version: 0.1.3
appVersion: "0.4.1" appVersion: "0.4.1"

View file

@ -1,6 +1,6 @@
# hydrogen-web # hydrogen-web
![Version: 0.1.2](https://img.shields.io/badge/Version-0.1.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.4.1](https://img.shields.io/badge/AppVersion-0.4.1-informational?style=flat-square) ![Version: 0.1.3](https://img.shields.io/badge/Version-0.1.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.4.1](https://img.shields.io/badge/AppVersion-0.4.1-informational?style=flat-square)
A Helm Chart to install hydrogen-web (a nextgen Matrix Webclient) 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 | `""` | | | nameOverride | string | `""` | |
| nodeSelector | object | `{}` | | | nodeSelector | object | `{}` | |
| podAnnotations | object | `{}` | | | podAnnotations | object | `{}` | |
| podLabels | object | `{}` | |
| podSecurityContext | object | `{}` | | | podSecurityContext | object | `{}` | |
| replicaCount | int | `1` | | | replicaCount | int | `1` | |
| resources | object | `{}` | | | resources | object | `{}` | |

View file

@ -20,6 +20,9 @@ spec:
confighash: {{ .Values.hydrogen | toYaml | sha256sum | trunc 32 }} confighash: {{ .Values.hydrogen | toYaml | sha256sum | trunc 32 }}
labels: labels:
{{- include "hydrogen-web.selectorLabels" . | nindent 8 }} {{- include "hydrogen-web.selectorLabels" . | nindent 8 }}
{{- with .Values.podLabels }}
{{- toYaml . | nindent 8 }}
{{- end }}
spec: spec:
{{- with .Values.imagePullSecrets }} {{- with .Values.imagePullSecrets }}
imagePullSecrets: imagePullSecrets:

View file

@ -38,6 +38,7 @@ serviceAccount:
# If not set and create is true, a name is generated using the fullname template # If not set and create is true, a name is generated using the fullname template
name: "" name: ""
podLabels: {}
podAnnotations: {} podAnnotations: {}
podSecurityContext: {} podSecurityContext: {}

View file

@ -3,5 +3,5 @@ name: jellyfin
description: The Free Software Media System description: The Free Software Media System
type: application type: application
version: 0.1.2 version: 0.1.3
appVersion: "10.8.11" appVersion: "10.8.11"

View file

@ -1,6 +1,6 @@
# jellyfin # jellyfin
![Version: 0.1.2](https://img.shields.io/badge/Version-0.1.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 10.8.11](https://img.shields.io/badge/AppVersion-10.8.11-informational?style=flat-square) ![Version: 0.1.3](https://img.shields.io/badge/Version-0.1.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 10.8.11](https://img.shields.io/badge/AppVersion-10.8.11-informational?style=flat-square)
The Free Software Media System The Free Software Media System
@ -37,6 +37,7 @@ The Free Software Media System
| persistence.media.pvc.enabled | bool | `false` | | | persistence.media.pvc.enabled | bool | `false` | |
| persistence.media.readOnly | bool | `true` | | | persistence.media.readOnly | bool | `true` | |
| podAnnotations | object | `{}` | | | podAnnotations | object | `{}` | |
| podLabels | object | `{}` | |
| podSecurityContext | object | `{}` | | | podSecurityContext | object | `{}` | |
| replicaCount | int | `1` | | | replicaCount | int | `1` | |
| resources | object | `{}` | | | resources | object | `{}` | |

View file

@ -21,6 +21,9 @@ spec:
{{- end }} {{- end }}
labels: labels:
{{- include "jellyfin.selectorLabels" . | nindent 8 }} {{- include "jellyfin.selectorLabels" . | nindent 8 }}
{{- with .Values.podLabels }}
{{- toYaml . | nindent 8 }}
{{- end }}
spec: spec:
{{- with .Values.imagePullSecrets }} {{- with .Values.imagePullSecrets }}
imagePullSecrets: imagePullSecrets:

View file

@ -40,6 +40,7 @@ serviceAccount:
# If not set and create is true, a name is generated using the fullname template # If not set and create is true, a name is generated using the fullname template
name: "" name: ""
podLabels: {}
podAnnotations: {} podAnnotations: {}
podSecurityContext: {} podSecurityContext: {}

View file

@ -2,6 +2,6 @@ apiVersion: v2
name: miniserve name: miniserve
description: A Helm chart for Kubernetes description: A Helm chart for Kubernetes
type: application type: application
version: 0.3.1 version: 0.3.2
appVersion: "0.24.0" appVersion: "0.24.0"

View file

@ -1,6 +1,6 @@
# miniserve # miniserve
![Version: 0.3.1](https://img.shields.io/badge/Version-0.3.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.24.0](https://img.shields.io/badge/AppVersion-0.24.0-informational?style=flat-square) ![Version: 0.3.2](https://img.shields.io/badge/Version-0.3.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.24.0](https://img.shields.io/badge/AppVersion-0.24.0-informational?style=flat-square)
A Helm chart for Kubernetes A Helm chart for Kubernetes
@ -60,6 +60,7 @@ A Helm chart for Kubernetes
| persistence.enabled | bool | `false` | | | persistence.enabled | bool | `false` | |
| persistence.size | string | `"1Gi"` | | | persistence.size | string | `"1Gi"` | |
| podAnnotations | object | `{}` | | | podAnnotations | object | `{}` | |
| podLabels | object | `{}` | |
| podSecurityContext | object | `{}` | | | podSecurityContext | object | `{}` | |
| replicaCount | int | `1` | | | replicaCount | int | `1` | |
| resources.limits.memory | string | `"256Mi"` | | | resources.limits.memory | string | `"256Mi"` | |

View file

@ -20,6 +20,9 @@ spec:
{{- end }} {{- end }}
labels: labels:
{{- include "miniserve.selectorLabels" . | nindent 8 }} {{- include "miniserve.selectorLabels" . | nindent 8 }}
{{- with .Values.podLabels }}
{{- toYaml . | nindent 8 }}
{{- end }}
spec: spec:
{{- with .Values.imagePullSecrets }} {{- with .Values.imagePullSecrets }}
imagePullSecrets: imagePullSecrets:

View file

@ -108,6 +108,7 @@ serviceAccount:
# If not set and create is true, a name is generated using the fullname template # If not set and create is true, a name is generated using the fullname template
name: "" name: ""
podLabels: {}
podAnnotations: {} podAnnotations: {}
podSecurityContext: {} podSecurityContext: {}

View file

@ -3,5 +3,5 @@ name: ntfy
description: A Helm chart for Kubernetes description: A Helm chart for Kubernetes
type: application type: application
version: 0.1.4 version: 0.1.5
appVersion: "2.7.0" appVersion: "2.7.0"

View file

@ -1,6 +1,6 @@
# ntfy # ntfy
![Version: 0.1.4](https://img.shields.io/badge/Version-0.1.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.7.0](https://img.shields.io/badge/AppVersion-2.7.0-informational?style=flat-square) ![Version: 0.1.5](https://img.shields.io/badge/Version-0.1.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.7.0](https://img.shields.io/badge/AppVersion-2.7.0-informational?style=flat-square)
A Helm chart for Kubernetes A Helm chart for Kubernetes
@ -81,6 +81,7 @@ A Helm chart for Kubernetes
| persistence.enabled | bool | `false` | | | persistence.enabled | bool | `false` | |
| persistence.size | string | `"1Gi"` | | | persistence.size | string | `"1Gi"` | |
| podAnnotations | object | `{}` | | | podAnnotations | object | `{}` | |
| podLabels | object | `{}` | |
| podSecurityContext | object | `{}` | | | podSecurityContext | object | `{}` | |
| prometheus.rules.additionalRules | list | `[]` | | | prometheus.rules.additionalRules | list | `[]` | |
| prometheus.rules.enabled | bool | `false` | | | prometheus.rules.enabled | bool | `false` | |

View file

@ -20,6 +20,9 @@ spec:
{{- end }} {{- end }}
labels: labels:
{{- include "ntfy.selectorLabels" . | nindent 8 }} {{- include "ntfy.selectorLabels" . | nindent 8 }}
{{- with .Values.podLabels }}
{{- toYaml . | nindent 8 }}
{{- end }}
spec: spec:
{{- with .Values.imagePullSecrets }} {{- with .Values.imagePullSecrets }}
imagePullSecrets: imagePullSecrets:

View file

@ -139,6 +139,7 @@ serviceAccount:
# If not set and create is true, a name is generated using the fullname template # If not set and create is true, a name is generated using the fullname template
name: "" name: ""
podLabels: {}
podAnnotations: {} podAnnotations: {}
podSecurityContext: {} podSecurityContext: {}

View file

@ -3,7 +3,7 @@ apiVersion: "v2"
name: "postgresql" name: "postgresql"
description: "A Helm chart for running PostgreSQL (Postgres) database" description: "A Helm chart for running PostgreSQL (Postgres) database"
type: "application" type: "application"
version: "0.1.0" version: "0.1.1"
appVersion: "16.0-alpine3.18" appVersion: "16.0-alpine3.18"
keywords: keywords:

View file

@ -1,6 +1,6 @@
# postgresql # postgresql
![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 16.0-alpine3.18](https://img.shields.io/badge/AppVersion-16.0--alpine3.18-informational?style=flat-square) ![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 16.0-alpine3.18](https://img.shields.io/badge/AppVersion-16.0--alpine3.18-informational?style=flat-square)
A Helm chart for running PostgreSQL (Postgres) database 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.enabled | bool | `true` | |
| persistence.size | string | `"1Gi"` | | | persistence.size | string | `"1Gi"` | |
| podAnnotations | object | `{}` | | | podAnnotations | object | `{}` | |
| podLabels | object | `{}` | |
| podSecurityContext | object | `{}` | | | podSecurityContext | object | `{}` | |
| postgres.password | string | `"SUPERSTRONGPW"` | Database password. | | postgres.password | string | `"SUPERSTRONGPW"` | Database password. |
| postgres.user | string | `"postgres"` | Database user. | | postgres.user | string | `"postgres"` | Database user. |

View file

@ -18,6 +18,9 @@ spec:
{{- end }} {{- end }}
labels: labels:
{{- include "postgresql.selectorLabels" . | nindent 8 }} {{- include "postgresql.selectorLabels" . | nindent 8 }}
{{- with .Values.podLabels }}
{{- toYaml . | nindent 8 }}
{{- end }}
spec: spec:
{{- with .Values.imagePullSecrets }} {{- with .Values.imagePullSecrets }}
imagePullSecrets: imagePullSecrets:

View file

@ -22,6 +22,7 @@ serviceAccount:
# If not set and create is true, a name is generated using the fullname template # If not set and create is true, a name is generated using the fullname template
name: "" name: ""
podLabels: {}
podAnnotations: {} podAnnotations: {}
podSecurityContext: {} podSecurityContext: {}