fix(ntfy): updateStrategy move to correct place

This commit is contained in:
pat-s 2024-07-26 10:14:41 +02:00 committed by WrenIX
parent 540393064d
commit 98d56f9a32
Signed by: wrenix
GPG key ID: 7AFDB012974B1BB5
3 changed files with 6 additions and 6 deletions

View file

@ -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:

View file

@ -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

View file

@ -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 }}