Skip to content

Commit 37b559e

Browse files
dkokkinoopenshift-cherrypick-robot
authored andcommitted
Enable required driver services
-Previously the service was enabled for both the node and controller simultaneously. This change makes sure the node-service is enabled on nodes and vise versa for the controller
1 parent a95f8b3 commit 37b559e

File tree

6 files changed

+12
-0
lines changed

6 files changed

+12
-0
lines changed

assets/overlays/openstack-manila/generated/hypershift/controller.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ spec:
8989
weight: 100
9090
containers:
9191
- args:
92+
- --provide-controller-service=true
93+
- --provide-node-service=false
9294
- --v=${LOG_LEVEL}
9395
- --cluster-id=${CLUSTER_ID}
9496
- --nodeid=$(NODE_ID)

assets/overlays/openstack-manila/generated/hypershift/node.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ spec:
3535
spec:
3636
containers:
3737
- args:
38+
- --provide-controller-service=false
39+
- --provide-node-service=true
3840
- --v=${LOG_LEVEL}
3941
- --nodeid=$(NODE_ID)
4042
- --endpoint=$(CSI_ENDPOINT)

assets/overlays/openstack-manila/generated/standalone/controller.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ spec:
5959
weight: 100
6060
containers:
6161
- args:
62+
- --provide-controller-service=true
63+
- --provide-node-service=false
6264
- --v=${LOG_LEVEL}
6365
- --cluster-id=${CLUSTER_ID}
6466
- --nodeid=$(NODE_ID)

assets/overlays/openstack-manila/generated/standalone/node.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ spec:
3535
spec:
3636
containers:
3737
- args:
38+
- --provide-controller-service=false
39+
- --provide-node-service=true
3840
- --v=${LOG_LEVEL}
3941
- --nodeid=$(NODE_ID)
4042
- --endpoint=$(CSI_ENDPOINT)

assets/overlays/openstack-manila/patches/controller_add_driver.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ spec:
3838
image: ${DRIVER_IMAGE}
3939
imagePullPolicy: IfNotPresent
4040
args:
41+
- "--provide-controller-service=true"
42+
- "--provide-node-service=false"
4143
- --v=${LOG_LEVEL}
4244
- --cluster-id=${CLUSTER_ID}
4345
- --nodeid=$(NODE_ID)

assets/overlays/openstack-manila/patches/node_add_driver.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ spec:
3737
image: ${DRIVER_IMAGE}
3838
imagePullPolicy: IfNotPresent
3939
args:
40+
- "--provide-controller-service=false"
41+
- "--provide-node-service=true"
4042
- --v=${LOG_LEVEL}
4143
- "--nodeid=$(NODE_ID)"
4244
- "--endpoint=$(CSI_ENDPOINT)"

0 commit comments

Comments
 (0)