If you cannot ping the other nodes using the hostname, add the IP address and hostname of the other nodes to the /etc/hosts file. See the MicroK8s documentation for tips on troubleshooting cluster setup-related issues.
Update images
|
| Operation | Command |
|---|
| Delete existing image | microk8s ctr i rm <imageName> |
| Pull latest Image | microk8s ctr i pull <url> |
| Import image from file | microk8s ctr i import <fileName.tar> |
| Re-tag Image | microk8s ctr i tag <oldName> <newName> |
Update helm packages
|
| Operation | Command |
|---|
| Install chart | helm install <packageName> <helmPackageFile> |
| Update existing chart | helm upgrade <packageName> <helmPackageFile> |
| Delete existing chart | helm uninstall <packageName> |
| Package as tar | helm package <helmChartDirectory> |
| Untar the chart | tar -xvzf <helmChartFile.tar> |