12345678910111213141516171819 |
- apiVersion: hostpathprovisioner.kubevirt.io/v1beta1
- kind: HostPathProvisioner
- metadata:
- name: hostpath-provisioner
- spec:
- imagePullPolicy: Always
- storagePools:
- - name: "local"
- path: "/var/hpvolumes"
- workload:
- nodeSelector:
- kubernetes.io/os: linux
- kubevirt.cluster.local/schedulable: "true"
- tolerations:
- - key: "workstation.cluster.local"
- operator: "Equal"
- value: "true"
- effect: "NoSchedule"
|