Skip to content

Commit

Permalink
fix: Fixed incorrect volume claim label pattern (#1067)
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Hipwell <[email protected]>
  • Loading branch information
stevehipwell authored Oct 24, 2024
1 parent 0000838 commit 823c4c7
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 5 deletions.
7 changes: 7 additions & 0 deletions charts/confluence-server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@

## [UNRELEASED]

> [!IMPORTANT]
> If you're using a `StatefulSet` and upgrading to this version you will need to run `kubectl --namespace <namespace> delete statefulset <name> --cascade=orphan` before upgrading as there was a bug in previous versions of this chart that incorrectly labeled the volume claim template.
### Fixed

- Fixed incorrect labeling on the volume claim template. ([#1067](https://github.com/stevehipwell/helm-charts/pull/1067)) _@stevehipwell_

## [v5.7.1] - 2024-01-16

> [!CAUTION]
Expand Down
2 changes: 1 addition & 1 deletion charts/confluence-server/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ spec:
- metadata:
name: {{ include "confluence-server.pvcname" . }}
labels:
{{- include "confluence-server.labels" . | nindent 10 }}
{{- include "confluence-server.selectorLabels" . | nindent 10 }}
{{- with .Values.persistence.annotations }}
annotations:
{{- . | toYaml | nindent 10 }}
Expand Down
6 changes: 3 additions & 3 deletions charts/nexus3/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
### Changed

- Changed the order of the initialization scripts to allow creating roles based on repository privileges. ([#xxxx](https://github.com/stevehipwell/helm-charts/pull/xxxx)) _@stevehipwell_ & _@mreiche_
- Improved docs for config with reference to the API documentation. ([#xxxx](https://github.com/stevehipwell/helm-charts/pull/xxxx)) _@stevehipwell_ & _@mreiche_
- Changed the order of the initialization scripts to allow creating roles based on repository privileges. ([#1066](https://github.com/stevehipwell/helm-charts/pull/1066)) _@stevehipwell_ & _@mreiche_
- Improved docs for config with reference to the API documentation. ([#1066](https://github.com/stevehipwell/helm-charts/pull/1066)) _@stevehipwell_ & _@mreiche_

### Fixed

- Fixed LDAP templating incorrectly using `toJson` without passing in the data resulting in no configuration to apply. ([#1064](https://github.com/stevehipwell/helm-charts/pull/1064)) _@KuroXII_
- Fixed incorrect labeling on the volume claim template. ([#xxxx](https://github.com/stevehipwell/helm-charts/pull/xxxx)) _@stevehipwell_
- Fixed incorrect labeling on the volume claim template. ([#1066](https://github.com/stevehipwell/helm-charts/pull/1066)) _@stevehipwell_

## [v5.1.0] - 2024-10-14

Expand Down
7 changes: 7 additions & 0 deletions charts/sonarqube/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@

## [UNRELEASED]

> [!IMPORTANT]
> If you're using a `StatefulSet` and upgrading to this version you will need to run `kubectl --namespace <namespace> delete statefulset <name> --cascade=orphan` before upgrading as there was a bug in previous versions of this chart that incorrectly labeled the volume claim template.
### Fixed

- Fixed incorrect labeling on the volume claim template. ([#1067](https://github.com/stevehipwell/helm-charts/pull/1067)) _@stevehipwell_

## [v5.7.0] - 2024-10-04

### Changed
Expand Down
2 changes: 1 addition & 1 deletion charts/sonarqube/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ spec:
- metadata:
name: {{ include "sonarqube.pvcname" . }}
labels:
{{- include "sonarqube.labels" . | nindent 10 }}
{{- include "sonarqube.selectorLabels" . | nindent 10 }}
{{- with .Values.persistence.annotations }}
annotations:
{{- . | toYaml | nindent 10 }}
Expand Down

0 comments on commit 823c4c7

Please sign in to comment.