diff --git a/alertmanager-matrix/Chart.yaml b/alertmanager-matrix/Chart.yaml index c0f04f7..8cf061c 100644 --- a/alertmanager-matrix/Chart.yaml +++ b/alertmanager-matrix/Chart.yaml @@ -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 diff --git a/alertmanager-matrix/README.md b/alertmanager-matrix/README.md index 8156c39..d9844be 100644 --- a/alertmanager-matrix/README.md +++ b/alertmanager-matrix/README.md @@ -1,6 +1,6 @@ # 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 @@ -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 | `{}` | | diff --git a/alertmanager-matrix/templates/configmap.yaml b/alertmanager-matrix/templates/configmap.yaml index 0988db5..bf10b4a 100644 --- a/alertmanager-matrix/templates/configmap.yaml +++ b/alertmanager-matrix/templates/configmap.yaml @@ -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 }} diff --git a/alertmanager-matrix/templates/deployment.yaml b/alertmanager-matrix/templates/deployment.yaml index ce368e9..7410292 100644 --- a/alertmanager-matrix/templates/deployment.yaml +++ b/alertmanager-matrix/templates/deployment.yaml @@ -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: diff --git a/alertmanager-matrix/values.yaml b/alertmanager-matrix/values.yaml index 186d3af..645be34 100644 --- a/alertmanager-matrix/values.yaml +++ b/alertmanager-matrix/values.yaml @@ -97,6 +97,7 @@ serviceAccount: # If not set and create is true, a name is generated using the fullname template name: "" +podLabels: {} podAnnotations: {} podSecurityContext: {} diff --git a/alertmanager-ntfy/Chart.yaml b/alertmanager-ntfy/Chart.yaml index fd450aa..2fd4c51 100644 --- a/alertmanager-ntfy/Chart.yaml +++ b/alertmanager-ntfy/Chart.yaml @@ -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" diff --git a/alertmanager-ntfy/README.md b/alertmanager-ntfy/README.md index 6cc0fe6..90a835f 100644 --- a/alertmanager-ntfy/README.md +++ b/alertmanager-ntfy/README.md @@ -1,6 +1,6 @@ # 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 @@ -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 | `{}` | | diff --git a/alertmanager-ntfy/templates/deployment.yaml b/alertmanager-ntfy/templates/deployment.yaml index 99318b0..0588167 100644 --- a/alertmanager-ntfy/templates/deployment.yaml +++ b/alertmanager-ntfy/templates/deployment.yaml @@ -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: diff --git a/alertmanager-ntfy/values.yaml b/alertmanager-ntfy/values.yaml index 3605272..aec2bf6 100644 --- a/alertmanager-ntfy/values.yaml +++ b/alertmanager-ntfy/values.yaml @@ -59,6 +59,7 @@ serviceAccount: # If not set and create is true, a name is generated using the fullname template name: "" +podLabels: {} podAnnotations: {} podSecurityContext: {} diff --git a/authentik-application/Chart.yaml b/authentik-application/Chart.yaml index d973c4c..edebd3b 100644 --- a/authentik-application/Chart.yaml +++ b/authentik-application/Chart.yaml @@ -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 \ No newline at end of file +version: 0.3.4 diff --git a/conduit/Chart.yaml b/conduit/Chart.yaml index 5c27c93..9508774 100644 --- a/conduit/Chart.yaml +++ b/conduit/Chart.yaml @@ -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" diff --git a/conduit/README.md b/conduit/README.md index 8ca2713..035e3e0 100644 --- a/conduit/README.md +++ b/conduit/README.md @@ -1,6 +1,6 @@ # 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. @@ -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 | `{}` | | diff --git a/conduit/templates/deployment.yaml b/conduit/templates/deployment.yaml index 2e64e00..9514288 100644 --- a/conduit/templates/deployment.yaml +++ b/conduit/templates/deployment.yaml @@ -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 }} diff --git a/conduit/templates/wellknown/deployment.yaml b/conduit/templates/wellknown/deployment.yaml index 27ef41f..7f4a54d 100644 --- a/conduit/templates/wellknown/deployment.yaml +++ b/conduit/templates/wellknown/deployment.yaml @@ -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 }} diff --git a/conduit/values.yaml b/conduit/values.yaml index 88c0fe9..8a03180 100644 --- a/conduit/values.yaml +++ b/conduit/values.yaml @@ -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: {} diff --git a/headscale-ui/Chart.yaml b/headscale-ui/Chart.yaml index 1f098c0..8dd31b4 100644 --- a/headscale-ui/Chart.yaml +++ b/headscale-ui/Chart.yaml @@ -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" diff --git a/headscale-ui/README.md b/headscale-ui/README.md index df1b539..17e8c12 100644 --- a/headscale-ui/README.md +++ b/headscale-ui/README.md @@ -1,6 +1,6 @@ # 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. @@ -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 | `{}` | | diff --git a/headscale-ui/templates/deployment.yaml b/headscale-ui/templates/deployment.yaml index 25d9940..29a6155 100644 --- a/headscale-ui/templates/deployment.yaml +++ b/headscale-ui/templates/deployment.yaml @@ -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: diff --git a/headscale-ui/values.yaml b/headscale-ui/values.yaml index b35920a..7fa54df 100644 --- a/headscale-ui/values.yaml +++ b/headscale-ui/values.yaml @@ -23,6 +23,7 @@ serviceAccount: # If not set and create is true, a name is generated using the fullname template name: "" +podLabels: {} podAnnotations: {} podSecurityContext: {} diff --git a/headscale/Chart.yaml b/headscale/Chart.yaml index 8ea1e59..21c9920 100644 --- a/headscale/Chart.yaml +++ b/headscale/Chart.yaml @@ -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 diff --git a/headscale/README.md b/headscale/README.md index d4898d3..a76dd39 100644 --- a/headscale/README.md +++ b/headscale/README.md @@ -1,6 +1,6 @@ # 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. @@ -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` | | diff --git a/headscale/templates/deployment.yaml b/headscale/templates/deployment.yaml index b00fda0..51061b5 100644 --- a/headscale/templates/deployment.yaml +++ b/headscale/templates/deployment.yaml @@ -20,6 +20,9 @@ spec: {{- end }} labels: {{- include "headscale.selectorLabels" . | nindent 8 }} + {{- with .Values.podLabels }} + {{- toYaml . | nindent 8 }} + {{- end }} spec: {{- with .Values.imagePullSecrets }} imagePullSecrets: diff --git a/headscale/values.yaml b/headscale/values.yaml index 034e145..51b8430 100644 --- a/headscale/values.yaml +++ b/headscale/values.yaml @@ -118,6 +118,7 @@ serviceAccount: # If not set and create is true, a name is generated using the fullname template name: "" +podLabels: {} podAnnotations: {} podSecurityContext: {} diff --git a/hydrogen-web/Chart.yaml b/hydrogen-web/Chart.yaml index 8827f35..1589cb2 100644 --- a/hydrogen-web/Chart.yaml +++ b/hydrogen-web/Chart.yaml @@ -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" diff --git a/hydrogen-web/README.md b/hydrogen-web/README.md index c3eda21..30ce37f 100644 --- a/hydrogen-web/README.md +++ b/hydrogen-web/README.md @@ -1,6 +1,6 @@ # 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) @@ -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 | `{}` | | diff --git a/hydrogen-web/templates/deployment.yaml b/hydrogen-web/templates/deployment.yaml index 94e067d..a330984 100644 --- a/hydrogen-web/templates/deployment.yaml +++ b/hydrogen-web/templates/deployment.yaml @@ -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: diff --git a/hydrogen-web/values.yaml b/hydrogen-web/values.yaml index 22b4e3e..8d3370d 100644 --- a/hydrogen-web/values.yaml +++ b/hydrogen-web/values.yaml @@ -38,6 +38,7 @@ serviceAccount: # If not set and create is true, a name is generated using the fullname template name: "" +podLabels: {} podAnnotations: {} podSecurityContext: {} diff --git a/jellyfin/Chart.yaml b/jellyfin/Chart.yaml index 4cef051..08b07ee 100644 --- a/jellyfin/Chart.yaml +++ b/jellyfin/Chart.yaml @@ -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" diff --git a/jellyfin/README.md b/jellyfin/README.md index 3da36f0..efe1429 100644 --- a/jellyfin/README.md +++ b/jellyfin/README.md @@ -1,6 +1,6 @@ # 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 @@ -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 | `{}` | | diff --git a/jellyfin/templates/deployment.yaml b/jellyfin/templates/deployment.yaml index 1fa92ea..f1585f0 100644 --- a/jellyfin/templates/deployment.yaml +++ b/jellyfin/templates/deployment.yaml @@ -21,6 +21,9 @@ spec: {{- end }} labels: {{- include "jellyfin.selectorLabels" . | nindent 8 }} + {{- with .Values.podLabels }} + {{- toYaml . | nindent 8 }} + {{- end }} spec: {{- with .Values.imagePullSecrets }} imagePullSecrets: diff --git a/jellyfin/values.yaml b/jellyfin/values.yaml index d34e7e0..a2e87ab 100644 --- a/jellyfin/values.yaml +++ b/jellyfin/values.yaml @@ -40,6 +40,7 @@ serviceAccount: # If not set and create is true, a name is generated using the fullname template name: "" +podLabels: {} podAnnotations: {} podSecurityContext: {} diff --git a/miniserve/Chart.yaml b/miniserve/Chart.yaml index 1df3eef..8d791b5 100644 --- a/miniserve/Chart.yaml +++ b/miniserve/Chart.yaml @@ -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" diff --git a/miniserve/README.md b/miniserve/README.md index 5cc4ef1..4995a17 100644 --- a/miniserve/README.md +++ b/miniserve/README.md @@ -1,6 +1,6 @@ # 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 @@ -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"` | | diff --git a/miniserve/templates/deployment.yaml b/miniserve/templates/deployment.yaml index 299e1cd..959665b 100644 --- a/miniserve/templates/deployment.yaml +++ b/miniserve/templates/deployment.yaml @@ -20,6 +20,9 @@ spec: {{- end }} labels: {{- include "miniserve.selectorLabels" . | nindent 8 }} + {{- with .Values.podLabels }} + {{- toYaml . | nindent 8 }} + {{- end }} spec: {{- with .Values.imagePullSecrets }} imagePullSecrets: diff --git a/miniserve/values.yaml b/miniserve/values.yaml index 47bb9f3..cbd2f4e 100644 --- a/miniserve/values.yaml +++ b/miniserve/values.yaml @@ -108,6 +108,7 @@ serviceAccount: # If not set and create is true, a name is generated using the fullname template name: "" +podLabels: {} podAnnotations: {} podSecurityContext: {} diff --git a/ntfy/Chart.yaml b/ntfy/Chart.yaml index a507260..48d25e3 100644 --- a/ntfy/Chart.yaml +++ b/ntfy/Chart.yaml @@ -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" diff --git a/ntfy/README.md b/ntfy/README.md index fd6920f..79f5a49 100644 --- a/ntfy/README.md +++ b/ntfy/README.md @@ -1,6 +1,6 @@ # 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 @@ -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` | | diff --git a/ntfy/templates/deployment.yaml b/ntfy/templates/deployment.yaml index 1be61a5..8550abe 100644 --- a/ntfy/templates/deployment.yaml +++ b/ntfy/templates/deployment.yaml @@ -20,6 +20,9 @@ spec: {{- end }} labels: {{- include "ntfy.selectorLabels" . | nindent 8 }} + {{- with .Values.podLabels }} + {{- toYaml . | nindent 8 }} + {{- end }} spec: {{- with .Values.imagePullSecrets }} imagePullSecrets: diff --git a/ntfy/values.yaml b/ntfy/values.yaml index ce32de2..469598e 100644 --- a/ntfy/values.yaml +++ b/ntfy/values.yaml @@ -139,6 +139,7 @@ serviceAccount: # If not set and create is true, a name is generated using the fullname template name: "" +podLabels: {} podAnnotations: {} podSecurityContext: {} diff --git a/postgresql/Chart.yaml b/postgresql/Chart.yaml index 2409860..ca66b3d 100644 --- a/postgresql/Chart.yaml +++ b/postgresql/Chart.yaml @@ -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: diff --git a/postgresql/README.md b/postgresql/README.md index 32cdb92..889f058 100644 --- a/postgresql/README.md +++ b/postgresql/README.md @@ -1,6 +1,6 @@ # 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 @@ -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. | diff --git a/postgresql/templates/statefulset.yaml b/postgresql/templates/statefulset.yaml index 99d60ba..389d628 100644 --- a/postgresql/templates/statefulset.yaml +++ b/postgresql/templates/statefulset.yaml @@ -18,6 +18,9 @@ spec: {{- end }} labels: {{- include "postgresql.selectorLabels" . | nindent 8 }} + {{- with .Values.podLabels }} + {{- toYaml . | nindent 8 }} + {{- end }} spec: {{- with .Values.imagePullSecrets }} imagePullSecrets: diff --git a/postgresql/values.yaml b/postgresql/values.yaml index 3df135d..ccd3db8 100644 --- a/postgresql/values.yaml +++ b/postgresql/values.yaml @@ -22,6 +22,7 @@ serviceAccount: # If not set and create is true, a name is generated using the fullname template name: "" +podLabels: {} podAnnotations: {} podSecurityContext: {}