We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f5d934 commit d472c33Copy full SHA for d472c33
etc/kayobe/ansible/pulp-image-upload.yml
@@ -7,6 +7,7 @@
7
remote_pulp_password: "{{ stackhpc_image_repository_password }}"
8
repository_name: "kayobe-images-{{ openstack_release }}-{{ os_distribution }}-{{ os_release }}"
9
pulp_base_path: "kayobe-images/{{ openstack_release }}/{{ os_distribution }}/{{ os_release }}"
10
+ file_extension: '*.qcow2'
11
tasks:
12
- name: Print image tag
13
debug:
@@ -15,7 +16,7 @@
15
16
- name: Get filename
17
find:
18
paths: "{{ image_path }}"
- patterns: '*.qcow2'
19
+ patterns: "{{ file_extension }}"
20
register: found_files
21
22
- name: Upload an artifact
0 commit comments