Skip to content

Commit c5c7dda

Browse files
authored
feat: add image.command value (#228)
1 parent ea0c3c1 commit c5c7dda

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
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.85.1
6+
version: 0.85.2
77
appVersion: v1.59.1
88
maintainers:
99
- name: Flipt

charts/flipt/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ spec:
4444
{{- toYaml .Values.securityContext | nindent 12 }}
4545
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
4646
imagePullPolicy: {{ .Values.image.pullPolicy }}
47-
command: ["/flipt"]
47+
command: {{ .Values.image.command }}
4848
{{- if .Values.flipt.args }}
4949
args:
5050
{{- toYaml .Values.flipt.args | nindent 12 }}

charts/flipt/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ image:
66
pullPolicy: IfNotPresent
77
# Overrides the image tag whose default is the chart appVersion.
88
tag: ""
9+
command: ["/flipt"]
910

1011
imagePullSecrets: []
1112
nameOverride: ""

0 commit comments

Comments
 (0)