Skip to content

Commit

Permalink
fix: Add temporary fix
Browse files Browse the repository at this point in the history
Signed-off-by: Klaus Smolin <[email protected]>
  • Loading branch information
smolin-de committed Jun 20, 2023
1 parent 26d1efd commit 60c2853
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion roles/check_nodes/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
ansible.builtin.shell: |
set -o pipefail
oc get nodes | grep "^{{ node | lower }}" | awk '{print $2}'
loop: "{{ env.cluster.nodes.control.hostname + env.cluster.nodes.compute.hostname }}"
# TODO: Disabled because of issue: https://github.ibm.com/Systems-BOE-TechOps/D3170-HelpDesk/issues/1513
# loop: "{{ env.cluster.nodes.control.hostname + env.cluster.nodes.compute.hostname }}"
loop: "{{ env.cluster.nodes.compute.hostname }}"
loop_control:
loop_var: node
register: cmd_output
Expand Down

0 comments on commit 60c2853

Please sign in to comment.