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
The first thing, that I want to add, is changing file permissions to make directories traversable:
find /var/www/htdocs -type d -exec chmod 755 -R {} \;
There are likely more such one-liners in the future, that I want to add. Booting up a container for each one of those just to run that line seems a bit overkill. Is there a good way to add more commands?
EDIT: If it's not that much overhead, I can of course use a separate init container per command.
The text was updated successfully, but these errors were encountered:
I want to expand this init script to run more commands:
helm-charts/charts/safir/templates/deployment.yaml
Lines 71 to 81 in dd752fa
The first thing, that I want to add, is changing file permissions to make directories traversable:
find /var/www/htdocs -type d -exec chmod 755 -R {} \;
There are likely more such one-liners in the future, that I want to add. Booting up a container for each one of those just to run that line seems a bit overkill. Is there a good way to add more commands?
EDIT: If it's not that much overhead, I can of course use a separate init container per command.
The text was updated successfully, but these errors were encountered: