File tree Expand file tree Collapse file tree 3 files changed +25
-0
lines changed
agent/roles/manifests/templates Expand file tree Collapse file tree 3 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,20 @@ controlPlane:
21
21
hyperthreading: Enabled
22
22
name: master
23
23
replicas: {{ num_masters }}
24
+ {% if num_arbiters == "0" and num_masters == "2" %}
25
+ {% set hostnames = agent_nodes_hostnames .split (',' ) %}
26
+ {% set bmc_addresses = agent_nodes_bmc_addresses .split (',' ) %}
27
+ {% set bmc_passwords = agent_nodes_bmc_passwords .split (',' ) %}
28
+ {% set bmc_usernames = agent_nodes_bmc_usernames .split (',' ) %}
29
+ fencing:
30
+ credentials:
31
+ {% for hostname in hostnames %}
32
+ - hostname: {{hostname}}
33
+ address: {{ bmc_addresses[loop.index0] }}
34
+ username: {{ bmc_usernames[loop.index0] }}
35
+ password: {{ bmc_passwords[loop.index0] }}
36
+ {% endfor %}
37
+ {% endif %}
24
38
fips: {{ fips_mode }}
25
39
metadata:
26
40
name: {{ cluster_name }}
Original file line number Diff line number Diff line change @@ -479,6 +479,13 @@ if [[ ! -z ${AGENT_E2E_TEST_SCENARIO} ]]; then
479
479
export ARBITER_DISK=50
480
480
export NUM_WORKERS=0
481
481
;;
482
+ " TNF" )
483
+ export NUM_MASTERS=2
484
+ export MASTER_VCPU=8
485
+ export MASTER_DISK=100
486
+ export MASTER_MEMORY=32768
487
+ export NUM_WORKERS=0
488
+ ;;
482
489
" HA" )
483
490
export NUM_MASTERS=3
484
491
export MASTER_VCPU=4
Original file line number Diff line number Diff line change @@ -812,6 +812,10 @@ set -x
812
812
# - TNA_IPV6
813
813
# - TNA_IPV4_DHCP
814
814
# - TNA_IPV6_DHCP
815
+ # - TNF_IPV4
816
+ # - TNF_IPV6
817
+ # - TNF_IPV4_DHCP
818
+ # - TNA_IPV6_DHCP
815
819
# - HA_IPV4
816
820
# - HA_IPV6
817
821
# - HA_IPV4_DHCP
You can’t perform that action at this time.
0 commit comments