Merge pull request #990 from mattymo/fix_cert_upgrade

Fix check for node-NODEID certs existence
This commit is contained in:
Matthew Mosesohn 2017-02-08 14:44:09 +03:00 committed by GitHub
commit 0180ad7f38
2 changed files with 2 additions and 0 deletions

View file

@ -43,6 +43,7 @@
{% for host in all_etcd_hosts %}
{% if host == inventory_hostname %}
{% if (not etcdcert.results[0].stat.exists|default(False)) or
(not etcdcert.results[1].stat.exists|default(False)) or
(etcdcert.results[1].stat.checksum|default('') != etcdcert_master.results[loop.index].stat.checksum|default('')) -%}
{%- set _ = certs.update({'sync': True}) -%}
{% endif %}

View file

@ -41,6 +41,7 @@
{%- for host in groups['k8s-cluster'] %}
{% if host == inventory_hostname %}
{% if (not kubecert.results[0].stat.exists|default(False)) or
(not kubecert.results[1].stat.exists|default(False)) or
(kubecert.results[1].stat.checksum|default('') != kubecert_master.results[loop.index].stat.checksum|default('')) -%}
{%- set _ = certs.update({'sync': True}) -%}
{% endif %}