File tree 3 files changed +17
-2
lines changed
3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ type: application
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 0.5.2
18
+ version : 0.5.3
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
22
22
# follow Semantic Versioning. They should reflect the version the application is using.
23
23
# It is recommended to use it with quotes.
24
- appVersion : " 0.5.2 "
24
+ appVersion : " 0.5.3 "
Original file line number Diff line number Diff line change @@ -14,11 +14,23 @@ spec:
14
14
metadata :
15
15
labels :
16
16
{{- include "ydb.selectorLabels" . | nindent 8 }}
17
+ {{- with .Values.podAnnotations }}
18
+ annotations :
19
+ {{- toYaml . | nindent 8 }}
20
+ {{- end }}
17
21
spec :
18
22
{{- with .Values.nodeSelector }}
19
23
nodeSelector :
20
24
{{- toYaml . | nindent 8 -}}
21
25
{{- end }}
26
+ {{ with .Values.affinity }}
27
+ affinity :
28
+ {{- toYaml . | nindent 8 }}
29
+ {{ end }}
30
+ {{ with .Values.tolerations }}
31
+ tolerations :
32
+ {{- toYaml . | nindent 8 }}
33
+ {{- end }}
22
34
containers :
23
35
- args :
24
36
- --health-probe-bind-address=:8081
Original file line number Diff line number Diff line change 18
18
imagePullSecrets : []
19
19
20
20
nodeSelector : {}
21
+ podAnnotations : {}
22
+ affinity : {}
23
+ tolerations : []
21
24
22
25
nameOverride : " "
23
26
fullnameOverride : " "
You can’t perform that action at this time.
0 commit comments