Skip to content

Commit 731a48e

Browse files
committed
[skip ci] Debug DOCA repositories
1 parent ceff70a commit 731a48e

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

.github/workflows/package-build-ofed.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,11 +233,20 @@ jobs:
233233
run: |
234234
source venvs/kayobe/bin/activate &&
235235
source src/kayobe-config/kayobe-env --environment ci-doca-builder &&
236-
kayobe playbook run src/kayobe-config/etc/kayobe/ansible/push-ofed.yml \
236+
kayobe playbook run src/kayobe-config/etc/kayobe/ansible/tools/push-ofed.yml \
237237
-e "ofed_tag=${{ steps.ofed_tag.outputs.ofed_tag }}"
238238
env:
239239
KAYOBE_VAULT_PASSWORD: ${{ secrets.KAYOBE_VAULT_PASSWORD }}
240240

241+
- name: Display DNF repositories
242+
run: |
243+
source venvs/kayobe/bin/activate &&
244+
source src/kayobe-config/kayobe-env --environment ci-doca-builder &&
245+
kayobe playbook run src/kayobe-config/etc/kayobe/ansible/tools/growroot.yml
246+
env:
247+
KAYOBE_VAULT_PASSWORD: ${{ secrets.KAYOBE_VAULT_PASSWORD }}
248+
if: always()
249+
241250
- name: Destroy
242251
run: terraform destroy -auto-approve
243252
working-directory: ${{ github.workspace }}/src/kayobe-config/terraform/aio

etc/kayobe/ansible/tools/growroot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,17 @@
2929
growroot_ignore_lvm_check: false
3030

3131
tasks:
32+
- name: Display DNF repositories
33+
command: dnf repoinfo
34+
register: repoinfo
35+
become: true
36+
37+
- debug:
38+
var: repoinfo.stdout
39+
40+
- debug:
41+
var: repoinfo.stderr
42+
3243
- name: Check LVM status
3344
ansible.builtin.shell:
3445
executable: "/bin/bash"

etc/kayobe/environments/ci-doca-builder/stackhpc-ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@ stackhpc_repos_enabled: true
77
enable_docker_repo: false
88
dnf_install_doca: true
99
dnf_enable_doca_modules: false
10+
11+
# Disable Pulp auth proxy (deployed too late for DOCA DNF repository setup).
12+
stackhpc_repo_mirror_auth_proxy_enabled: false

0 commit comments

Comments
 (0)