c12s-kubespray/contrib/vault/roles/vault/tasks/bootstrap/ca_trust.yml

33 lines
1.3 KiB
YAML
Raw Normal View History

2017-01-13 20:31:10 +00:00
---
2017-06-29 17:46:27 +00:00
- name: "bootstrap/ca_trust | pull CA from cert from {{groups.vault|first}}"
2017-01-13 20:31:10 +00:00
command: "cat {{ vault_cert_dir }}/ca.pem"
register: vault_cert_file_cat
2017-04-19 15:52:51 +00:00
delegate_to: "{{ groups['vault']|first }}"
2017-01-13 20:31:10 +00:00
# This part is mostly stolen from the etcd role
- name: bootstrap/ca_trust | target ca-certificate store file
2017-01-13 20:31:10 +00:00
set_fact:
ca_cert_path: >-
{% if ansible_os_family == "Debian" -%}
/usr/local/share/ca-certificates/vault-ca.crt
2017-01-13 20:31:10 +00:00
{%- elif ansible_os_family == "RedHat" -%}
/etc/pki/ca-trust/source/anchors/vault-ca.crt
{%- elif ansible_os_family in ["Coreos", "Container Linux by CoreOS", "Flatcar", "Flatcar Container Linux by Kinvolk"] -%}
/etc/ssl/certs/vault-ca.pem
2017-01-13 20:31:10 +00:00
{%- endif %}
- name: bootstrap/ca_trust | add CA to trusted CA dir
2017-01-13 20:31:10 +00:00
copy:
content: "{{ vault_cert_file_cat.get('stdout') }}\n"
2017-01-13 20:31:10 +00:00
dest: "{{ ca_cert_path }}"
register: vault_ca_cert
- name: bootstrap/ca_trust | update ca-certificates (Debian/Ubuntu/CoreOS)
2017-01-13 20:31:10 +00:00
command: update-ca-certificates
when: vault_ca_cert.changed and ansible_os_family in ["Debian", "CoreOS", "Coreos", "Container Linux by CoreOS", "Flatcar", "Flatcar Container Linux by Kinvolk"]
2017-01-13 20:31:10 +00:00
- name: bootstrap/ca_trust | update ca-certificates (RedHat)
2017-01-13 20:31:10 +00:00
command: update-ca-trust extract
when: vault_ca_cert.changed and ansible_os_family == "RedHat"