redeploy-certificates.yml 856 B

1234567891011121314151617181920212223242526272829303132333435
  1. ---
  2. - name: Update web console certificates
  3. hosts: oo_first_master
  4. vars:
  5. roles:
  6. - lib_openshift
  7. - openshift_facts
  8. tasks:
  9. - name: Remove certificates secret
  10. oc_obj:
  11. name: webconsole-serving-cert
  12. kind: secret
  13. state: absent
  14. namespace: openshift-web-console
  15. - name: Remove web console pods
  16. oc_obj:
  17. selector: "webconsole=true"
  18. kind: pod
  19. state: absent
  20. namespace: openshift-web-console
  21. - name: Verify that the console is running
  22. oc_obj:
  23. namespace: openshift-web-console
  24. kind: deployment
  25. state: list
  26. name: webconsole
  27. register: console_deployment
  28. until:
  29. - console_deployment.results.results[0].status.readyReplicas is defined
  30. - console_deployment.results.results[0].status.readyReplicas > 0
  31. retries: 60
  32. delay: 10
  33. changed_when: false