Skip to content

Commit 525d805

Browse files
authored
Merge branch 'main' into docs/kamaji
2 parents bcf2d3c + 46b6e40 commit 525d805

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

docs/providers/openstack/quickstart.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ Install the [envsubst](https://github.com/drone/envsubst) Go package. It is requ
5555
```bash
5656
GOBIN=/tmp go install github.com/drone/envsubst/v2/cmd/envsubst@latest
5757
```
58+
Note: On typical Linux distros, you will have a binary `/usr/bin/envsubst` from the gettext package that does *not* work.
5859

5960
Get the latest CSO release version and apply CSO manifests to the management cluster.
6061

@@ -205,9 +206,11 @@ spec:
205206
topology:
206207
variables:
207208
- name: controller_flavor
208-
value: "SCS-2V-4-50"
209+
value: "SCS-2V-4-20s"
209210
- name: worker_flavor
210-
value: "SCS-2V-4-50"
211+
value: "SCS-2V-4"
212+
- name: worker_root_disk
213+
value: 30
211214
- name: external_id
212215
value: ${CS_EXTERNAL_ID}
213216
class: ${CS_CLASS_NAME}

providers/openstack/kamaji/1-30/cluster-class/templates/cluster-class.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,17 +70,17 @@ spec:
7070
schema:
7171
openAPIV3Schema:
7272
type: string
73-
default: "SCS-2V-4-20"
74-
example: "SCS-2V-4-20"
73+
default: "SCS-2V-4"
74+
example: "SCS-2V-4"
7575
description: "OpenStack instance flavor for worker nodes."
7676
- name: worker_root_disk
7777
required: false
7878
schema:
7979
openAPIV3Schema:
8080
type: integer
8181
minimum: 1
82-
example: 20
83-
description: "Root disk size in GiB for worker nodes. OpenStack volume will be created and used instead of an ephemeral disk defined in flavor. Should be used also for the diskless flavors."
82+
example: 25
83+
description: "Root disk size in GiB for worker nodes. OpenStack volume will be created and used instead of an ephemeral disk defined in flavor. Should be used also for the diskless flavors. Typical capi images require at least 20GB."
8484
- name: node_cidr
8585
required: false
8686
schema:

providers/openstack/kamaji/1-30/cluster-class/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ external_id: ebfe5546-f09f-4f42-ab54-094e457d42ec
33
dns_nameservers:
44
- 5.1.66.255
55
- 185.150.99.255
6-
worker_flavor: SCS-2V-4-20
6+
worker_flavor: SCS-2V-4
77
node_cidr: 10.8.0.0/20
88

99
identityRef:

providers/openstack/scs/cluster-class/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# mirrored from variables.tf
2-
controller_flavor: SCS-2V-4-20
2+
controller_flavor: SCS-2V-4-20s
33
worker_flavor: SCS-2V-4-20
44
restrict_kubeapi: []
55

0 commit comments

Comments
 (0)