Skip to content

Commit 09cb380

Browse files
committed
enable multi-az in rosa classic sts
fix command variable name
1 parent f4f50cf commit 09cb380

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

ansible/configs/rosa-consolidated/default_vars.yml

+4
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,10 @@ rosa_setup_cluster_admin_delete_after_workloads: false
105105
# Replicas also can not be set when autoscaling is enabled
106106
# rosa_compute_replicas: 2
107107

108+
# Mutli-AZ STS Classic Clusters
109+
# (should be the new default)
110+
rosa_classic_multi_az: true
111+
108112
# Enable Autoscaling. Further autoscaling options are only used if true
109113
# HCP does not support autoscaling. Turning it on will have no effect
110114
# rosa_compute_enable_autoscaling: false

ansible/configs/rosa-consolidated/install_rosa_sts.yml

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
{% if rosa_compute_machine_type is defined %}--compute-machine-type {{ rosa_compute_machine_type }}{% endif %}
1919
{% if rosa_compute_worker_disk_size is defined %}--worker-disk-size {{ rosa_compute_worker_disk_size }}{% endif %}
2020
{% if rosa_compute_replicas is defined %}--replicas {{ rosa_compute_replicas | int }}{% endif %}
21+
{% if rosa_classic_multi_az | default(false) | bool %}--multi-az {% endif %}
2122
{% if rosa_compute_enable_autoscaling | default(false) | bool %}
2223
--enable-autoscaling
2324
{% if rosa_compute_enable_autoscaling | default(false) | bool %}--autoscaler-scale-down-enabled{% endif %}

0 commit comments

Comments
 (0)