Skip to content

Commit

Permalink
Merge pull request #180 from devnev/deployment-strategy
Browse files Browse the repository at this point in the history
Fix location of deployment strategy property
  • Loading branch information
GeorgeMac authored Oct 22, 2024
2 parents 104e0b3 + d02972f commit d958f96
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/flipt/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: flipt
home: https://flipt.io
description: Flipt is an open-source, self-hosted feature flag solution.
type: application
version: 0.71.0
version: 0.71.1
appVersion: v1.50.1
maintainers:
- name: Flipt
Expand Down
8 changes: 4 additions & 4 deletions charts/flipt/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ spec:
replicas: {{ .Values.replicaCount }}
{{- end }}
minReadySeconds: {{ .Values.minReadySeconds }}
{{- with .Values.strategy }}
strategy:
{{- toYaml . | nindent 8 }}
{{- end }}

selector:
matchLabels:
Expand Down Expand Up @@ -128,7 +132,3 @@ spec:
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.strategy }}
strategy:
{{- toYaml . | nindent 8 }}
{{- end }}

0 comments on commit d958f96

Please sign in to comment.