diff --git a/example/networking/rdma-net-hostdev-cr-whereabouts-ipam.yml b/example/networking/rdma-net-hostdev-cr-whereabouts-ipam.yml deleted file mode 100644 index 3fd54f39..00000000 --- a/example/networking/rdma-net-hostdev-cr-whereabouts-ipam.yml +++ /dev/null @@ -1,31 +0,0 @@ -apiVersion: k8s.cni.cncf.io/v1 -kind: NetworkAttachmentDefinition -metadata: - annotations: - k8s.v1.cni.cncf.io/resourceName: rdma/hca_shared_devices_a - name: rdma-net-hostdev-ipam - namespace: default -spec: - # Configuration below assumes 'ens2f0' as device for host-device CNI, - # replace with (RDMA capable) netdevice of your choice. - config: |- - { - "cniVersion": "0.3.1", - "name": "rdma-net-hostdev-ipam", - "plugins": [ - { - "ipam": { - "datastore": "kubernetes", - "kubernetes": { - "kubeconfig": "/etc/cni/net.d/whereabouts.d/whereabouts.kubeconfig" - }, - "log_file": "/tmp/whereabouts.log", - "log_level": "debug", - "range": "192.168.111.0/24", - "type": "whereabouts" - }, - "type": "host-device", - "device": "ens2f0" - } - ] - } diff --git a/example/networking/rdma-net-hostdev-cr.yml b/example/networking/rdma-net-hostdev-cr.yml deleted file mode 100644 index d2d03ece..00000000 --- a/example/networking/rdma-net-hostdev-cr.yml +++ /dev/null @@ -1,21 +0,0 @@ -apiVersion: k8s.cni.cncf.io/v1 -kind: NetworkAttachmentDefinition -metadata: - annotations: - k8s.v1.cni.cncf.io/resourceName: rdma/hca_shared_devices_a - name: rdma-net-hostdev - namespace: default -spec: - # Configuration below assumes 'ens2f0' as master device for host-device CNI, - # replace with (RDMA capable) netdevice of your choice. - config: |- - { - "cniVersion": "0.3.1", - "name": "rdma-net-hostdev", - "plugins": [ - { - "type": "host-device", - "master": "ens2f0" - } - ] - }