소스 검색

Merge pull request #8654 from mtnbikenc/fix-1586366

Bug 1586366 - Use include_tasks for dynamic task file includes
Scott Dodson 6 년 전
부모
커밋
a76d50eb57
2개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 0
      roles/openshift_cloud_provider/tasks/main.yml
  2. 2 2
      roles/openshift_cloud_provider/tasks/vsphere.yml

+ 2 - 0
roles/openshift_cloud_provider/tasks/main.yml

@@ -10,5 +10,7 @@
     path: "{{ openshift.common.config_base }}/cloudprovider"
     state: directory
 
+# Any files included here must use include_tasks instead of import_tasks due to
+# the dynamic nature of include_tasks
 - name: include the defined cloud provider files
   include_tasks: "{{ openshift_cloudprovider_kind }}.yml"

+ 2 - 2
roles/openshift_cloud_provider/tasks/vsphere.yml

@@ -11,11 +11,11 @@
   - openshift_cloudprovider_vsphere_datastore is defined
 
 - name: Configure vsphere svc account
-  import_tasks: vsphere-svc.yml
+  include_tasks: vsphere-svc.yml
   when:
   - openshift_version | version_compare('3.9', '>=')
   - inventory_hostname == openshift_master_hosts[0]
 
 - name: Modify controller args
-  import_tasks: update-vsphere.yml
+  include_tasks: update-vsphere.yml
   notify: restart master