Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use mand SCS flavors in scs cluster-class template. #174

Merged
merged 3 commits into from
Sep 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,33 +46,34 @@ spec:
schema:
openAPIV3Schema:
type: string
default: "SCS-2V-4-20"
example: "SCS-2V-4-20"
default: "SCS-2V-4-20s"
example: "SCS-2V-4-20s"
description: "OpenStack instance flavor for control-plane nodes."
- name: worker_flavor
required: false
schema:
openAPIV3Schema:
type: string
default: "SCS-2V-4-20"
example: "SCS-2V-4-20"
default: "SCS-2V-4"
example: "SCS-2V-4"
description: "OpenStack instance flavor for worker nodes."
- name: controller_root_disk
required: false
schema:
openAPIV3Schema:
type: integer
minimum: 1
example: 20
description: "Root disk size in GiB for control-plane nodes. OpenStack volume will be created and used instead of an ephemeral disk defined in flavor. Should be used also for the diskless flavors."
example: 25
description: "Root disk size in GiB for control-plane nodes. OpenStack volume will be created and used instead of an ephemeral disk defined in flavor. Should only be used for the diskless flavors."
- name: worker_root_disk
required: false
schema:
openAPIV3Schema:
type: integer
minimum: 1
example: 20
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."
default: 25
example: 25
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 for the diskless flavors."
jschoone marked this conversation as resolved.
Show resolved Hide resolved
- name: yawol_flavor_id
required: false
schema:
Expand Down