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
Hey everyone, I am getting this error: chown: changing ownership of '/var/cache/squid': Operation not permitted when running helm chart in my AKS. I have another team that changed their init container create-cache-dir args to:
args:
- |
set -e
squid -z 2>&1
vs what is currently being set:
args:
- |
set -e
chown -R squid.squid /var/cache/squid
chmod 770 /var/cache/squid
squid -z --foreground 2>&1
``
Would it be possible to either update this helm chart to have these args, provide a solution for why my stuff is failing, or allow the args to be a templated input where I can pass my own args?
The text was updated successfully, but these errors were encountered:
Hey everyone, I am getting this error:
chown: changing ownership of '/var/cache/squid': Operation not permitted
when running helm chart in my AKS. I have another team that changed their init containercreate-cache-dir
args to:vs what is currently being set:
The text was updated successfully, but these errors were encountered: