diff options
author | Ritu Sood <ritu.sood@intel.com> | 2021-05-05 23:14:09 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-05-05 23:14:09 +0000 |
commit | e6fbe6c0d75098e29143b4f8e4b21207c0ec51a3 (patch) | |
tree | 607bd72301880a33f0ad360783fb19f38546ff55 /kud/tests | |
parent | e5c8b88b92debaa52fb6dcbd0b2b288d22a57752 (diff) | |
parent | 61dc8e7b3aa13852dfde84dad4e6152178dd298d (diff) |
Merge "Add ovn4nfv addon helm chart"
Diffstat (limited to 'kud/tests')
-rw-r--r-- | kud/tests/_common.sh | 4 | ||||
-rwxr-xr-x | kud/tests/ovn4nfv.sh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/kud/tests/_common.sh b/kud/tests/_common.sh index b56972c8..ff975544 100644 --- a/kud/tests/_common.sh +++ b/kud/tests/_common.sh @@ -1108,8 +1108,8 @@ spec: app: ovn4nfv annotations: k8s.v1.cni.cncf.io/networks: '[{ "name": "$ovn_multus_network_name"}]' - k8s.plugin.opnfv.org/nfn-network: '{ "type": "ovn4nfv", "interface": [{ "name": "ovn-port-net", "interface": "net0" , "defaultGateway": "false"}, - { "name": "ovn-priv-net", "interface": "net1" , "defaultGateway": "false"}]}' + k8s.plugin.opnfv.org/nfn-network: '{ "type": "ovn4nfv", "interface": [{ "name": "ovn-port-net", "interface": "net2" , "defaultGateway": "false"}, + { "name": "ovn-priv-net", "interface": "net3" , "defaultGateway": "false"}]}' spec: containers: - name: $ovn4nfv_deployment_name diff --git a/kud/tests/ovn4nfv.sh b/kud/tests/ovn4nfv.sh index cd2664ad..e25c2f09 100755 --- a/kud/tests/ovn4nfv.sh +++ b/kud/tests/ovn4nfv.sh @@ -34,8 +34,8 @@ echo "===== $deployment_pod details =====" kubectl exec -it $deployment_pod -- ip a ovn_nic=$(kubectl exec -it $deployment_pod -- ip a ) -if [[ $ovn_nic != *"net1"* ]]; then - echo "The $deployment_pod pod doesn't contain the net1 nic" +if [[ $ovn_nic != *"net3"* ]]; then + echo "The $deployment_pod pod doesn't contain the net3 nic" exit 1 else echo "Test Completed!" |