deploy.yml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. ---
  2. - oc_project:
  3. name: openshift-template-service-broker
  4. state: present
  5. node_selector:
  6. - ""
  7. - command: mktemp -d /tmp/tsb-ansible-XXXXXX
  8. register: mktemp
  9. changed_when: False
  10. - name: Copy admin client config
  11. command: >
  12. cp {{ openshift.common.config_base }}/master//admin.kubeconfig {{ mktemp.stdout }}/admin.kubeconfig
  13. changed_when: false
  14. - copy:
  15. src: "{{ item }}"
  16. dest: "{{ mktemp.stdout }}/{{ item }}"
  17. with_items:
  18. - "{{ __tsb_template_file }}"
  19. - "{{ __tsb_rbac_file }}"
  20. - "{{ __tsb_broker_file }}"
  21. - "{{ __tsb_config_file }}"
  22. - yedit:
  23. src: "{{ mktemp.stdout }}/{{ __tsb_config_file }}"
  24. key: templateNamespaces
  25. value: "{{ openshift_template_service_broker_namespaces }}"
  26. value_type: list
  27. - slurp:
  28. src: "{{ mktemp.stdout }}/{{ __tsb_config_file }}"
  29. register: config
  30. - name: Apply template file
  31. shell: >
  32. {{ openshift_client_binary }} process --config={{ mktemp.stdout }}/admin.kubeconfig
  33. -f "{{ mktemp.stdout }}/{{ __tsb_template_file }}" -n openshift-template-service-broker
  34. --param API_SERVER_CONFIG="{{ config['content'] | b64decode }}"
  35. --param IMAGE="{{ template_service_broker_image }}"
  36. --param NODE_SELECTOR={{ {'node-role.kubernetes.io/master':'true'} | to_json | quote }}
  37. | {{ openshift_client_binary }} apply --config={{ mktemp.stdout }}/admin.kubeconfig -f -
  38. # reconcile with rbac
  39. - name: Reconcile with RBAC file
  40. shell: >
  41. {{ openshift_client_binary }} process --config={{ mktemp.stdout }}/admin.kubeconfig -f "{{ mktemp.stdout }}/{{ __tsb_rbac_file }}" -n openshift-template-service-broker
  42. | {{ openshift_client_binary }} auth reconcile --config={{ mktemp.stdout }}/admin.kubeconfig -f -
  43. # Check that the TSB is running
  44. - name: Verify that TSB is running
  45. uri:
  46. url: https://apiserver.openshift-template-service-broker.svc/healthz
  47. validate_certs: no
  48. return_content: yes
  49. environment:
  50. no_proxy: '*'
  51. register: api_health
  52. until: "'ok' in api_health.content"
  53. retries: 60
  54. delay: 10
  55. changed_when: false
  56. - slurp:
  57. src: "/etc/origin/master/service-signer.crt"
  58. register: __ca_bundle
  59. # Register with broker
  60. - name: Register TSB with broker
  61. shell: >
  62. {{ openshift_client_binary }} process --config={{ mktemp.stdout }}/admin.kubeconfig -f "{{ mktemp.stdout }}/{{ __tsb_broker_file }}" -n openshift-template-service-broker --param CA_BUNDLE="{{ __ca_bundle.content }}" | {{ openshift_client_binary }} apply --config={{ mktemp.stdout }}/admin.kubeconfig -f -
  63. - file:
  64. state: absent
  65. name: "{{ mktemp.stdout }}"
  66. changed_when: False