diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bc99c39..3336cd51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ CHANGELOG ========= ## HEAD (unreleased) + +### Fixed +- Respect `serviceAccount.name` in Helm chart values. [#530](https://github.com/pulumi/pulumi-kubernetes-operator/pull/530) + +### Changed - Update pulumi/pulumi to v3.115.2. [#580](https://github.com/pulumi/pulumi-kubernetes-operator/pull/580) - Regenerate CRDs with controller-gen v0.15.0. [#581](https://github.com/pulumi/pulumi-kubernetes-operator/pull/581) diff --git a/deploy/helm/pulumi-operator/Chart.yaml b/deploy/helm/pulumi-operator/Chart.yaml index 5f869aee..652da240 100755 --- a/deploy/helm/pulumi-operator/Chart.yaml +++ b/deploy/helm/pulumi-operator/Chart.yaml @@ -9,8 +9,7 @@ icon: https://www.pulumi.com/logos/brand/avatar-on-white.svg type: application - -version: 0.7.3 +version: 0.7.4 appVersion: 1.14.0 keywords: diff --git a/deploy/helm/pulumi-operator/templates/sa.yaml b/deploy/helm/pulumi-operator/templates/sa.yaml index 8b585e9a..970d76d6 100644 --- a/deploy/helm/pulumi-operator/templates/sa.yaml +++ b/deploy/helm/pulumi-operator/templates/sa.yaml @@ -2,7 +2,7 @@ apiVersion: v1 kind: ServiceAccount metadata: - name: {{ include "pulumi-kubernetes-operator.fullname" . }} + name: {{ include "pulumi-kubernetes-operator.serviceAccountName" . }} labels: {{- include "pulumi-kubernetes-operator.labels" . | nindent 4 }} {{- with .Values.serviceAccount.annotations }}