diff --git a/charts/flipt/Chart.yaml b/charts/flipt/Chart.yaml index ed7fece..e1354f5 100644 --- a/charts/flipt/Chart.yaml +++ b/charts/flipt/Chart.yaml @@ -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.70.0 +version: 0.70.1 appVersion: v1.50.0 maintainers: - name: Flipt diff --git a/charts/flipt/templates/deployment.yaml b/charts/flipt/templates/deployment.yaml index bc55e4a..f9f83e7 100644 --- a/charts/flipt/templates/deployment.yaml +++ b/charts/flipt/templates/deployment.yaml @@ -35,6 +35,11 @@ spec: {{- toYaml .Values.securityContext | nindent 12 }} image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }} + command: "/flipt" + {{- if .Values.flipt.args }} + args: + {{- toYaml .Values.flipt.args | nindent 12 }} + {{- end }} ports: - name: http containerPort: {{ coalesce ((.Values.flipt.config).server).http_port .Values.flipt.httpPort .Values.containerPorts.http }} diff --git a/charts/flipt/values.yaml b/charts/flipt/values.yaml index 4ea54bb..f10c59b 100644 --- a/charts/flipt/values.yaml +++ b/charts/flipt/values.yaml @@ -137,6 +137,7 @@ flipt: # grpcPort is the Flipt GRPC container port # @deprecated use containerPorts.grpc instead grpcPort: 9000 + args: [] # extraEnvVars is a list of extra environment variables to set e.g. # - name: FLIPT_LOG_LEVEL # value: debug