Argument jsonpath must be single-quoted in "See if node is schedulable" task (#9146)
This commit is contained in:
@ -30,7 +30,7 @@
|
|||||||
- name: See if node is schedulable
|
- name: See if node is schedulable
|
||||||
command: >
|
command: >
|
||||||
{{ kubectl }} get node {{ kube_override_hostname|default(inventory_hostname) }}
|
{{ kubectl }} get node {{ kube_override_hostname|default(inventory_hostname) }}
|
||||||
-o jsonpath={ .spec.unschedulable }
|
-o jsonpath='{ .spec.unschedulable }'
|
||||||
register: kubectl_node_schedulable
|
register: kubectl_node_schedulable
|
||||||
delegate_to: "{{ groups['kube_control_plane'][0] }}"
|
delegate_to: "{{ groups['kube_control_plane'][0] }}"
|
||||||
failed_when: false
|
failed_when: false
|
||||||
|
Reference in New Issue
Block a user