diff options
author | Ritu Sood <ritu.sood@intel.com> | 2020-11-19 18:13:07 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-11-19 18:13:07 +0000 |
commit | b3a1e8b58d2053f9d699d5b687e3a87600c3115c (patch) | |
tree | c8fb8a10d2ad58f201533965677821675b940ae8 /kud/deployment_infra/images | |
parent | 4e012e850d595352ab3d828c7bceab42db3aa97e (diff) | |
parent | 61dbe22ebb42279e388f53c557c267d43a774ed2 (diff) |
Merge "Build and deploy sriov module only on supported hosts."
Diffstat (limited to 'kud/deployment_infra/images')
-rw-r--r-- | kud/deployment_infra/images/sriov-cni.yml | 9 | ||||
-rw-r--r-- | kud/deployment_infra/images/sriov-daemonset.yml | 9 |
2 files changed, 18 insertions, 0 deletions
diff --git a/kud/deployment_infra/images/sriov-cni.yml b/kud/deployment_infra/images/sriov-cni.yml index 7503b872..570b00ee 100644 --- a/kud/deployment_infra/images/sriov-cni.yml +++ b/kud/deployment_infra/images/sriov-cni.yml @@ -21,6 +21,15 @@ spec: tier: node app: sriov-cni spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: feature.node.kubernetes.io/network-sriov.capable + operator: In + values: + - "true" hostNetwork: true nodeSelector: beta.kubernetes.io/arch: amd64 diff --git a/kud/deployment_infra/images/sriov-daemonset.yml b/kud/deployment_infra/images/sriov-daemonset.yml index e392028d..41b1cbaa 100644 --- a/kud/deployment_infra/images/sriov-daemonset.yml +++ b/kud/deployment_infra/images/sriov-daemonset.yml @@ -46,6 +46,15 @@ spec: tier: node app: sriovdp spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: feature.node.kubernetes.io/network-sriov.capable + operator: In + values: + - "true" hostNetwork: true hostPID: true nodeSelector: |