apiVersion: v1 kind: Pod metadata: name: demo-docker-sock spec: containers: - image: gcr.io/google_containers/test-webserver name: test-container volumeMounts: - mountPath: /var/run/docker.sock name: docker-sock-volume volumes: - name: docker-sock-volume hostPath: path: /var/run/docker.sock type: Socket