diff --git a/plays/predeploy/lib/volumes.yml b/plays/predeploy/lib/volumes.yml index 9718f53..c5bb13d 100644 --- a/plays/predeploy/lib/volumes.yml +++ b/plays/predeploy/lib/volumes.yml @@ -1,19 +1,21 @@ --- -- name: Create volume mount directories - become: true - file: - path: "{{ item.src }}" - state: "{{ item.type }}" - owner: "{{ item.owner | default('dokku') }}" - group: "{{ item.group | default('dokku') }}" - with_items: "{{ config.volumes }}" - when: - - config.volumes - - item.create | default(false) -- name: Attach volume mounts - dokku_storage: - app: "{{ dokku.app }}" - mounts: "{{ item.src }}:{{ item.dest }}" - with_items: "{{ config.volumes }}" - when: config.volumes +# TODO(decentral1se): fix handling, this is broken +# - name: Create volume mount directories +# become: true +# file: +# path: "{{ item.src }}" +# state: "{{ item.type }}" +# owner: "{{ item.owner | default('dokku') }}" +# group: "{{ item.group | default('dokku') }}" +# with_items: "{{ config.volumes }}" +# when: +# - config.volumes +# - item.create | default(false) + +# - name: Attach volume mounts +# dokku_storage: +# app: "{{ dokku.app }}" +# mounts: "{{ item.src }}:{{ item.dest }}" +# with_items: "{{ config.volumes }}" +# when: config.volumes