Переглянути джерело

uninstall node group: fix deprecated syntax

Vadim Rutkovsky 7 роки тому
батько
коміт
c7fb840ae7
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      roles/openshift_aws/tasks/uninstall_node_group.yml

+ 1 - 1
roles/openshift_aws/tasks/uninstall_node_group.yml

@@ -44,5 +44,5 @@
     name: "{{ item.launch_configuration_name }}"
     state: absent
     region: "{{ openshift_aws_region }}"
-  when: item.launch_configuration_name is match("^{{ openshift_aws_node_group.name }}.*")
+  when: item.launch_configuration_name is match("^" ~ openshift_aws_node_group.name ~ ".*")
   with_items: "{{ l_launch_config_list.launch_configurations }}"