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