Make the provisioner use a hostPath.

pull/2352/head
dlorenc 2017-12-20 13:28:45 -08:00 committed by dlorenc
parent bf2ea0ec93
commit 7550fcd6e0
1 changed files with 9 additions and 0 deletions

View File

@ -25,4 +25,13 @@ spec:
containers:
- name: storage-provisioner
image: gcr.io/k8s-minikube/storage-provisioner:v1.8.1
command: ["/storage-provisioner"]
imagePullPolicy: IfNotPresent
volumeMounts:
- mountPath: /tmp
name: tmp
volumes:
- name: tmp
hostPath:
path: /tmp
type: Directory