2017-08-30 13:03:22 +00: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
|
2021-10-01 16:11:23 +00:00
|
|
|
{%- elif ansible_os_family in ["Flatcar", "Flatcar Container Linux by Kinvolk"] -%}
|
2017-08-30 13:03:22 +00:00
|
|
|
/etc/ssl/certs/etcd-ca.pem
|
2018-04-26 09:52:06 +00:00
|
|
|
{%- elif ansible_os_family == "Suse" -%}
|
|
|
|
/etc/pki/trust/anchors/etcd-ca.pem
|
2018-12-18 09:39:25 +00:00
|
|
|
{%- elif ansible_os_family == "ClearLinux" -%}
|
|
|
|
/usr/share/ca-certs/etcd-ca.pem
|
2017-08-30 13:03:22 +00:00
|
|
|
{%- endif %}
|
2017-10-05 07:43:04 +00:00
|
|
|
tags:
|
|
|
|
- facts
|
2017-08-30 13:03:22 +00:00
|
|
|
|
|
|
|
- name: Gen_certs | add CA to trusted CA dir
|
|
|
|
copy:
|
|
|
|
src: "{{ etcd_cert_dir }}/ca.pem"
|
|
|
|
dest: "{{ ca_cert_path }}"
|
|
|
|
remote_src: true
|
2021-07-12 07:00:47 +00:00
|
|
|
mode: 0640
|
2017-08-30 13:03:22 +00:00
|
|
|
register: etcd_ca_cert
|
|
|
|
|
2020-08-28 09:28:53 +00:00
|
|
|
- name: Gen_certs | update ca-certificates (Debian/Ubuntu/SUSE/Flatcar) # noqa 503
|
2017-08-30 13:03:22 +00:00
|
|
|
command: update-ca-certificates
|
2021-10-01 16:11:23 +00:00
|
|
|
when: etcd_ca_cert.changed and ansible_os_family in ["Debian", "Flatcar", "Flatcar Container Linux by Kinvolk", "Suse"]
|
2017-08-30 13:03:22 +00:00
|
|
|
|
2020-07-27 13:24:17 +00:00
|
|
|
- name: Gen_certs | update ca-certificates (RedHat) # noqa 503
|
2017-08-30 13:03:22 +00:00
|
|
|
command: update-ca-trust extract
|
|
|
|
when: etcd_ca_cert.changed and ansible_os_family == "RedHat"
|
2018-12-18 09:39:25 +00:00
|
|
|
|
2020-07-27 13:24:17 +00:00
|
|
|
- name: Gen_certs | update ca-certificates (ClearLinux) # noqa 503
|
2018-12-18 09:39:25 +00:00
|
|
|
command: clrtrust add "{{ ca_cert_path }}"
|
|
|
|
when: etcd_ca_cert.changed and ansible_os_family == "ClearLinux"
|