gVisor, a sandboxed container runtime, allows users to securely run pods with untrusted workloads within minikube.
gVisor depends on the containerd runtime to run in minikube. When starting minikube, specify the following flags, along with any additional desired flags:
$ minikube start --container-runtime=containerd \ --docker-opt containerd=/var/run/containerd/containerd.sock
To enable this addon, simply run:
$ minikube addons enable gvisor
Within one minute, the addon manager should pick up the change and you should see the gvisor
pod and gvisor
Runtime Class:
$ kubectl get pod,runtimeclass gvisor -n kube-system NAME READY STATUS RESTARTS AGE pod/gvisor 1/1 Running 0 2m52s NAME CREATED AT runtimeclass.node.k8s.io/gvisor 2019-06-15T04:35:09Z
Once the pod has status Running
, gVisor is enabled in minikube.
To run a pod in gVisor, add the gvisor
runtime class to the Pod spec in your Kubernetes yaml:
runtimeClassName: gvisor
An example Pod is shown below:
apiVersion: v1kind: Podmetadata: name: nginx-untrustedspec: runtimeClassName: gvisorcontainers: - name: nginximage: nginx
To disable gVisor, run:
$ minikube addons disable gvisor
Within one minute, the addon manager should pick up the change. Once the gvisor
pod has status Terminating
, or has been deleted, the gvisor addon should be disabled.
$ kubectl get pod gvisor -n kube-system NAME READY STATUS RESTARTS AGE gvisor 1/1 Terminating 0 5m
Note: Once gVisor is disabled, any pod with the gvisor
Runtime Class will fail with a FailedCreatePodSandBox error.