Browse Source

fixing some issues with the DaemonSet

pull/2/head
Nicolas Massé 9 years ago
parent
commit
a9d6ccf89f
  1. 26
      setup/hostpath-provisioner-template.yaml

26
setup/hostpath-provisioner-template.yaml

@ -112,19 +112,19 @@ objects:
name: hostpath-provisioner
spec:
containers:
name: hostpath-provisioner
image: ${HOSTPATH_PROVISIONER_IMAGE}
imagePullPolicy: "IfNotPresent"
env:
- name: HOSTPATH_TO_USE
value: ${HOSTPATH_TO_USE}
- name: NODE_NAME
valueFrom:
fieldRef:
fieldPath: spec.nodeName
volumeMounts:
- name: pv-volume
mountPath: ${HOSTPATH_TO_USE}
- name: hostpath-provisioner
image: ${HOSTPATH_PROVISIONER_IMAGE}
imagePullPolicy: "IfNotPresent"
env:
- name: HOSTPATH_TO_USE
value: ${HOSTPATH_TO_USE}
- name: NODE_NAME
valueFrom:
fieldRef:
fieldPath: spec.nodeName
volumeMounts:
- name: pv-volume
mountPath: ${HOSTPATH_TO_USE}
volumes:
- name: pv-volume
hostPath:

Loading…
Cancel
Save