a938b1eec6
- Move to ubuntu-focal to account for: http://lists.opendev.org/pipermail/service-announce/2021-May/000019.html - Set an explicit nodeset on jobs to prevent this issue in the future - Fix unit test and doc gen issues which cropped up while CI was falsely passing Closes: #22 Signed-off-by: Sean Eagan <seaneagan1@gmail.com> Change-Id: I4a53d2099c29ad3fc7a8188a9153008c56a7fd72
23 lines
561 B
YAML
23 lines
561 B
YAML
- hosts: ubuntu-focal
|
|
tasks:
|
|
- name: Run docker-install
|
|
include_role:
|
|
name: docker-install
|
|
- name: Install Dependent Packages
|
|
apt:
|
|
pkg:
|
|
- debconf
|
|
- make
|
|
- snapd
|
|
become: yes
|
|
- name: Set up requirements for kubernetes
|
|
include_role:
|
|
name: clear-firewall
|
|
- name: Install kubernetes and Deploy Sip
|
|
shell: |
|
|
set -xe;
|
|
./tools/deployment/install-k8s.sh
|
|
./tools/deployment/deploy-sip.sh
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}"
|