diff --git a/chart/templates/transcoder/deployment.yaml b/chart/templates/transcoder/deployment.yaml index 495a1cbb..be58b1d6 100644 --- a/chart/templates/transcoder/deployment.yaml +++ b/chart/templates/transcoder/deployment.yaml @@ -13,7 +13,8 @@ metadata: spec: replicas: {{ .Values.transcoder.replicaCount }} {{- with .Values.transcoder.updateStrategy }} - strategy: {{ . }} + strategy: + {{- toYaml . | nindent 4 }} {{- end }} selector: matchLabels: diff --git a/chart/values.yaml b/chart/values.yaml index 4c054954..6f99c4f3 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -229,7 +229,8 @@ back: claimName: back-storage replicaCount: 1 # default to recreate for better user experience with ReadWriteOnce volumes - updateStrategy: Recreate + updateStrategy: + type: Recreate podLabels: {} deploymentAnnotations: {} podAnnotations: {} @@ -375,7 +376,8 @@ transcoder: emptyDir: {} replicaCount: 1 # default to recreate for better user experience with ReadWriteOnce volumes - updateStrategy: Recreate + updateStrategy: + type: Recreate podLabels: {} deploymentAnnotations: {} podAnnotations: {}