Skip to content

Commit d958f96

Browse files
authored
Merge pull request #180 from devnev/deployment-strategy
Fix location of deployment strategy property
2 parents 104e0b3 + d02972f commit d958f96

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

charts/flipt/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: flipt
33
home: https://flipt.io
44
description: Flipt is an open-source, self-hosted feature flag solution.
55
type: application
6-
version: 0.71.0
6+
version: 0.71.1
77
appVersion: v1.50.1
88
maintainers:
99
- name: Flipt

charts/flipt/templates/deployment.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ spec:
1010
replicas: {{ .Values.replicaCount }}
1111
{{- end }}
1212
minReadySeconds: {{ .Values.minReadySeconds }}
13+
{{- with .Values.strategy }}
14+
strategy:
15+
{{- toYaml . | nindent 8 }}
16+
{{- end }}
1317

1418
selector:
1519
matchLabels:
@@ -128,7 +132,3 @@ spec:
128132
tolerations:
129133
{{- toYaml . | nindent 8 }}
130134
{{- end }}
131-
{{- with .Values.strategy }}
132-
strategy:
133-
{{- toYaml . | nindent 8 }}
134-
{{- end }}

0 commit comments

Comments
 (0)