Browse Source

Calculate etcd client cert serial for appropriate groups (#3605)

Standalone etcd nodes do not generate node-$hostname certs and do
not need this serial calculated.
pull/3627/head
Matthew Mosesohn 6 years ago
committed by k8s-ci-robot
parent
commit
bc74a37696
1 changed files with 4 additions and 2 deletions
  1. 6
      roles/etcd/tasks/main.yml

6
roles/etcd/tasks/main.yml

@ -17,7 +17,8 @@
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['etcd'])|union(groups['calico-rr']|default([]))|unique|sort
when:
- inventory_hostname in groups['k8s-cluster']|union(groups['calico-rr']|default([]))|unique|sort
tags:
- master
- network
@ -25,7 +26,8 @@
- 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['etcd'])|union(groups['calico-rr']|default([]))|unique|sort
when:
- inventory_hostname in groups['k8s-cluster']|union(groups['calico-rr']|default([]))|unique|sort
tags:
- master
- network

Loading…
Cancel
Save