blob: 7670b700be4bf806ffb11ec76cbc027a5ee53d8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
apiVersion: "k8s.cni.cncf.io/v1"
kind: NetworkAttachmentDefinition
metadata:
name: sriov-eno2
annotations:
k8s.v1.cni.cncf.io/resourceName: intel.com/intel_sriov_700
spec:
config: '{
"type": "sriov",
"cniVersion": "0.3.1",
"ipam": {
"type": "host-local",
"subnet": "10.56.206.0/24",
"routes": [
{ "dst": "0.0.0.0/0" }
],
"gateway": "10.56.206.1"
}
}'
|