소스 검색

Copy pasted too fast, "item" variable is not defined outside mkdir loop

Diego Abelenda 7 년 전
부모
커밋
b7390a603c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      playbooks/openshift-hosted/private/create_persistent_volumes.yml

+ 1 - 1
playbooks/openshift-hosted/private/create_persistent_volumes.yml

@@ -9,7 +9,7 @@
   vars:
     persistentlocalstorage_project: "{{ openshift_persistentlocalstorage_project | default('local-storage') }}"
     persistentlocalstorage_classes: "{{ openshift_persistentlocalstorage_classes | default([]) }}"
-    persistentlocalstorage_path: "{{ openshift_persistentlocalstorage_path | default('/mnt/local-storage') }}/{{ item }}"
+    persistentlocalstorage_path: "{{ openshift_persistentlocalstorage_path | default('/mnt/local-storage') }}"
   roles:
   - role: openshift_persistentlocalstorage
     when: openshift_persistentlocalstorage_enabled | default(False) | bool