Fix dest= missing
Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
This commit is contained in:
parent
887f10ae77
commit
8421005db1
1 changed files with 4 additions and 4 deletions
|
@ -1,13 +1,13 @@
|
|||
- name: Copy template {{template}} to temporary file ({{tmpfile.path}})
|
||||
- name: Copy template {{template}}
|
||||
template: src={{roles_path}}/openshift-apps/{{app}}/templates/{{template}} /etc/openshift_apps/{{app}}/{{key}}
|
||||
when: template is defined
|
||||
|
||||
- name: Copy file {{file}} to temporary file ({{tmpfile.path}})
|
||||
- name: Copy file {{file}}
|
||||
copy: src={{roles_path}}/openshift-apps/{{app}}/files/{{file}} dest=/etc/openshift_apps/{{app}}/{{key}}
|
||||
when: file is defined
|
||||
|
||||
- name: Copy private file {{privatefile}} to temporary file ({{tmpfile.path}})
|
||||
copy: src={{private}}/files/{{privatefile}} /etc/openshift_apps/{{app}}/{{key}}
|
||||
- name: Copy private file {{privatefile}}
|
||||
copy: src={{private}}/files/{{privatefile}} dest=/etc/openshift_apps/{{app}}/{{key}}
|
||||
when: privatefile is defined
|
||||
|
||||
- name: Call `oc secrets new` on the copied file
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue