@@ -21,48 +21,49 @@ cd architecture/examples/dt/uni05epsilon
2121```
2222
2323Edit [ control-plane/service-values.yaml] ( control-plane/service-values.yaml ) and
24- [ control-plane/nncp/values.yaml] ( control-plane/nncp/values.yaml ) .
24+ [ control-plane/networking/ nncp/values.yaml] ( control-plane/networking /nncp/values.yaml ) .
2525
26- Apply node network configuration
26+ ## Apply node network configuration
2727
28+ Generate the node network configuration
2829``` bash
29- # Change to the Node Network Configuration folder.
30- pushd control-plane/nncp
31-
32- # Generate the configuration
33- kustomize build > nncp.yaml
34-
35- # Apply the generated configuration
30+ kustomize build control-plane/networking/nncp > nncp.yaml
31+ ```
32+ Apply the NNCP CRs
33+ ```
3634oc apply -f nncp.yaml
37-
38- # Wait till the network configuration is applied.
35+ ```
36+ Wait for NNCPs to be available
37+ ```
3938oc wait nncp \
4039 -l osp/nncm-config-type=standard \
4140 --for jsonpath='{.status.conditions[0].reason}'=SuccessfullyConfigured \
4241 --timeout=300s
43-
44- # Change back the working directory
45- popd
4642```
4743
48- Generate and apply the control-plane configurations.
49-
50- ``` bash
51- # Navigate to control-panel
52- pushd control-plane
44+ ## Apply remaining networking configuration
5345
54- # Generate the CR
55- kustomize build > control-plane.yaml
46+ Generate the reminaing networking configuration
47+ ```
48+ kustomize build control-plane/networking > networking.yaml
49+ ```
50+ Apply the networking CRs
51+ ```
52+ oc apply -f networking.yaml
53+ ```
5654
57- # Verify that control-plane.yaml includes the valid access credentials
58- # for the NetApp storage and provide the information if missing.
55+ ## Apply the control-plane configuration.
5956
60- # Apply the CR
57+ Generate the control-plane CRs.
58+ ``` bash
59+ kustomize build control-plane/ > control-plane.yaml
60+ ```
61+ Apply the CRs
62+ ``` bash
6163oc apply -f control-plane.yaml
64+ ```
6265
63- # Wait for control plane to be available
66+ Wait for control plane to be available
67+ ``` bash
6468oc wait osctlplane controlplane --for condition=Ready --timeout=600s
65-
66- # Change back the working directory
67- popd
6869```
0 commit comments