You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Helm supports -n or --namespace string to set the namespace on Deployments, Services, etc.
This is not working on mc-router helm charts when doing --dry-run. It does deploy to the correct namespace, but you can not see the Namespace when doing --dry-run.
Could we have this fixed?
You can use namespace: {{ .Release.Namespace }} to accomplish this.
I can do that, let me pull down the helm chart and do some testing.
I'll start with mc-router, then do the same for the rest.
I'll submit a PR once I validate it's working as expected.
Helm supports -n or --namespace string to set the namespace on Deployments, Services, etc.
This is not working on mc-router helm charts when doing --dry-run. It does deploy to the correct namespace, but you can not see the Namespace when doing --dry-run.
Could we have this fixed?
You can use namespace: {{ .Release.Namespace }} to accomplish this.
See examples below:
apiVersion: v1
kind: ServiceAccount
metadata:
name: example
namespace: {{ .Release.Namespace }}
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: example-ds
namespace: {{ .Release.Namespace }}
The text was updated successfully, but these errors were encountered: