...
Code Block |
---|
sudo snap install helm --classic --channel=3.5/stable |
Note: You may encounter some log issues when installing helm with snap
Normally the helm logs are available in "~/.local/share/helm/plugins/deploy/cache/onap/logs", if you notice that the log files are all equal to 0, you can uninstall the helm with snap and reinstall it manually
Code Block |
---|
wget https://get.helm.sh/helm-v3.5.4-linux-amd64.tar.gz
|
Code Block |
---|
tar xvfz helm-v3.5.4-linux-amd64.tar.gz
|
Code Block |
---|
mv linux-amd64/helm /usr/local/bin/helm
|
3) Tweak Microk8s
The below tweaks are not strictly necessary, but they help in making the setup more simple and flexible.
...