-
Notifications
You must be signed in to change notification settings - Fork 5
fix(membership): wizard Job uses migration ServiceAccount #388
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,12 @@ | ||
| dependencies: | ||
| - name: membership | ||
| repository: file://../membership | ||
| version: 3.6.0 | ||
| version: 3.6.1 | ||
| - name: portal | ||
| repository: file://../portal | ||
| version: 3.7.0 | ||
| - name: console-v3 | ||
| repository: file://../console-v3 | ||
| version: 3.7.0 | ||
| digest: sha256:daed3f4af5ace511de313180abe29e55726644ec51b9acd1a895b1e66ed41369 | ||
| generated: "2026-06-22T09:33:02.325748+02:00" | ||
| digest: sha256:5fb552ea26996bc58762b3c7f7cc37c176e3e8863be3fc2691e4f93e5d2c593e | ||
| generated: "2026-06-22T16:53:05.544004+02:00" |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,7 +19,7 @@ spec: | |
| restartPolicy: OnFailure | ||
| securityContext: | ||
| {{- toYaml .Values.podSecurityContext | nindent 8 }} | ||
| serviceAccountName: {{ include "core.serviceAccountName" . }} | ||
| serviceAccountName: {{ include "core.postgres.job.serviceAccountName" . }} | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🟠 [major] Preserve the existing SA when hooks are disabled When |
||
| {{- with .Values.imagePullSecrets }} | ||
| imagePullSecrets: | ||
| {{- toYaml . | nindent 8 }} | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🟠 [major] Keep wizard on an existing SA when migration SA is disabled
When
config.migration.serviceAccount.create=falseand noconfig.migration.serviceAccount.nameis supplied, this helper rendersdefault-migrate, but the chart does not create that ServiceAccount. The wizard Job previously usedcore.serviceAccountNamein this configuration, so it could run with the normal chart/default SA; after this change the wizard pod will fail to schedule unless operators manually createdefault-migrateor set a name.