Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a pause after Tower deployment is completed on OCP #649

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions roles/ansible/tower/config-ansible-tower-ocp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ The variables used to install Ansible Tower on OpenShift are outlined in the tab
|ansible_tower_download_url|URL of Ansible Tower installer artifact repository|no|`https://releases.ansible.com/ansible-tower/setup_openshift/ansible-tower-openshift-setup-{{ ansible_tower_version }}.tar.gz`|
|ansible_tower_version|Version of Ansible Tower Openshift installer|no|latest|
|ansible_tower_remote_src|Is the Ansible Tower installer fetched from a remote source|no|true|
|ansible_tower_postdeployment_pause| Time in minutes for which role will wait for Tower to settle down after deployment|no|5|
|ansible_tower.install.openshift.host|OpenShift API url|no|CRC on local host|
|ansible_tower.install.openshift.project|Project where to deploy Tower|no|'tower'|
|ansible_tower.install.openshift.user|User to login into openshift|no|"test"|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,7 @@
args:
chdir: "{{ ansible_tower_dir }}"

- name: "Pausing for 5 minutes to let Tower settle down"
pause:
minutes: "{{ ansible_tower_postdeployment_pause | default(5) }}"