diff --git a/setup/pod.yaml b/setup/pod.yaml index 3322e5b..7c98298 100644 --- a/setup/pod.yaml +++ b/setup/pod.yaml @@ -9,17 +9,16 @@ spec: imagePullPolicy: "IfNotPresent" env: - name: HOSTPATH_TO_USE - value: /var/openshift/ + value: /tmp/openshift/ - name: NODE_NAME valueFrom: fieldRef: fieldPath: spec.nodeName volumeMounts: - name: pv-volume - mountPath: /var/openshift + mountPath: /tmp/openshift volumes: - name: pv-volume hostPath: - path: /var/openshift + path: /tmp/openshift serviceAccount: hostpath-provisioner -