Browse Source

Single quotes are missing in jsonpath argument of kubectl get node (#8683)

pull/8688/head
emiran-orange 2 years ago
committed by GitHub
parent
commit
3782573ede
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. 2
      roles/upgrade/pre-upgrade/tasks/main.yml

2
roles/upgrade/pre-upgrade/tasks/main.yml

@ -19,7 +19,7 @@
- name: See if node is in ready state
command: >
{{ kubectl }} get node {{ kube_override_hostname|default(inventory_hostname) }}
-o jsonpath={ range .status.conditions[?(@.type == "Ready")].status }{ @ }{ end }
-o jsonpath='{ range .status.conditions[?(@.type == "Ready")].status }{ @ }{ end }'
register: kubectl_node_ready
delegate_to: "{{ groups['kube_control_plane'][0] }}"
failed_when: false

Loading…
Cancel
Save