-
Notifications
You must be signed in to change notification settings - Fork 219
fix(helm): honor release namespace instead of hardcoded ns-aiq #309
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: develop
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 |
|---|---|---|
|
|
@@ -3,4 +3,4 @@ appVersion: 2.0.0 | |
| description: AI-Q Helm Chart | ||
| name: aiq | ||
| type: application | ||
| version: "0.0.4" | ||
| version: "0.0.5" | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
| apiVersion: v1 | ||
| kind: Namespace | ||
| metadata: | ||
| name: {{ .Release.Namespace }} | ||
| name: {{ include "aiq.namespace" . }} | ||
|
Collaborator
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. #290 only requires resources to honor |
||
| labels: | ||
| {{- if and .Values.project.dl (ne (.Values.project.orientation | default "internal") "external") }} | ||
| sysdev.nvidia.com/dl: {{ .Values.project.dl | quote }} | ||
|
|
||
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.
#290 reproduces against the published
aiq2-web-2.1.0, but this change versions the umbrella chart as2.0.1. Affected users will not receive that as an upgrade. Can we backport this as2.1.1or confirm which newer published release will carry the fix before closing #290?