Skip to content

Commit 834d098

Browse files
authored
Add deployment strategy customization (#178)
* Add deployment strategy customization * fix: bump chart version
1 parent acb9ab5 commit 834d098

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
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.70.2
6+
version: 0.70.3
77
appVersion: v1.50.0
88
maintainers:
99
- name: Flipt

charts/flipt/templates/deployment.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,3 +128,7 @@ spec:
128128
tolerations:
129129
{{- toYaml . | nindent 8 }}
130130
{{- end }}
131+
{{- with .Values.strategy }}
132+
strategy:
133+
{{- toYaml . | nindent 8 }}
134+
{{- end }}

charts/flipt/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ pdb:
9797
nodeSelector: {}
9898
tolerations: []
9999
affinity: {}
100+
strategy: {}
100101

101102
## Container ports
102103
##

0 commit comments

Comments
 (0)