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 YAML file for the quick install templates out the namespace with {{namespace}}. Before applying the YAML, the template is replaced using a simple sed call. This is fine, but a bit complicated - it means end users can't simply apply the YAML.
It's not clear from a casual glance why we can't just do kubectl apply -n NAMESPACE instead of the templating. Possibly this will break something. We should verify this and update the code to the simpler version possible. This will need to be tested on different platforms.
The text was updated successfully, but these errors were encountered:
a solution might be to write a simple k8s operator instead of using bash scripts. Thank you for this, since I have been using it with success for some month now. The reason for the automatic deployment is that without it, you can't really add trow to a full automated cluster deployment with ansible, or at least it would be more difficult than expected
Currently the YAML file for the quick install templates out the namespace with {{namespace}}. Before applying the YAML, the template is replaced using a simple sed call. This is fine, but a bit complicated - it means end users can't simply apply the YAML.
It's not clear from a casual glance why we can't just do
kubectl apply -n NAMESPACE
instead of the templating. Possibly this will break something. We should verify this and update the code to the simpler version possible. This will need to be tested on different platforms.The text was updated successfully, but these errors were encountered: