From 98d56f9a32031f5ac95601947f28adede9c515da Mon Sep 17 00:00:00 2001 From: pat-s Date: Fri, 26 Jul 2024 10:14:41 +0200 Subject: [PATCH] fix(ntfy): updateStrategy move to correct place --- ntfy/Chart.yaml | 2 +- ntfy/README.adoc | 2 +- ntfy/templates/deployment.yaml | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ntfy/Chart.yaml b/ntfy/Chart.yaml index 33ae18b..8132177 100644 --- a/ntfy/Chart.yaml +++ b/ntfy/Chart.yaml @@ -3,7 +3,7 @@ name: ntfy description: A Helm chart for Kubernetes icon: https://github.com/binwiederhier/ntfy/raw/main/web/public/static/images/pwa-512x512.png type: application -version: 0.3.0 +version: 0.3.1 # renovate: image=docker.io/binwiederhier/ntfy appVersion: "2.11.0" maintainers: diff --git a/ntfy/README.adoc b/ntfy/README.adoc index 7778348..879e49b 100644 --- a/ntfy/README.adoc +++ b/ntfy/README.adoc @@ -2,7 +2,7 @@ = ntfy -image::https://img.shields.io/badge/Version-0.3.0-informational?style=flat-square[Version: 0.3.0] +image::https://img.shields.io/badge/Version-0.3.1-informational?style=flat-square[Version: 0.3.1] image::https://img.shields.io/badge/Version-application-informational?style=flat-square[Type: application] image::https://img.shields.io/badge/AppVersion-2.11.0-informational?style=flat-square[AppVersion: 2.11.0] == Maintainers diff --git a/ntfy/templates/deployment.yaml b/ntfy/templates/deployment.yaml index 98692e0..7636ccc 100644 --- a/ntfy/templates/deployment.yaml +++ b/ntfy/templates/deployment.yaml @@ -11,6 +11,10 @@ spec: selector: matchLabels: {{- include "ntfy.selectorLabels" . | nindent 6 }} + strategy: + {{- with .Values.updateStrategy }} + {{- toYaml . | nindent 4 }} + {{- end }} template: metadata: annotations: @@ -28,10 +32,6 @@ spec: imagePullSecrets: {{- toYaml . | nindent 8 }} {{- end }} - {{- with .Values.updateStrategy }} - updateStrategy: - {{- toYaml . | nindent 8 }} - {{- end }} serviceAccountName: {{ include "ntfy.serviceAccountName" . }} securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }}