Skip to content
Snippets Groups Projects
main.yml 1.71 KiB
Newer Older
  • Learn to ignore specific revisions
  • Smaine Kahlouch's avatar
    Smaine Kahlouch committed
    ---
    
    Matthew Mosesohn's avatar
    Matthew Mosesohn committed
    - include: check_certs.yml
    
      when: cert_management == "script"
    
    - include: "gen_certs_{{ cert_management }}.yml"
    
    - name: "Gen_certs | Get etcd certificate serials"
      shell: "openssl x509 -in {{ etcd_cert_dir }}/node-{{ inventory_hostname }}.pem -noout -serial | cut -d= -f2"
    
      register: "etcd_client_cert_serial_result"
      when: inventory_hostname in groups['k8s-cluster']|union(groups['etcd'])|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 }}"
    
      when: inventory_hostname in groups['k8s-cluster']|union(groups['etcd'])|union(groups['calico-rr']|default([]))|unique|sort
    
    
    Brad Beam's avatar
    Brad Beam committed
    - include: "install_{{ etcd_deployment_type }}.yml"
    
    - include: set_cluster_health.yml
    
      when: is_etcd_master and etcd_cluster_setup
    
    Smaine Kahlouch's avatar
    Smaine Kahlouch committed
    - include: configure.yml
    
      when: is_etcd_master and etcd_cluster_setup
    
    - include: refresh_config.yml
    
      when: is_etcd_master and etcd_cluster_setup
    
    - name: Restart etcd if certs changed
    
      command: /bin/true
      notify: restart etcd
    
      when: is_etcd_master and etcd_secret_changed|default(false)
    
    # reload-systemd
    
    - meta: flush_handlers
    
    
    - name: Ensure etcd is running
      service:
        name: etcd
        state: started
        enabled: yes
    
      when: is_etcd_master and etcd_cluster_setup
    
    # After etcd cluster is assembled, make sure that
    # initial state of the cluster is in `existing`
    # state insted of `new`.
    - include: set_cluster_health.yml
    
      when: is_etcd_master and etcd_cluster_setup
    
    - include: refresh_config.yml
    
      when: is_etcd_master and etcd_cluster_setup