File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: flipt
3
3
home : https://flipt.io
4
4
description : Flipt is an open-source, self-hosted feature flag solution.
5
5
type : application
6
- version : 0.70.0
6
+ version : 0.70.1
7
7
appVersion : v1.50.0
8
8
maintainers :
9
9
- name : Flipt
Original file line number Diff line number Diff line change 35
35
{{- toYaml .Values.securityContext | nindent 12 }}
36
36
image : " {{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
37
37
imagePullPolicy : {{ .Values.image.pullPolicy }}
38
+ command : ["/flipt"]
39
+ {{- if .Values.flipt.args }}
40
+ args :
41
+ {{- toYaml .Values.flipt.args | nindent 12 }}
42
+ {{- end }}
38
43
ports :
39
44
- name : http
40
45
containerPort : {{ coalesce ((.Values.flipt.config).server).http_port .Values.flipt.httpPort .Values.containerPorts.http }}
Original file line number Diff line number Diff line change @@ -137,6 +137,7 @@ flipt:
137
137
# grpcPort is the Flipt GRPC container port
138
138
# @deprecated use containerPorts.grpc instead
139
139
grpcPort : 9000
140
+ args : []
140
141
# extraEnvVars is a list of extra environment variables to set e.g.
141
142
# - name: FLIPT_LOG_LEVEL
142
143
# value: debug
You can’t perform that action at this time.
0 commit comments