From be3ff19ce26947c7476302ad89ee2f587499de9c Mon Sep 17 00:00:00 2001 From: David Kirwan Date: Sep 02 2021 02:42:05 +0000 Subject: metrics-for-apps: updating when expression to run on certain hostgroups Signed-off-by: David Kirwan --- diff --git a/playbooks/manual/ocp4-place-ignitionfiles.yml b/playbooks/manual/ocp4-place-ignitionfiles.yml index e224f41..42b02c2 100644 --- a/playbooks/manual/ocp4-place-ignitionfiles.yml +++ b/playbooks/manual/ocp4-place-ignitionfiles.yml @@ -65,7 +65,7 @@ tags: - ignition - repo - when: ['os_control_stg', 'os_control'] | intersect(group_names) | count > 0 + when: "{%['os_control_stg', 'os_control'] | intersect(group_names) | count > 0%}" - name: == OCP KVM provisioning == Downloading RHCOS deploy files get_url: @@ -91,18 +91,18 @@ register: vm_exists tags: - kvm_deploy - when: ['ocp_vms_stg', 'ocp_vms'] | intersect(group_names) | count > 0 + when: "{%['ocp_vms_stg', 'ocp_vms'] | intersect(group_names) | count > 0%}" - block: - name: ensure the lv for the guest is made lvol: lv={{ inventory_hostname }} vg={{ volgroup }} size={{ lvm_size }} state=present delegate_to: "{{ vmhost }}" tags: - kvm_deploy - when: ['ocp_vms_stg', 'ocp_vms'] | intersect(group_names) | count > 0 + when: "{%['ocp_vms_stg', 'ocp_vms'] | intersect(group_names) | count > 0%}" - name: == OCP KVM provisioning == Deploying the OCP Virtual Guest[s] command: "{{ virt_install_command }}" delegate_to: "{{ vmhost }}" tags: - kvm_deploy - when: ['ocp_vms_stg', 'ocp_vms'] | intersect(group_names) | count > 0 + when: "{%['ocp_vms_stg', 'ocp_vms'] | intersect(group_names) | count > 0%}" when: vm_exists is failed