Skip to content

Commit 9a04c19

Browse files
ishuarblampe
andauthored
fix: service account naming (#530)
Use the service account name template for its naming. Update chart version. Fixes #529. --------- Co-authored-by: Bryce Lampe <[email protected]>
1 parent d651b64 commit 9a04c19

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ CHANGELOG
22
=========
33

44
## HEAD (unreleased)
5+
6+
### Fixed
7+
- Respect `serviceAccount.name` in Helm chart values. [#530](https://github.com/pulumi/pulumi-kubernetes-operator/pull/530)
8+
9+
### Changed
510
- Update pulumi/pulumi to v3.115.2. [#580](https://github.com/pulumi/pulumi-kubernetes-operator/pull/580)
611
- Regenerate CRDs with controller-gen v0.15.0. [#581](https://github.com/pulumi/pulumi-kubernetes-operator/pull/581)
712

deploy/helm/pulumi-operator/Chart.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ icon: https://www.pulumi.com/logos/brand/avatar-on-white.svg
99

1010
type: application
1111

12-
13-
version: 0.7.3
12+
version: 0.7.4
1413
appVersion: 1.14.0
1514

1615
keywords:

deploy/helm/pulumi-operator/templates/sa.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
apiVersion: v1
33
kind: ServiceAccount
44
metadata:
5-
name: {{ include "pulumi-kubernetes-operator.fullname" . }}
5+
name: {{ include "pulumi-kubernetes-operator.serviceAccountName" . }}
66
labels:
77
{{- include "pulumi-kubernetes-operator.labels" . | nindent 4 }}
88
{{- with .Values.serviceAccount.annotations }}

0 commit comments

Comments
 (0)