Browse Source

revert back to fqn for json_query

Grega Bremec 1 year ago
parent
commit
c2b0e0e425
1 changed files with 1 additions and 1 deletions
  1. 1 1
      roles/fix-operators/tasks/main.yml

+ 1 - 1
roles/fix-operators/tasks/main.yml

@@ -105,7 +105,7 @@
       - op_mft.resources is defined
       - (op_mft.resources | length) > 0
       - op_mft.resources[0].status.catalogSource == op_cat
-      - 'desired_csv in (op_mft.resources[0] | json_query("status.channels[*].currentCSV") | list)'
+      - 'desired_csv in (op_mft.resources[0] | community.general.json_query("status.channels[*].currentCSV") | list)'
     fail_msg: "ERROR: {{ op_pkg }} package manifest not deployed correctly."
     success_msg: "OK: {{ op_pkg }} package manifest configured correctly."
 ...