Skip to content

Latest commit

 

History

History
50 lines (43 loc) · 1.08 KB

dataplane.md

File metadata and controls

50 lines (43 loc) · 1.08 KB

Configuring and deploying the dataplane

Assumptions

Initialize

Switch to the "openstack" namespace

oc project openstack

Change to the nfv/ovs-dpdk-sriov/edpm directory

cd architecture/examples/va/nfv/ovs-dpdk-sriov/edpm

Edit the nodeset/values.yaml and deployment/values.yaml files to suit your environment.

vi nodeset/values.yaml
vi deployment/values.yaml

Generate the dataplane nodeset CR.

kustomize build nodeset > dataplane-nodeset.yaml

Generate the dataplane deployment CR.

kustomize build deployment > dataplane-deployment.yaml

Create CRs

Create the nodeset CR

oc apply -f dataplane-nodeset.yaml

Wait for dataplane nodeset setup to finish

oc wait osdpns openstack-edpm --for condition=SetupReady --timeout=600s

Start the deployment

oc apply -f dataplane-deployment.yaml

Wait for dataplane deployment to finish

oc wait osdpns openstack-edpm --for condition=Ready --timeout=40m