diff options
author | Ritu Sood <ritu.sood@intel.com> | 2019-09-29 12:27:39 -0700 |
---|---|---|
committer | Ritu Sood <ritu.sood@intel.com> | 2019-12-29 06:24:17 -0800 |
commit | ca9305d63cf6f980934e5d3fc508e33c6ce66667 (patch) | |
tree | c97adb3a9334e7c500b6075777609da7f885171b /kud/tests | |
parent | 20b0ff063a92e6d4a5ecaf621e527c09ff1e5515 (diff) |
Update nfn-operator to add provider networks
Issue-ID: MULTICLOUD-474
Signed-off-by: Ritu Sood <ritu.sood@intel.com>
Change-Id: I92d0d34a46b8faadda8aa698307ede4306316ef7
Diffstat (limited to 'kud/tests')
-rw-r--r-- | kud/tests/ovn4nfv_pn_test.yml | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/kud/tests/ovn4nfv_pn_test.yml b/kud/tests/ovn4nfv_pn_test.yml new file mode 100644 index 00000000..0d02fad5 --- /dev/null +++ b/kud/tests/ovn4nfv_pn_test.yml @@ -0,0 +1,51 @@ +apiVersion: k8s.plugin.opnfv.org/v1alpha1 +kind: ProviderNetwork +metadata: + name: pnetwork +spec: + cniType: ovn4nfv + ipv4Subnets: + - subnet: 172.16.33.0/24 + name: subnet1 + gateway: 172.16.33.1/24 + excludeIps: 172.16.33.2 172.16.33.5..172.16.33.10 + providerNetType: VLAN + vlan: + vlanId: "100" + providerInterfaceName: eth1 + logicalInterfaceName: eth1.100 + vlanNodeSelector: specific + nodeLabelList: + - kubernetes.io/hostname=localhost + +--- + +apiVersion: apps/v1 +kind: Deployment +metadata: + name: pnw + labels: + app: pnw +spec: + replicas: 1 + selector: + matchLabels: + app: pnw + template: + metadata: + labels: + app: pnw + annotations: + k8s.v1.cni.cncf.io/networks: '[{ "name": "ovn-networkobj"}]' + k8s.plugin.opnfv.org/nfn-network: '{ "type": "ovn4nfv", "interface": [{ "name": "pnetwork", "interface": "net0" }]}' + + spec: + containers: + - name: pnw + image: "busybox" + imagePullPolicy: Always + stdin: true + tty: true + securityContext: + privileged: true + |