certs.yml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. with_items:
  31. - "{{ calico_etcd_ca_cert_file }}"
  32. - "{{ calico_etcd_cert_file }}"
  33. - "{{ calico_etcd_key_file }}"
  34. - name: Create secret
  35. oc_secret:
  36. name: calico-etcd-secrets
  37. namespace: kube-system
  38. files:
  39. - name: etcd-key
  40. path: "{{ calico_etcd_key_file }}"
  41. - name: etcd-cert
  42. path: "{{ calico_etcd_cert_file }}"
  43. - name: etcd-ca
  44. path: "{{ calico_etcd_ca_cert_file }}"