What if helm command refuse to execute
Page content
helm 명령을 입력했는데 다음과 같은 에러 메시지를 내면서 실행을 거부한다.
$ helm ls
snap-confine has elevated permissions and is not confined but should be. Refusing to continue to avoid permission escalation attacks
에러 메시지를 찾아보니 보안 관련된 내용이 이슈라고 다음과 같이 하면 해결된다.
$ sudo systemctl enable --now apparmor.service
Synchronizing state of apparmor.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable apparmor
하지만 이제는 helm의 client와 server 버전이 맞지 않다는 에러
$ helm ls
Error: incompatible versions client[v2.15.1] server[v2.14.3]
해결책은 helm server 버전을 client와 같은 버전으로 변경하면 된다고.
$ helm init --upgrade
$HELM_HOME has been configured at /home/cychong/.helm.
Tiller (the Helm server-side component) has been updated to gcr.io/kubernetes-helm/tiller:v2.15.1 .
Reference