File tree Expand file tree Collapse file tree 4 files changed +18
-1
lines changed Expand file tree Collapse file tree 4 files changed +18
-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.78.1
6
+ version : 0.79.0
7
7
appVersion : v1.54.1
8
8
maintainers :
9
9
- name : Flipt
Original file line number Diff line number Diff line change @@ -112,6 +112,16 @@ Pod annotations
112
112
{ {- printf " checksum/config: %v" (join " ," .Values.flipt | sha256sum) | nindent 0 -} }
113
113
{ {- end -} }
114
114
115
+ { {/*
116
+ Deployment annotations
117
+ */} }
118
+ { {- define " common.classes.deploymentAnnotations" -} }
119
+ { {- if .Values.deploymentAnnotations -} }
120
+ { {- tpl (toYaml .Values.deploymentAnnotations) . | nindent 0 -} }
121
+ { {- end -} }
122
+ { {- printf " checksum/config: %v" (join " ," .Values.flipt | sha256sum) | nindent 0 -} }
123
+ { {- end -} }
124
+
115
125
{ {/* Return the target Kubernetes version */} }
116
126
{ {- define " flipt.tools.kubeVersion" -} }
117
127
{ {- default .Capabilities.KubeVersion.Version .Values.kubeVersionOverride } }
Original file line number Diff line number Diff line change @@ -3,8 +3,12 @@ kind: Deployment
3
3
metadata :
4
4
name : {{ include "flipt.fullname" . }}
5
5
namespace : {{ .Release.Namespace }}
6
+ annotations : {{- include "common.classes.deploymentAnnotations" . | nindent 4 }}
6
7
labels :
7
8
{{- include "flipt.labels" . | nindent 4 }}
9
+ {{- if .Values.deploymentLabels }}
10
+ {{- toYaml .Values.deploymentLabels | nindent 4 }}
11
+ {{- end }}
8
12
spec :
9
13
{{- if not .Values.autoscaling.enabled }}
10
14
replicas : {{ .Values.replicaCount }}
Original file line number Diff line number Diff line change 27
27
podAnnotations : {}
28
28
podLabels : {}
29
29
30
+ deploymentAnnotations : {}
31
+ deploymentLabels : {}
32
+
30
33
podSecurityContext :
31
34
runAsUser : 100
32
35
runAsGroup : 1000
You can’t perform that action at this time.
0 commit comments