3
4 $ arkade get kubectl minikube
5
6 minikube start --driver virtualbox --container-runtime containerd
1 $ kubectl --context=minikube 2 apply -f - <<EOFapiVersion: v1 3 kind: Pod 4 metadata: 5 name: foo 6 spec: 7 containers: 8 - name: app 9 image: docker.io/kennethreitz/httpbin 10 ports: 11 - containerPort: 80 12 resources: 13 limits: 14 memory: "256Mi" 15 - name: sidecar 16 image: curlimages/curl 17 command: ["/bin/sleep", "3650d"] 18 resources: 19 limits: 20 memory: "128Mi" 21 EOF