Skip to content
main.yml 2.06 KiB
Newer Older
Smaine Kahlouch's avatar
Smaine Kahlouch committed
---
- name: set architecture_groups
  set_fact:
    architecture_groups:
      x86_64: amd64
      aarch64: arm64

- name: ansible_architecture_rename
  set_fact:
    host_architecture: >-
      {%- if ansible_architecture in architecture_groups -%}
      {{ architecture_groups[ansible_architecture] }}
      {%- else -%}
- include_tasks: check_certs.yml
  when: cert_management == "script"
Antoine Legrand's avatar
Antoine Legrand committed
- include_tasks: "gen_certs_script.yml"
  when:
    - cert_management |d('script') == "script"
- include_tasks: upd_ca_trust.yml
- name: "Gen_certs | Get etcd certificate serials"
  command: "openssl x509 -in {{ etcd_cert_dir }}/node-{{ inventory_hostname }}.pem -noout -serial"
  register: "etcd_client_cert_serial_result"
  changed_when: false
  when:
    - inventory_hostname in groups['k8s-cluster']|union(groups['calico-rr']|default([]))|unique|sort

- name: Set etcd_client_cert_serial
  set_fact:
    etcd_client_cert_serial: "{{ etcd_client_cert_serial_result.stdout.split('=')[1] }}"
  when:
    - inventory_hostname in groups['k8s-cluster']|union(groups['calico-rr']|default([]))|unique|sort
- include_tasks: "install_{{ etcd_deployment_type }}.yml"
woopstar's avatar
woopstar committed
  when: is_etcd_master
woopstar's avatar
woopstar committed
  when: is_etcd_master
- name: Restart etcd if certs changed
  service:
    name: etcd
woopstar's avatar
woopstar committed
    state: restarted
    enabled: yes
woopstar's avatar
woopstar committed
  when: is_etcd_master and etcd_cluster_setup and etcd_secret_changed|default(false)
woopstar's avatar
woopstar committed
- name: Restart etcd-events if certs changed
  service:
    name: etcd-events
woopstar's avatar
woopstar committed
    state: restarted
woopstar's avatar
woopstar committed
  when: is_etcd_master and etcd_events_cluster_setup and etcd_secret_changed|default(false)
# After etcd cluster is assembled, make sure that
# initial state of the cluster is in `existing`
Bily Zhang's avatar
Bily Zhang committed
# state instead of `new`.
woopstar's avatar
woopstar committed
  when: is_etcd_master