Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## In Development

## v0.12.0
* Move `st2web.annotations` to `st2web.service.annotations` to match `values.yaml` (#66)

## v0.11.0
* Add st2chatops support (@mosn, @rapittdev) (#55)

Expand Down
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
# Update StackStorm version here to rely on other Docker images tags
appVersion: 3.0dev
name: stackstorm-ha
version: 0.11.0
version: 0.12.0
Copy link
Member

@arm4b arm4b Apr 26, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just not important note for future: ideal here would be to bump patch version aka 0.11.1 since it's a small fix, no new functionality introduced.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Considered this, but incorrectly assumed change was user visible. It is not. So 0.11.1 was the better choice. Next time I will look at the change more closely.

description: StackStorm K8s Helm Chart, optimized for running StackStorm in HA environment.
home: https://stackstorm.com/#product
icon: https://avatars1.githubusercontent.com/u/4969009
Expand Down
4 changes: 2 additions & 2 deletions templates/services.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ metadata:
{{- if .Values.st2web.service.hostname }}
external-dns.alpha.kubernetes.io/hostname: {{ .Values.st2web.service.hostname | quote }}
{{- end }}
{{- if .Values.st2web.annotations }}
{{ toYaml .Values.st2web.annotations | indent 4 }}
{{- if .Values.st2web.service.annotations }}
{{ toYaml .Values.st2web.service.annotations | indent 4 }}
{{- end }}
labels:
app: st2web
Expand Down