From f5e169c5defc709d51cbf95bbf9b35a9faaf6e3a Mon Sep 17 00:00:00 2001 From: Andrew Bays Date: Wed, 13 Mar 2024 12:37:43 +0000 Subject: [PATCH] Add SRIOV VA2 to automation file --- automation/vars/default.yaml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/automation/vars/default.yaml b/automation/vars/default.yaml index 85b1d6043..358be397a 100644 --- a/automation/vars/default.yaml +++ b/automation/vars/default.yaml @@ -51,3 +51,39 @@ vas: - name: edpm-values-post-ceph src_file: values.yaml build_output: dataplane-post-ceph.yaml + + sriov: + stages: + - path: examples/va/nfv/sriov/nncp + validations: + - >- + oc -n openstack wait nncp + -l osp/nncm-config-type=standard + --for jsonpath='{.status.conditions[0].reason}'=SuccessfullyConfigured + --timeout=60s + values: + - name: network-values + src_file: values.yaml + build_output: nncp.yaml + + - path: examples/va/nfv/sriov + validations: + - >- + oc -n openstack wait osctlplane controlplane --for condition=Ready + --timeout=600s + values: + - name: network-values + src_file: nncp/values.yaml + - name: service-values + src_file: service-values.yaml + build_output: control-plane.yaml + + - path: examples/va/nfv/sriov/edpm + validations: + - >- + oc -n openstack wait + osdpd edpm-deployment --for condition=Ready --timeout=1200s + values: + - name: edpm-values + src_file: values.yaml + build_output: dataplane.yaml