2017-08-30 13:03:22 +00:00
|
|
|
---
|
|
|
|
- name: Gen_certs | target ca-certificates path
|
|
|
|
set_fact:
|
|
|
|
ca_cert_path: |-
|
|
|
|
{% if ansible_os_family == "Debian" -%}
|
|
|
|
/usr/local/share/ca-certificates/kube-ca.crt
|
|
|
|
{%- elif ansible_os_family == "RedHat" -%}
|
|
|
|
/etc/pki/ca-trust/source/anchors/kube-ca.crt
|
|
|
|
{%- elif ansible_os_family in ["CoreOS", "Container Linux by CoreOS"] -%}
|
|
|
|
/etc/ssl/certs/kube-ca.pem
|
|
|
|
{%- 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: "{{ kube_cert_dir }}/ca.pem"
|
|
|
|
dest: "{{ ca_cert_path }}"
|
|
|
|
remote_src: true
|
|
|
|
register: kube_ca_cert
|
|
|
|
|
|
|
|
- name: Gen_certs | update ca-certificates (Debian/Ubuntu/Container Linux by CoreOS)
|
|
|
|
command: update-ca-certificates
|
|
|
|
when: kube_ca_cert.changed and ansible_os_family in ["Debian", "CoreOS", "Container Linux by CoreOS"]
|
|
|
|
|
|
|
|
- name: Gen_certs | update ca-certificates (RedHat)
|
|
|
|
command: update-ca-trust extract
|
|
|
|
when: kube_ca_cert.changed and ansible_os_family == "RedHat"
|