File tree 3 files changed +9
-0
lines changed
3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
3
## In Development
4
+ * Added custom annotations to sensorcontainer and actionrunner Pods (#123 ) (by @stefangusa )
4
5
5
6
6
7
## v0.25.0
Original file line number Diff line number Diff line change @@ -831,6 +831,9 @@ spec:
831
831
annotations :
832
832
checksum/config : {{ include (print $.Template.BasePath "/configmaps_st2-conf.yaml") $ | sha256sum }}
833
833
checksum/packs : {{ include (print $.Template.BasePath "/configmaps_packs.yaml") $ | sha256sum }}
834
+ {{- if .annotations }}
835
+ {{ toYaml .annotations | indent 8 }}
836
+ {{- end }}
834
837
spec :
835
838
imagePullSecrets :
836
839
{{- if $.Values.enterprise.enabled }}
@@ -976,6 +979,9 @@ spec:
976
979
annotations :
977
980
checksum/config : {{ include (print $.Template.BasePath "/configmaps_st2-conf.yaml") . | sha256sum }}
978
981
checksum/ssh : {{ include (print $.Template.BasePath "/secrets_ssh.yaml") . | sha256sum }}
982
+ {{- if .Values.st2actionrunner.annotations }}
983
+ {{ toYaml .Values.st2actionrunner.annotations | indent 8 }}
984
+ {{- end }}
979
985
spec :
980
986
{{- if .Values.st2actionrunner.hostAliases }}
981
987
hostAliases :
Original file line number Diff line number Diff line change 108
108
- name :
109
109
livenessProbe : {}
110
110
readinessProbe : {}
111
+ annotations : {}
111
112
# TODO: Find out recommended/default resources for this specific service (#5)
112
113
resources : {}
113
114
# Additional advanced settings to control pod/deployment placement
@@ -340,6 +341,7 @@ st2actionrunner:
340
341
replicas : 5
341
342
# TODO: Find out recommended/default resources for this specific service (#5)
342
343
resources : {}
344
+ annotations : {}
343
345
# Additional advanced settings to control pod/deployment placement
344
346
nodeSelector : {}
345
347
tolerations : []
You can’t perform that action at this time.
0 commit comments