Nate Stephany
2019-11-18 93d4e2ba0e1b4e4351f530d4188572e9b17cce73
commit | author | age
6b9f19 1 ---
NS 2 - name: Deploy workload(s) role on bastion of the shared cluster
3   hosts: localhost
4   connection: local
5   gather_facts: false
6   tags:
7     - step005
8   tasks:
bd79bc 9
NS 10     - name: print out user.info
11       debug:
12         msg: "{{ item }}"
13       loop:
14         - "user.info: You can access your bastion via SSH:"
15         - "user.info: ssh {{ student_name }}@bastion.{{ guid }}.{{ ocp_cluster_dns_zone }}"
16         - "user.info: "
20d91b 17         - "user.info: Make sure you use the username '{{ student_name }}' and the password '{{ hostvars['bastion']['student_password'] }}' when prompted."
bd79bc 18         - "user.info: "
dfa3ff 19         - "user.info: Your base domain is '{{ ocp_cluster_dns_zone }}'"
NS 20         - "user.info: "
bd79bc 21         - "user.info: For reference, the floating IPs you will use for OpenShift are:"
20d91b 22         - "user.info: "
bd79bc 23         - "user.info: API IP: {{ ocp_api_fip }}"
NS 24         - "user.info: API FQDN: api.{{ guid }}.{{ ocp_cluster_dns_zone }}"
25         - "user.info: "
93d4e2 26         - "user.info: Ingress IP: {{ ocp_ingress_fip }}"
bd79bc 27         - "user.info: Ingress FQDN: *.apps.{{ guid }}.{{ ocp_cluster_dns_zone }}"
NS 28
6b9f19 29     - debug:
NS 30         msg: "Post-Software checks completed successfully"