configure_master_bootstrap.yml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #
  2. # These tasks configure the instance to periodically update the project metadata with the
  3. # latest bootstrap kubeconfig from the project metadata. This keeps the project metadata
  4. # in sync with the cluster's configuration. We then invoke a CSR approve on any nodes that
  5. # are waiting to join the cluster.
  6. #
  7. ---
  8. - name: Copy unit service
  9. copy:
  10. src: openshift-bootstrap-update.timer
  11. dest: /etc/systemd/system/openshift-bootstrap-update.timer
  12. owner: root
  13. group: root
  14. mode: 0664
  15. - name: Copy unit timer
  16. copy:
  17. src: openshift-bootstrap-update.service
  18. dest: /etc/systemd/system/openshift-bootstrap-update.service
  19. owner: root
  20. group: root
  21. mode: 0664
  22. - name: Create bootstrap update script
  23. template: src=openshift-bootstrap-update.j2 dest=/usr/bin/openshift-bootstrap-update mode=u+rx
  24. - name: Start bootstrap update timer
  25. systemd:
  26. name: "openshift-bootstrap-update.timer"
  27. state: started
  28. - name: Approve node certificates when bootstrapping
  29. oc_csr_approve:
  30. oc_bin: "{{ hostvars[groups.masters.0]['first_master_client_binary'] }}"
  31. oc_conf: "{{ hostvars[groups.masters.0].openshift.common.config_base }}/master/admin.kubeconfig"
  32. node_list: "{{ groups['all'] | map('extract', hostvars) | selectattr('gce_metadata.bootstrap', 'match', 'true') | map(attribute='gce_name') | list }}"
  33. register: gcp_csr_approve
  34. retries: 30
  35. until: gcp_csr_approve is succeeded
  36. when: groups['all'] | map('extract', hostvars) | selectattr('gce_metadata.bootstrap', 'match', 'true') | map(attribute='gce_name') | list | length > 0