sip/playbooks/integration-tests.yaml
Shturm, Svetlana bfc7e1e981 Use role from airshipctl to install docker
Change-Id: Ia353f7a1e428379a9e50f34e55fdfda33953dfa9
2021-04-12 14:23:19 -05:00

23 lines
562 B
YAML

- hosts: ubuntu-bionic
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 }}"