Option to choose namespace destination for helm chart #100
Description
Hello,
We would like to use the template system of kiosk to let user install some packages without all the permissions to do it (like an operator)
For eg we need to install some helm chart in a specific namespace (created with the AKS cluster) with specific permissions (more restricted that the permissions in the space).
For example, our monitoring package need a service account with a ClusterRoleBinding+ClusterRole. This ClusterRole has more permissions than a normal user.
In the dedicated namespace named monitoring, user can not have access to secret or service account (namespace and permissions are not created by kiosk or the user and not managed by kiosk)
I’ve created a template for a helm chart with a value namespace: monitoring to force the installation in this namespace.
My issue is that if the user create the template-instance in, let say, project-dev namespace, the helm chart is installed in project-dev and not monitoring namespace.
Your helm template command render the files with « namespace: monitoring », but later in your code your replace the value of the namespace with an another one (the one use to create the template-instance) ...
Is it possible to have an option in the template to choose the namespace where the helm chart will be installed ?
Users can not modify template, so each time they want to install a template-instace, i can (for some of my charts with extended permission) set the target namespace per template if needed.
Let says : useTargetNamespace: true/false
If not set or set to true : same behaviour as before
If set to false : helm decision (so a forced namespace or the TargetNamespace)
Does it make sense ?