-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.patch
38 lines (36 loc) · 1.48 KB
/
setup.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
--- a/collections/ansible_collections/ansible/containerized_installer/roles/automationcontroller/tasks/license.yml
+++ b/collections/ansible_collections/ansible/containerized_installer/roles/automationcontroller/tasks/license.yml
@@ -3,11 +3,12 @@
ansible.builtin.wait_for:
port: '{{ _controller_port }}'
-- name: Wait for the Controller API to te ready
+- name: Wait for the Controller API to be ready
ansible.builtin.uri:
url: '{{ _controller_url }}/api/v2/ping/'
validate_certs: true
ca_path: '{{ _ca_tls_dir }}/extracted/pem/tls-ca-bundle.pem'
+ timeout: 60
- name: Upload the Automation Controller subscription
block:
--- a/collections/ansible_collections/ansible/containerized_installer/roles/postgresql/tasks/systemd.yml
+++ b/collections/ansible_collections/ansible/containerized_installer/roles/postgresql/tasks/systemd.yml
@@ -1,4 +1,8 @@
---
+- name: Allow postgresql container to settle
+ ansible.builtin.pause:
+ seconds: 10
+
- name: Manage postgresql container via systemd
ansible.builtin.systemd:
name: postgresql.service
--- a/collections/ansible_collections/ansible/containerized_installer/roles/redis/tasks/systemd.yml
+++ b/collections/ansible_collections/ansible/containerized_installer/roles/redis/tasks/systemd.yml
@@ -1,4 +1,8 @@
---
+- name: Allow redis container to settle
+ ansible.builtin.pause:
+ seconds: 10
+
- name: Manage redis container via systemd
ansible.builtin.systemd:
name: 'redis-{{ _redis_suffix }}.service'