canonical / data-science-stack

Stack with machine learning tools needed for local development.
Apache License 2.0
18 stars 7 forks source link

Break the microk8s install command to multiple #155

Closed kimwnasptd closed 3 months ago

kimwnasptd commented 3 months ago

Why it needs to get done

Right now the docs instruct users to install microk8s with the following command

sudo snap install microk8s --channel 1.28/stable --classic
sudo microk8s enable storage dns rbac

But this produces the following warnings

WARNING: Do not enable or disable multiple addons in one command.
         This form of chained operations on addons will be DEPRECATED in the future.
         Please, enable one addon at a time: 'microk8s enable <addon>'
DEPRECATION WARNING: 'storage' is deprecated and will soon be removed. Please use 'hostpath-storage' instead.

What needs to get done

Break the command to smaller ones like this

sudo snap install microk8s --channel 1.28/stable --classic
sudo microk8s enable hostpath-storage
sudo microk8s enable dns
sudo microk8s enable rbac

When is the task considered done

When we don't see the above warning during install

syncronize-issues-to-jira[bot] commented 3 months ago

Thank you for reporting us your feedback!

The internal ticket has been created: https://warthogs.atlassian.net/browse/KF-6075.

This message was autogenerated