diff --git a/neutron/templates/daemonset-sriov-agent.yaml b/neutron/templates/daemonset-sriov-agent.yaml index 73f760910e..6b715a6fd2 100644 --- a/neutron/templates/daemonset-sriov-agent.yaml +++ b/neutron/templates/daemonset-sriov-agent.yaml @@ -141,6 +141,10 @@ spec: command: - /tmp/neutron-sriov-agent.sh volumeMounts: + - mountPath: /sys/class/net + name: host-sys-class-net + - mountPath: /sys/devices + name: host-sys-devices - name: pod-tmp mountPath: /tmp - name: neutron-bin @@ -206,6 +210,12 @@ spec: mountPath: /run {{ if $mounts_neutron_sriov_agent.volumeMounts }}{{ toYaml $mounts_neutron_sriov_agent.volumeMounts | indent 12 }}{{ end }} volumes: + - name: host-sys-class-net + hostPath: + path: /sys/class/net + - name: host-sys-devices + hostPath: + path: /sys/devices - name: pod-tmp emptyDir: {} - name: pod-shared