2017-08-30 16:03:22 +03:00
|
|
|
---
|
|
|
|
- name: Gen_certs | target ca-certificate store file
|
|
|
|
set_fact:
|
|
|
|
ca_cert_path: |-
|
|
|
|
{% if ansible_os_family == "Debian" -%}
|
|
|
|
/usr/local/share/ca-certificates/etcd-ca.crt
|
|
|
|
{%- elif ansible_os_family == "RedHat" -%}
|
|
|
|
/etc/pki/ca-trust/source/anchors/etcd-ca.crt
|
2020-08-28 10:28:53 +01:00
|
|
|
{%- elif ansible_os_family in ["Flatcar Container Linux by Kinvolk"] -%}
|
2017-08-30 16:03:22 +03:00
|
|
|
/etc/ssl/certs/etcd-ca.pem
|
2018-04-26 10:52:06 +01:00
|
|
|
{%- elif ansible_os_family == "Suse" -%}
|
|
|
|
/etc/pki/trust/anchors/etcd-ca.pem
|
2018-12-18 01:39:25 -08:00
|
|
|
{%- elif ansible_os_family == "ClearLinux" -%}
|
|
|
|
/usr/share/ca-certs/etcd-ca.pem
|
2017-08-30 16:03:22 +03:00
|
|
|
{%- endif %}
|
2017-10-05 10:43:04 +03:00
|
|
|
tags:
|
|
|
|
- facts
|
2017-08-30 16:03:22 +03:00
|
|
|
|
|
|
|
- name: Gen_certs | add CA to trusted CA dir
|
|
|
|
copy:
|
|
|
|
src: "{{ etcd_cert_dir }}/ca.pem"
|
|
|
|
dest: "{{ ca_cert_path }}"
|
|
|
|
remote_src: true
|
|
|
|
register: etcd_ca_cert
|
|
|
|
|
2020-08-28 10:28:53 +01:00
|
|
|
- name: Gen_certs | update ca-certificates (Debian/Ubuntu/SUSE/Flatcar) # noqa 503
|
2017-08-30 16:03:22 +03:00
|
|
|
command: update-ca-certificates
|
2020-08-28 10:28:53 +01:00
|
|
|
when: etcd_ca_cert.changed and ansible_os_family in ["Debian", "Flatcar Container Linux by Kinvolk", "Suse"]
|
2017-08-30 16:03:22 +03:00
|
|
|
|
2020-07-27 15:24:17 +02:00
|
|
|
- name: Gen_certs | update ca-certificates (RedHat) # noqa 503
|
2017-08-30 16:03:22 +03:00
|
|
|
command: update-ca-trust extract
|
|
|
|
when: etcd_ca_cert.changed and ansible_os_family == "RedHat"
|
2018-12-18 01:39:25 -08:00
|
|
|
|
2020-07-27 15:24:17 +02:00
|
|
|
- name: Gen_certs | update ca-certificates (ClearLinux) # noqa 503
|
2018-12-18 01:39:25 -08:00
|
|
|
command: clrtrust add "{{ ca_cert_path }}"
|
|
|
|
when: etcd_ca_cert.changed and ansible_os_family == "ClearLinux"
|