certs.yml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. ---
  2. - name: Calico Node | Set cert flag
  3. set_fact:
  4. calico_certs_provided: "{{ calico_etcd_ca_cert_file is defined or calico_etcd_cert_file is defined or calico_etcd_key_file is defined or calico_etcd_endpoints is defined | bool }}"
  5. - name: Calico Node | Error if invalid cert arguments
  6. fail:
  7. msg: "Must provide all or none for the following etcd params: calico_etcd_ca_cert_file, calico_etcd_cert_file, calico_etcd_key_file, calico_etcd_endpoints"
  8. when:
  9. - calico_certs_provided
  10. - not (calico_etcd_ca_cert_file is defined and calico_etcd_cert_file is defined and calico_etcd_key_file is defined and calico_etcd_endpoints is defined)
  11. - name: Calico Node | Set etcd cert location facts
  12. when: not calico_certs_provided
  13. set_fact:
  14. calico_etcd_ca_cert_file: "/etc/origin/master/master.etcd-ca.crt"
  15. calico_etcd_cert_file: "/etc/origin/master/master.etcd-client.crt"
  16. calico_etcd_key_file: "/etc/origin/master/master.etcd-client.key"
  17. calico_etcd_endpoints: "{{ hostvars[groups.oo_first_master.0].openshift_master_etcd_urls | join(',') }}"
  18. - name: Calico Node | Error if no certs set.
  19. fail:
  20. msg: "Invalid etcd configuration for calico."
  21. when: item is not defined or item == ''
  22. with_items:
  23. - calico_etcd_ca_cert_file
  24. - calico_etcd_cert_file
  25. - calico_etcd_key_file
  26. - calico_etcd_endpoints
  27. - name: Calico Node | Assure the calico certs are present
  28. stat:
  29. path: "{{ item }}"
  30. get_checksum: false
  31. get_attributes: false
  32. get_mime: false
  33. with_items:
  34. - "{{ calico_etcd_ca_cert_file }}"
  35. - "{{ calico_etcd_cert_file }}"
  36. - "{{ calico_etcd_key_file }}"
  37. - name: Create secret
  38. oc_secret:
  39. name: calico-etcd-secrets
  40. state: present
  41. namespace: kube-system
  42. files:
  43. - name: etcd-key
  44. path: "{{ calico_etcd_key_file }}"
  45. - name: etcd-cert
  46. path: "{{ calico_etcd_cert_file }}"
  47. - name: etcd-ca
  48. path: "{{ calico_etcd_ca_cert_file }}"
  49. run_once: true