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
Deploying with kubectl -f dir/ could be an option, but that could break template logic and variables that all files need.
Maybe concatenate multiple files into one, before deploying it. Like 001-service-a.tmpl.yml, 002-service-b.tmpl.yml, then cat *.yml > deployment.tmpl.yml.
The text was updated successfully, but these errors were encountered:
Our
ops/deploy/deployment.tmpl.yml
is getting quite big. Splitting that up into multiple files, by service, could help.Maybe like this:
Deploying with
kubectl -f dir/
could be an option, but that could break template logic and variables that all files need.Maybe concatenate multiple files into one, before deploying it. Like 001-service-a.tmpl.yml, 002-service-b.tmpl.yml, then
cat *.yml > deployment.tmpl.yml
.The text was updated successfully, but these errors were encountered: