File tree Expand file tree Collapse file tree 3 files changed +24
-14
lines changed
Expand file tree Collapse file tree 3 files changed +24
-14
lines changed Original file line number Diff line number Diff line change @@ -24,4 +24,4 @@ version: 0.1.0
2424dependencies :
2525 - name : config-bootstrapper
2626 repository : " https://storage.googleapis.com/hypertrace-helm-charts"
27- version : 0.2.44
27+ version : 0.2.47
Original file line number Diff line number Diff line change @@ -21,16 +21,16 @@ spec:
2121 metadata :
2222 labels :
2323 release : {{ .Release.Name }}
24- {{- with .Values.podLabels }}
24+ {{- with merge .Values.podLabels .Values.commonPodLabels }}
2525 {{- toYaml . | nindent 8 }}
26- {{- end }}
26+ {{- end }}
2727 annotations :
2828 checksum/config : {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
2929 prometheus.io/scrape : " true"
3030 prometheus.io/port : " {{ .Values.containerHealthProbePort }}"
31- {{- with .Values.podAnnotations }}
31+ {{- with merge .Values.podAnnotations .Values.commonPodAnnotations }}
3232 {{- toYaml . | nindent 8 }}
33- {{- end }}
33+ {{- end }}
3434 spec :
3535 {{- with .Values.imagePullSecrets }}
3636 imagePullSecrets :
5959 topologySpreadConstraints :
6060 {{- toYaml . | nindent 8}}
6161 {{- end }}
62- {{- with .Values.securityContext }}
62+ {{- with .Values.podSecurityContext }}
6363 securityContext :
6464 {{- toYaml . | nindent 8 }}
6565 {{- end }}
@@ -115,4 +115,8 @@ spec:
115115 port : {{ .Values.containerHealthProbePort }}
116116 resources :
117117 {{- toYaml .Values.resources | nindent 12 }}
118+ {{- with .Values.containerSecurityContext }}
119+ securityContext :
120+ {{- toYaml . | nindent 12 }}
121+ {{- end -}}
118122{{- end }}
Original file line number Diff line number Diff line change 1111 pullPolicy : IfNotPresent
1212 tagOverride : " "
1313
14- imagePullSecrets : { }
14+ imagePullSecrets : {}
1515
1616containerPort : 9012
1717containerHealthProbePort : 9013
@@ -21,15 +21,21 @@ service:
2121 type : ClusterIP
2222 port : 9012
2323
24- nodeLabels : { }
24+ nodeLabels : {}
2525
26- tolerations : [ ]
26+ tolerations : []
2727
28- affinity : { }
28+ affinity : {}
2929
30- topologySpreadConstraints : [ ]
30+ topologySpreadConstraints : []
3131
32- securityContext : { }
32+ podSecurityContext : {}
33+
34+ containerSecurityContext : {}
35+
36+ commonPodLabels : {}
37+
38+ commonPodAnnotations : {}
3339
3440javaOpts : " -XX:InitialRAMPercentage=50.0 -XX:MaxRAMPercentage=75.0 -XX:MaxDirectMemorySize=128M -XX:+ExitOnOutOfMemoryError"
3541
@@ -56,7 +62,7 @@ deploymentLabels:
5662podLabels :
5763 app : attribute-service
5864
59- podAnnotations : { }
65+ podAnnotations : {}
6066
6167deploymentSelectorMatchLabels :
6268 app : attribute-service
@@ -93,7 +99,7 @@ logConfig:
9399config-bootstrapper :
94100 job :
95101 prefix : attribute
96- configurationCommands : { }
102+ configurationCommands : {}
97103
98104hpa :
99105 enabled : false
You can’t perform that action at this time.
0 commit comments