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

Make bastion machine type for ocp4-cluster bastion variable and update to n2-standard-2 #8935

Merged
merged 2 commits into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions ansible/configs/ocp4-cluster/default_vars_gcp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ master_instance_count: 3
gcp_rhel_image_project: rhel-cloud
gcp_rhel_image_family: rhel-9

# Default type for GCP instances (bastion)
gcp_default_machine_type: n2-standard-2

# Machine Type for control plane (master) nodes
master_instance_type: n2-standard-4

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ resources:
type: compute.v1.instance
properties:
zone: {{ gcp_zone }}
machineType: zones/{{ gcp_zone }}/machineTypes/n1-standard-2
machineType: zones/{{ gcp_zone }}/machineTypes/{{ gcp_default_machine_type }}
metadata:
items:
- key: ssh-keys
Expand Down
Loading