File tree Expand file tree Collapse file tree 3 files changed +25
-0
lines changed
ansible/roles/bastion-assisted-installer Expand file tree Collapse file tree 3 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ The listed hardware has been used for cluster deployments successfully. Potentia
38
38
39
39
| Hardware | MNO | SNO |
40
40
| ------------------ | --- | --- |
41
+ | Dell r750 | Yes | No |
41
42
| Dell r660 | Yes | Yes |
42
43
| Dell r650 | Yes | Yes |
43
44
| Dell r640 | Yes | Yes |
Original file line number Diff line number Diff line change @@ -16,3 +16,7 @@ assisted_postgres_image: quay.io/edge-infrastructure/postgresql-12-centos7
16
16
assisted_installer_host : " {{ groups['bastion'][0] }}"
17
17
assisted_installer_port : 8090
18
18
assisted_image_service_port : 8888
19
+
20
+ # Enables longer timeouts due to r750s longer reboot timing
21
+ enable_assisted_installer_long_timeouts : false
22
+ assisted_installer_long_timeout : 140m
Original file line number Diff line number Diff line change @@ -43,3 +43,23 @@ CONTROLLER_IMAGE={{ assisted_installer_controller_image.split(":")[0] }}@{{ assi
43
43
CONTROLLER_IMAGE={{ assisted_installer_controller_image }}
44
44
{% endif %}
45
45
AGENT_DOCKER_IMAGE={{ assisted_installer_agent_image }}
46
+
47
+ # Additional finalizing env variables to permit r750s with slow reboot time to join cluster
48
+ {% if enable_assisted_installer_long_timeouts %}
49
+ FINALIZING_STAGE_WAITING_FOR_CLUSTER_OPERATORS_TIMEOUT={{ assisted_installer_long_timeout }}
50
+ FINALIZING_STAGE_ADDING_ROUTER_CA_TIMEOUT={{ assisted_installer_long_timeout }}
51
+ FINALIZING_STAGE_APPLYING_OLM_MANIFESTS_TIMEOUT={{ assisted_installer_long_timeout }}
52
+ FINALIZING_STAGE_WAITING_FOR_OLM_OPERATORS_CSV_INITIALIZATION_TIMEOUT={{ assisted_installer_long_timeout }}
53
+ FINALIZING_STAGE_WAITING_FOR_OLM_OPERATORS_CSV_TIMEOUT={{ assisted_installer_long_timeout }}
54
+ FINALIZING_STAGE_WAITING_FOR_OLM_OPERATOR_SETUP_JOBS_TIMEOUT={{ assisted_installer_long_timeout }}
55
+ FINALIZING_STAGE_DONE_TIMEOUT={{ assisted_installer_long_timeout }}
56
+ {% else %}
57
+ # Set enable_assisted_installer_long_timeouts to true to enable during setup-bastion.yml
58
+ # FINALIZING_STAGE_WAITING_FOR_CLUSTER_OPERATORS_TIMEOUT={{ assisted_installer_long_timeout }}
59
+ # FINALIZING_STAGE_ADDING_ROUTER_CA_TIMEOUT={{ assisted_installer_long_timeout }}
60
+ # FINALIZING_STAGE_APPLYING_OLM_MANIFESTS_TIMEOUT={{ assisted_installer_long_timeout }}
61
+ # FINALIZING_STAGE_WAITING_FOR_OLM_OPERATORS_CSV_INITIALIZATION_TIMEOUT={{ assisted_installer_long_timeout }}
62
+ # FINALIZING_STAGE_WAITING_FOR_OLM_OPERATORS_CSV_TIMEOUT={{ assisted_installer_long_timeout }}
63
+ # FINALIZING_STAGE_WAITING_FOR_OLM_OPERATOR_SETUP_JOBS_TIMEOUT={{ assisted_installer_long_timeout }}
64
+ # FINALIZING_STAGE_DONE_TIMEOUT={{ assisted_installer_long_timeout }}
65
+ {% endif %}
You can’t perform that action at this time.
0 commit comments