fix(ntfy): add updateStrategy with default 'recreate'
This commit is contained in:
parent
69166898cd
commit
0a6069e2ec
4 changed files with 14 additions and 2 deletions
|
@ -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.1.11
|
||||
version: 0.1.12
|
||||
# renovate: image=docker.io/binwiederhier/ntfy
|
||||
appVersion: "2.11.0"
|
||||
maintainers:
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
= ntfy
|
||||
|
||||
image::https://img.shields.io/badge/Version-0.1.11-informational?style=flat-square[Version: 0.1.11]
|
||||
image::https://img.shields.io/badge/Version-0.1.12-informational?style=flat-square[Version: 0.1.12]
|
||||
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
|
||||
|
@ -521,6 +521,11 @@ helm uninstall ntfy-release
|
|||
| list
|
||||
| `[]`
|
||||
|
|
||||
|
||||
| updateStrategy.type
|
||||
| string
|
||||
| `"Recreate"`
|
||||
|
|
||||
|===
|
||||
|
||||
Autogenerated from chart metadata using https://github.com/norwoodj/helm-docs[helm-docs]
|
||||
|
|
|
@ -28,6 +28,10 @@ spec:
|
|||
imagePullSecrets:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- with .Values.updateStrategy }}
|
||||
updateStrategy:
|
||||
{{- toYaml . | nindent 4 }}
|
||||
{{- end }}
|
||||
serviceAccountName: {{ include "ntfy.serviceAccountName" . }}
|
||||
securityContext:
|
||||
{{- toYaml .Values.podSecurityContext | nindent 8 }}
|
||||
|
|
|
@ -14,6 +14,9 @@ imagePullSecrets: []
|
|||
nameOverride: ""
|
||||
fullnameOverride: ""
|
||||
|
||||
updateStrategy:
|
||||
type: Recreate
|
||||
|
||||
ntfy:
|
||||
baseURL: "https://ntfy.example.org"
|
||||
listen:
|
||||
|
|
Loading…
Add table
Reference in a new issue