mirror of
https://github.com/k8snetworkplumbingwg/multus-cni.git
synced 2026-07-16 17:17:15 +00:00
* Added bash e2e test for static pods. Checks for net1 interface on pod. Signed-off-by: nicklesimba <simha.nikhil@gmail.com> * Enable static pod test in CI Signed-off-by: nicklesimba <simha.nikhil@gmail.com> * Addressed review comments Signed-off-by: nicklesimba <simha.nikhil@gmail.com>
16 lines
300 B
YAML
16 lines
300 B
YAML
apiVersion: "k8s.cni.cncf.io/v1"
|
|
kind: NetworkAttachmentDefinition
|
|
metadata:
|
|
name: bridge-nad
|
|
spec:
|
|
config: '{
|
|
"cniVersion": "0.3.1",
|
|
"name": "testnet",
|
|
"type": "bridge",
|
|
"bridge": "testnet0",
|
|
"ipam": {
|
|
"type": "host-local",
|
|
"subnet": "10.10.0.0/16"
|
|
}
|
|
}'
|