Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 10 additions & 0 deletions roles/kayobe-ci-prep/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
---
- name: Configure secondary storage drive
#NOTE(wszumski) Some instances provide a smaller 40G root disk with a
#secondary storage drive. This kolla-ansible provided role sets up the
#secondary drive for docker/podman storage.
# see: https://docs.opendev.org/opendev/infra-manual/latest/testing.html#unprivileged-single-use-vms
include_role:
name: configure-ephemeral
vars:
configure_ephemeral_mountpoint: "{{ '/var/lib/containers' if container_engine | default('docker') == 'podman' else '/var/lib/docker' }}"

- name: Set Rocky Linux mirror to download.rockylinux.org
become: true
ansible.builtin.shell:
Expand Down
2 changes: 2 additions & 0 deletions roles/kayobe-diagnostics/files/get_logs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ copy_logs() {

iptables-save > ${LOG_DIR}/system_logs/iptables.txt

lsblk | tee ${LOG_DIR}/system_logs/lsblk.txt

if [ `command -v dpkg` ]; then
dpkg -l > ${LOG_DIR}/system_logs/dpkg-l.txt
fi
Expand Down
2 changes: 2 additions & 0 deletions zuul.d/jobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@
tls_enabled: false
container_engine: 'docker'
ironic_boot_mode: "bios"
roles:
- zuul: openstack/kolla

- job:
name: kayobe-overcloud-base
Expand Down
Loading