Installing python on minikube

6/14/2020

I have been trying to install Python in minikube of the below version

Linux minikube 4.19.107 #1 SMP Thu May 28 15:07:17 PDT 2020 x86_64 GNU/Linux

However i havent been able to find out a installation package that availabe in this O.S in the minikube.

My objective is to install python on minikube so that i could use ansible from my local machine to deploy things into minikube.Please guide.

-- trial999
ansible
kubernetes
minikube

1 Answer

6/15/2020

Minikube is a dedicated application appliance. It is only for running Kubernetes. You would not install things on it via Ansible. You can use Ansible to automate Kubernetes, but you don't change anything on the host itself, that's just talking to the API.

-- coderanger
Source: StackOverflow