File tree 2 files changed +5
-0
lines changed
ansible/configs/rosa-consolidated
2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,10 @@ rosa_setup_cluster_admin_delete_after_workloads: false
105
105
# Replicas also can not be set when autoscaling is enabled
106
106
# rosa_compute_replicas: 2
107
107
108
+ # Mutli-AZ STS Classic Clusters
109
+ # (should be the new default)
110
+ rosa_classic_multi_az : true
111
+
108
112
# Enable Autoscaling. Further autoscaling options are only used if true
109
113
# HCP does not support autoscaling. Turning it on will have no effect
110
114
# rosa_compute_enable_autoscaling: false
Original file line number Diff line number Diff line change 18
18
{% if rosa_compute_machine_type is defined %}--compute-machine-type {{ rosa_compute_machine_type }}{% endif %}
19
19
{% if rosa_compute_worker_disk_size is defined %}--worker-disk-size {{ rosa_compute_worker_disk_size }}{% endif %}
20
20
{% if rosa_compute_replicas is defined %}--replicas {{ rosa_compute_replicas | int }}{% endif %}
21
+ {% if rosa_classic_multi_az | default(false) | bool %}--multi-az {% endif %}
21
22
{% if rosa_compute_enable_autoscaling | default(false) | bool %}
22
23
--enable-autoscaling
23
24
{% if rosa_compute_enable_autoscaling | default(false) | bool %}--autoscaler-scale-down-enabled{% endif %}
You can’t perform that action at this time.
0 commit comments