File tree Expand file tree Collapse file tree 4 files changed +49
-1
lines changed
docs/book/src/topics/powervs Expand file tree Collapse file tree 4 files changed +49
-1
lines changed Original file line number Diff line number Diff line change @@ -64,6 +64,22 @@ following the steps below.
64
64
kubeadmconfigtemplate.bootstrap.cluster.x-k8s.io/ibm-powervs-1-md-0 created
65
65
```
66
66
67
+ Additional parameters for modifying PowerVS Control-Plane spec
68
+ ```
69
+ IBMPOWERVS_CONTROL_PLANE_MEMORY
70
+ IBMPOWERVS_CONTROL_PLANE_PROCESSORS
71
+ IBMPOWERVS_CONTROL_PLANE_SYSTYPE
72
+ IBMPOWERVS_CONTROL_PLANE_PROCTYPE
73
+ ```
74
+
75
+ Additional parameters for modifying PowerVS Compute node spec
76
+ ```
77
+ IBMPOWERVS_COMPUTE_MEMORY
78
+ IBMPOWERVS_COMPUTE_PROCESSORS
79
+ IBMPOWERVS_COMPUTE_SYSTYPE
80
+ IBMPOWERVS_COMPUTE_PROCTYPE
81
+ ```
82
+
67
83
3. Deploy Container Network Interface (CNI)
68
84
69
85
Example: calico
Original file line number Diff line number Diff line change @@ -33,4 +33,20 @@ clusterctl generate cluster ibm-powervs-1 --kubernetes-version v1.21.2 \
33
33
--control-plane-machine-count=3 \
34
34
--worker-machine-count=1 \
35
35
--from ./cluster-template-powervs.yaml
36
- ```
36
+ ```
37
+
38
+ ### Additional parameters for modifying PowerVS Control-Plane spec
39
+ ```
40
+ IBMPOWERVS_CONTROL_PLANE_MEMORY
41
+ IBMPOWERVS_CONTROL_PLANE_PROCESSORS
42
+ IBMPOWERVS_CONTROL_PLANE_SYSTYPE
43
+ IBMPOWERVS_CONTROL_PLANE_PROCTYPE
44
+ ```
45
+
46
+ ### Additional parameters for modifying PowerVS Compute node spec
47
+ ```
48
+ IBMPOWERVS_COMPUTE_MEMORY
49
+ IBMPOWERVS_COMPUTE_PROCESSORS
50
+ IBMPOWERVS_COMPUTE_SYSTYPE
51
+ IBMPOWERVS_COMPUTE_PROCTYPE
52
+ ```
Original file line number Diff line number Diff line change @@ -167,6 +167,10 @@ spec:
167
167
name : " ${IBMPOWERVS_IMAGE_NAME}"
168
168
network :
169
169
name : " ${IBMPOWERVS_NETWORK_NAME}"
170
+ memory : ${IBMPOWERVS_CONTROL_PLANE_MEMORY:="4"}
171
+ processors : ${IBMPOWERVS_CONTROL_PLANE_PROCESSORS:="0.25"}
172
+ sysType : ${IBMPOWERVS_CONTROL_PLANE_SYSTYPE:="s922"}
173
+ procType : ${IBMPOWERVS_CONTROL_PLANE_PROCTYPE:="shared"}
170
174
---
171
175
apiVersion : cluster.x-k8s.io/v1beta1
172
176
kind : MachineDeployment
@@ -204,6 +208,10 @@ spec:
204
208
name : " ${IBMPOWERVS_IMAGE_NAME}"
205
209
network :
206
210
name : " ${IBMPOWERVS_NETWORK_NAME}"
211
+ memory : ${IBMPOWERVS_COMPUTE_MEMORY:="4"}
212
+ processors : ${IBMPOWERVS_COMPUTE_PROCESSORS:="0.25"}
213
+ sysType : ${IBMPOWERVS_COMPUTE_SYSTYPE:="s922"}
214
+ procType : ${IBMPOWERVS_COMPUTE_PROCTYPE:="shared"}
207
215
---
208
216
apiVersion : bootstrap.cluster.x-k8s.io/v1beta1
209
217
kind : KubeadmConfigTemplate
Original file line number Diff line number Diff line change @@ -165,6 +165,10 @@ spec:
165
165
name : " ${IBMPOWERVS_IMAGE_NAME}"
166
166
network :
167
167
name : " ${IBMPOWERVS_NETWORK_NAME}"
168
+ memory : ${IBMPOWERVS_CONTROL_PLANE_MEMORY:="4"}
169
+ processors : ${IBMPOWERVS_CONTROL_PLANE_PROCESSORS:="0.25"}
170
+ sysType : ${IBMPOWERVS_CONTROL_PLANE_SYSTYPE:="s922"}
171
+ procType : ${IBMPOWERVS_CONTROL_PLANE_PROCTYPE:="shared"}
168
172
---
169
173
apiVersion : cluster.x-k8s.io/v1beta1
170
174
kind : MachineDeployment
@@ -202,6 +206,10 @@ spec:
202
206
name : " ${IBMPOWERVS_IMAGE_NAME}"
203
207
network :
204
208
name : " ${IBMPOWERVS_NETWORK_NAME}"
209
+ memory : ${IBMPOWERVS_COMPUTE_MEMORY:="4"}
210
+ processors : ${IBMPOWERVS_COMPUTE_PROCESSORS:="0.25"}
211
+ sysType : ${IBMPOWERVS_COMPUTE_SYSTYPE:="s922"}
212
+ procType : ${IBMPOWERVS_COMPUTE_PROCTYPE:="shared"}
205
213
---
206
214
apiVersion : bootstrap.cluster.x-k8s.io/v1beta1
207
215
kind : KubeadmConfigTemplate
You can’t perform that action at this time.
0 commit comments