Is there any kubectl command to bootstrap yaml file for certain object?
For example
kubectl generate deployment --yml
After which I would fill it with values I want.
Thanks
You could try playing with:
kubectl create <resourcetype> <otheroptions> --output=yaml --dry-run
See:
for different <resourcetype>
you could use this with.