I was following the instruction of how to install Rasa X on microk8s in the Udemy Advanced Deployment Workshop video, but I cannot download Rasa X on my-namespace.
What am I doing wrong here?
I was following the instruction of how to install Rasa X on microk8s in the Udemy Advanced Deployment Workshop video, but I cannot download Rasa X on my-namespace.
What am I doing wrong here?
If you want, instead of all that you can just enter a single Quick Installation command, and it will be equivalent to a Helm Chart Installation.
The created namespace will be called rasa
. You won’t have to setup anything, but you still can change it later (e.g., values.yml
). Apart from that, all the rest is the same and you can still follow the Workshop.
Thank you Chris for the reply.
Unfortunately, I got another error after entering the Quick Install command you mentioned.
I also tried to run the code below on the SSH Google Cloud but it didn’t work. What am I doing wrong here?
sudo chmod o+rw /etc/rancher/k3s/k3s.yaml
Weird. Maybe it’s something with GCP. Did you install Docker as well?
Can you try doing this command before quick-install?
export KUBECONFIG=/etc/rancher/k3s/k3s.yaml
If it doesn’t work, try uninstalling and purging everything related to Docker, Helm, and Kubernetes. Maybe it needs the regular Kubernetes and not microk8s? The quick-install command will reinstall everything for you, no worries.
Can you tell me whether if these commands are correct for uninstalling Docker, Helm and Kubernetes?
microk8s.disable dashboard dns
sudo snap remove microk8s
helm uninstall 3.7.1
dpkg -l | grep -i docker
sudo apt-get purge -y docker-engine docker docker.io docker-ce docker-ce-cli
sudo apt-get autoremove -y --purge docker-engine docker docker.io docker-ce
sudo rm -rf /var/lib/docker /etc/docker
sudo rm /etc/apparmor.d/docker
sudo groupdel docker
sudo rm -rf /var/run/docker.sock
I’m not familiar with Ubuntu codes so I’m not sure whether if I’m doing things correctly or not. Thanks!