12345678910111213141516171819202122232425262728 |
- ---
- - name: Get buildah images
- command: buildah images
- changed_when: false
- register: buildah_images
- tags: install
- - name: Subnet manager image creation (It may take 5-10 mins)
- command: "buildah bud -t {{ sm_docker_image_name }}:{{ sm_docker_image_tag }} --network host -f {{ role_path }}/files/Dockerfile"
- args:
- chdir: "{{ role_path }}/files/"
- when: "sm_docker_image_name not in buildah_images.stdout"
- tags: install
|