Skip to content

Commit 95c8a42

Browse files
committed
fix conflict in Changelog
2 parents 3379c5f + 1156ae2 commit 95c8a42

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
* Add `st2canary` job as a Helm Hook that runs before install/upgrade to ensure `st2.packs.volumes` is configured correctly (if `st2.packs.volumes.enabled`). (#323) (by @cognifloyd)
99
* Enable using existing `st2-auth` secret. This allows users to manage this secret outside of the Helm process. (#359) (by @bmarick)
1010
* Add terminationGracePeriodSeconds to workflow and actionrunner pods to allow adjustment of grace period in k8 (#374) (by @guzzijones12)
11+
* Prevent duplicate init containers on helm upgrade (#375) (by @guzzijones12)
12+
* Fix st2 client config issue affecting addon jobs using jobs.extra_hooks (#370) (by @cars)
1113

1214
## v0.110.0
1315
* Switch st2 to `v3.8` as a new default stable version (#347)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -250,10 +250,10 @@ For example, to use persistentVolumeClaims:
250250
enabled: true
251251
packs:
252252
persistentVolumeClaim:
253-
claim-name: pvc-st2-packs
253+
claimName: pvc-st2-packs
254254
virtualenvs:
255255
persistentVolumeClaim:
256-
claim-name: pvc-st2-virtualenvs
256+
claimName: pvc-st2-virtualenvs
257257
```
258258

259259
Or, for example, to use NFS:
@@ -286,7 +286,7 @@ For example, to use persistentVolumeClaims:
286286
... # define packs and virtualenvs volumes as shown above
287287
configs:
288288
persistentVolumeClaim:
289-
claim-name: pvc-st2-pack-configs
289+
claimName: pvc-st2-pack-configs
290290
```
291291

292292
Or, for example, to use NFS:

templates/_helpers.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ Merge packs and virtualenvs from st2 with those from st2packs images
330330
{{- define "stackstorm-ha.packs-initContainers" -}}
331331
{{- if $.Values.st2.packs.images }}
332332
{{- range $.Values.st2.packs.images }}
333-
- name: 'st2-custom-pack-{{ printf "%s-%s-%s" .repository .name .tag | sha1sum }}'
333+
- name: 'st2-custom-pack-{{ printf "%s-%s" .repository .name | sha1sum }}'
334334
image: "{{ .repository }}/{{ .name }}:{{ .tag }}"
335335
imagePullPolicy: {{ .pullPolicy | quote }}
336336
volumeMounts:

templates/jobs.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -661,7 +661,6 @@ spec:
661661
- '-ec'
662662
- |
663663
cat <<EOT > /root/.st2/config
664-
[credentials]
665664
{{- tpl $.Values.jobs.st2clientConfig $ | nindent 12 }}
666665
EOT
667666
containers:

values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ st2:
174174

175175
# example using persistentVolumeClaim:
176176
#persistentVolumeClaim:
177-
# claim-name: pvc-st2-packs
177+
# claimName: pvc-st2-packs
178178

179179
# example using NFS:
180180
#nfs:

0 commit comments

Comments
 (0)