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
Currently, the namespace attribute value of all namespace-related components in the templates is namespace: {{ .Release.Namespace }}, making it impossible to use namespaceOverride in dependencies to define the namespace.
A more flexible and compatible implementation should be as follows:
Add a template:
{{- define "local-path-provider.namespace" -}}{{- if .Values.namespaceOverride }}{{- .Values.namespaceOverride }}{{- else }}{{- .Release.Namespace }}{{- end }}{{- end -}}
Assign the namespace to the component:
namespace: {{ include "phpmyadmin.namespace" . }}
Currently, to modify the namespace, you can only pull the dependency locally and modify the code.
I hope future versions can be compatible with namespaceOverride.
The text was updated successfully, but these errors were encountered:
Currently, the
namespace
attribute value of all namespace-related components in the templates isnamespace: {{ .Release.Namespace }}
, making it impossible to usenamespaceOverride
in dependencies to define the namespace.A more flexible and compatible implementation should be as follows:
Add a template:
Assign the namespace to the component:
Currently, to modify the namespace, you can only pull the dependency locally and modify the code.
I hope future versions can be compatible with
namespaceOverride
.The text was updated successfully, but these errors were encountered: