bf0af1cd3d
* using separated vault roles for generate certs with different `O` (Organization) subject field; * configure vault roles for issuing certificates with different `CN` (Common name) subject field; * set `CN` and `O` to `kubernetes` and `etcd` certificates; * vault/defaults vars definition was simplified; * vault dirs variables defined in kubernetes-defaults foles for using shared tasks in etcd and kubernetes/secrets roles; * upgrade vault to 0.8.1; * generate random vault user password for each role by default; * fix `serial` file name for vault certs; * move vault auth request to issue_cert tasks; * enable `RBAC` in vault CI;
44 lines
1.3 KiB
YAML
44 lines
1.3 KiB
YAML
---
|
|
- include: ../shared/check_vault.yml
|
|
when: inventory_hostname in groups.vault
|
|
|
|
- include: ../shared/check_etcd.yml
|
|
when: inventory_hostname in groups.vault
|
|
|
|
- include: configure.yml
|
|
when: inventory_hostname in groups.vault
|
|
|
|
- include: binary.yml
|
|
when: inventory_hostname in groups.vault and vault_deployment_type == "host"
|
|
|
|
- include: systemd.yml
|
|
when: inventory_hostname in groups.vault
|
|
|
|
- include: init.yml
|
|
when: inventory_hostname in groups.vault
|
|
|
|
- include: unseal.yml
|
|
when: inventory_hostname in groups.vault
|
|
|
|
- include: ../shared/find_leader.yml
|
|
when: inventory_hostname in groups.vault
|
|
|
|
- include: create_mounts.yml
|
|
when: inventory_hostname == groups.vault|first
|
|
|
|
- include: ../shared/gen_ca.yml
|
|
vars:
|
|
gen_ca_cert_dir: "{{ vault_pki_mounts.kube.cert_dir }}"
|
|
gen_ca_mount_path: "{{ vault_pki_mounts.kube.name }}"
|
|
gen_ca_vault_headers: "{{ vault_headers }}"
|
|
gen_ca_vault_options: "{{ vault_ca_options.kube }}"
|
|
when: inventory_hostname in groups.vault
|
|
|
|
- include: ../shared/auth_backend.yml
|
|
vars:
|
|
auth_backend_description: A Username/Password Auth Backend primarily used for services needing to issue certificates
|
|
auth_backend_path: userpass
|
|
auth_backend_type: userpass
|
|
when: inventory_hostname == groups.vault|first
|
|
|
|
- include: create_roles.yml
|