sip/playbooks/integration-tests.yaml
diwakar thyagaraj 09d76d3e97 Enable CI for SIP
* Install Dependency packages like make,wget,debconf and snapd
   * Deploy Kubernetes and SIP
   * Setup roles for Docker and for firewall for Kubernetes
   * Updated Readme and makefile to reflect minikube Installation

Change-Id: I6e8bbe011a00ded0b8b047c1fc095c901a18e1db
2021-01-19 21:58:59 +00:00

23 lines
576 B
YAML

- hosts: ubuntu-bionic
tasks:
- name: Run ensure-docker
include_role:
name: ensure-docker
- name: Install Dependent Packages
apt:
pkg:
- debconf
- make
- wget
- 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 }}"