Skip to content

Edit rally_image_full to always contain registry #37

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ansible/kayobe-automation-run-tempest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
results_path_local: "{{ lookup('env', 'PWD') }}"
rally_image: 'stackhpc/docker-rally'
rally_tag: latest
rally_image_full: "{{ rally_image }}:{{ rally_tag }}"
rally_image_full: "{{ rally_docker_registry }}/{{ rally_image }}:{{ rally_tag }}"
rally_no_sensitive_log: true
# This ensures you get the latest image if the image is updated
# and the tag isn't e.g when using the latest tag.
Expand Down Expand Up @@ -47,7 +47,7 @@

- name: Ensure rally image exists on runner
docker_image:
name: "{{ rally_docker_registry }}/{{ rally_image_full }}"
name: "{{ rally_image_full }}"
state: present
force_source: "{{ rally_force_pull | bool }}"
source: pull
Expand Down