File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ while read -r node_name services; do
131
131
done <<< $openstackdataplanenodesets
132
132
133
133
DATAPLANE_DEPLOYMENT=edpm
134
- NODE_SETS =$( printf ' %s\n' " ${nodes_with_ovn[@]} " )
134
+ OVN_NODE_SETS =$( printf ' %s\n' " ${nodes_with_ovn[@]} " )
135
135
136
136
cat << EOF >edpm-deployment-ovn-update.yaml
137
137
apiVersion: dataplane.openstack.org/v1beta1
@@ -140,7 +140,7 @@ metadata:
140
140
name: $DATAPLANE_DEPLOYMENT -ovn-update
141
141
spec:
142
142
nodeSets:
143
- $NODE_SETS
143
+ $OVN_NODE_SETS
144
144
servicesOverride:
145
145
- ovn
146
146
EOF
@@ -161,14 +161,16 @@ echo "MinorUpdateControlplane completed"
161
161
get_current_state " 04_after_controlplane_update"
162
162
163
163
# start data plane plane update for rest of edpm services
164
+ DATAPLANE_NODESETS=$( oc get openstackdataplanenodeset -o name | awk -F' /' ' {print " - " $2}' )
165
+
164
166
cat << EOF >edpm-deployment-update.yaml
165
167
apiVersion: dataplane.openstack.org/v1beta1
166
168
kind: OpenStackDataPlaneDeployment
167
169
metadata:
168
170
name: $DATAPLANE_DEPLOYMENT -update
169
171
spec:
170
172
nodeSets:
171
- $NODE_SETS
173
+ $DATAPLANE_NODESETS
172
174
servicesOverride:
173
175
- update
174
176
EOF
You can’t perform that action at this time.
0 commit comments