fb994ecddb
Before switch to kubeadm we used to use manual approach for installing all the bits with option for switching container runtimes between docker and cri-o. With this patch we re-gain that ability with simply setting appropriate container engine variable for devstack-plugin-contaier to use either CRI-O or default Docker. Depends-On: https://review.opendev.org/c/openstack/devstack-plugin-container/+/817231 Change-Id: I273888a7428611b40802dc5dd53fcee864ce43da
15 lines
413 B
YAML
15 lines
413 B
YAML
- hosts: all
|
|
tasks:
|
|
- set_fact:
|
|
devstack_base_dir: /opt/stack
|
|
when: devstack_base_dir is not defined
|
|
|
|
- name: Copy CRI-O logs
|
|
shell:
|
|
cmd: "{{ devstack_base_dir }}/kuryr-kubernetes/tools/gate/copy_crio_logs.sh"
|
|
executable: /bin/bash
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
environment:
|
|
DEVSTACK_BASE_DIR: "{{ devstack_base_dir }}"
|
|
become: true
|