Browse Source

Fix bool check assert

pull/1756/head
ant31 7 years ago
parent
commit
1be4c1935a
1 changed files with 2 additions and 1 deletions
  1. 3
      roles/kubernetes/preinstall/tasks/verify-settings.yml

3
roles/kubernetes/preinstall/tasks/verify-settings.yml

@ -30,7 +30,8 @@
- name: "Stop if known booleans are set as strings (Use JSON format on CLI: -e \"{'key': true }\")"
assert:
that: item|type_debug == 'bool'
that: hostvars[inventory_hostname][item]|type_debug == 'bool'
msg: "{{hostvars[inventory_hostname][item]}} isn't a bool"
run_once: yes
with_items:
- kubeadm_enabled

Loading…
Cancel
Save