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 4d08e56 commit 564dfefCopy full SHA for 564dfef
1 file changed
ansible/roles/run-test-target/tasks/main.yml
@@ -6,6 +6,17 @@
6
stdin: "{{ quay_password }}"
7
when: runtime_command == 'docker' or runtime_command == 'podman'
8
9
+- name: Debug podman auth locations
10
+ become: "{{ runtime_as_root }}"
11
+ shell: |
12
+ echo "XDG_RUNTIME_DIR=$XDG_RUNTIME_DIR"
13
+ ls -la /run/containers/0/auth.json \
14
+ ${XDG_RUNTIME_DIR}/containers/auth.json \
15
+ $HOME/.config/containers/auth.json \
16
+ $HOME/.docker/config.json 2>&1
17
+ when: runtime_command == "podman"
18
+ tags: [print_action]
19
+
20
# 'success' will be set to false in the Run Integration Tests step
21
# if any test fails. After the tests run, the Check results step
22
# will cause a global failure if 'success' is set to false.
0 commit comments