Merge pull request #990 from mattymo/fix_cert_upgrade
Fix check for node-NODEID certs existence
This commit is contained in:
@ -43,6 +43,7 @@
|
|||||||
{% for host in all_etcd_hosts %}
|
{% for host in all_etcd_hosts %}
|
||||||
{% if host == inventory_hostname %}
|
{% if host == inventory_hostname %}
|
||||||
{% if (not etcdcert.results[0].stat.exists|default(False)) or
|
{% 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('')) -%}
|
(etcdcert.results[1].stat.checksum|default('') != etcdcert_master.results[loop.index].stat.checksum|default('')) -%}
|
||||||
{%- set _ = certs.update({'sync': True}) -%}
|
{%- set _ = certs.update({'sync': True}) -%}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -41,6 +41,7 @@
|
|||||||
{%- for host in groups['k8s-cluster'] %}
|
{%- for host in groups['k8s-cluster'] %}
|
||||||
{% if host == inventory_hostname %}
|
{% if host == inventory_hostname %}
|
||||||
{% if (not kubecert.results[0].stat.exists|default(False)) or
|
{% 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('')) -%}
|
(kubecert.results[1].stat.checksum|default('') != kubecert_master.results[loop.index].stat.checksum|default('')) -%}
|
||||||
{%- set _ = certs.update({'sync': True}) -%}
|
{%- set _ = certs.update({'sync': True}) -%}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Reference in New Issue
Block a user