kudo
kudo copied to clipboard
Support nodeselector in kudo init
Support nodeselector for kudo init:
To able to deploy on Linux node/Specific Node:
Currently we are having K8s cluster running Windows as well as Linux container, and sometimes due to not having nodeselector when we run kudo init
it will create pods of kudo sts on Windows node.
I guess we can also use this to support others node types.
It's not nice but my workarround is to deploy kudo manually.
- kubectl kudo init --dry-run -o=yaml > 002_kudo.yaml
- Add the nodeSelector in that yaml.
That great, but here I am more concern if we can automate it so that easily be used in scripts to automate the installation.