Skip to content

Commit

Permalink
enable multi-az in rosa classic sts
Browse files Browse the repository at this point in the history
fix command

variable name
  • Loading branch information
newgoliath committed Feb 6, 2025
1 parent f4f50cf commit 09cb380
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ansible/configs/rosa-consolidated/default_vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ rosa_setup_cluster_admin_delete_after_workloads: false
# Replicas also can not be set when autoscaling is enabled
# rosa_compute_replicas: 2

# Mutli-AZ STS Classic Clusters
# (should be the new default)
rosa_classic_multi_az: true

# Enable Autoscaling. Further autoscaling options are only used if true
# HCP does not support autoscaling. Turning it on will have no effect
# rosa_compute_enable_autoscaling: false
Expand Down
1 change: 1 addition & 0 deletions ansible/configs/rosa-consolidated/install_rosa_sts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
{% if rosa_compute_machine_type is defined %}--compute-machine-type {{ rosa_compute_machine_type }}{% endif %}
{% if rosa_compute_worker_disk_size is defined %}--worker-disk-size {{ rosa_compute_worker_disk_size }}{% endif %}
{% if rosa_compute_replicas is defined %}--replicas {{ rosa_compute_replicas | int }}{% endif %}
{% if rosa_classic_multi_az | default(false) | bool %}--multi-az {% endif %}
{% if rosa_compute_enable_autoscaling | default(false) | bool %}
--enable-autoscaling
{% if rosa_compute_enable_autoscaling | default(false) | bool %}--autoscaler-scale-down-enabled{% endif %}
Expand Down

0 comments on commit 09cb380

Please sign in to comment.