config.yml 885 B

123456789101112131415161718192021222324252627282930313233
  1. ---
  2. - name: Load Balancer Install Checkpoint Start
  3. hosts: all
  4. gather_facts: false
  5. tasks:
  6. - name: Set load balancer install 'In Progress'
  7. run_once: true
  8. set_stats:
  9. data:
  10. installer_phase_loadbalancer:
  11. title: "Load Balancer Install"
  12. playbook: "playbooks/openshift-loadbalancer/config.yml"
  13. status: "In Progress"
  14. start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
  15. - name: Configure load balancers
  16. hosts: oo_lb_to_config
  17. roles:
  18. - role: openshift_facts
  19. - role: openshift_loadbalancer
  20. - role: tuned
  21. - name: Load Balancer Install Checkpoint End
  22. hosts: all
  23. gather_facts: false
  24. tasks:
  25. - name: Set load balancer install 'Complete'
  26. run_once: true
  27. set_stats:
  28. data:
  29. installer_phase_loadbalancer:
  30. status: "Complete"
  31. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"