Gate: Update gate permit running on ubuntu 18.04

This PS updates the gate to permit running on the current LTS ubuntu
release.

Change-Id: I7e32a4ab0dc79e4b5f7a16f8a8cb5e9ee182ee08
Signed-off-by: Pete Birley <pete@port.direct>
This commit is contained in:
Pete Birley
2018-09-09 10:49:19 -05:00
committed by Pete Birley
parent 31ca66b3ce
commit e67f7bafd5

View File

@@ -25,16 +25,16 @@
- libwrap0
- socat
- name: ubuntu | installing kubelet support packages
when: ansible_distribution == 'Ubuntu'
- name: ubuntu xenial | installing kubelet support packages
when: ansible_distribution == 'Ubuntu' and ansible_distribution_release == 'xenial'
apt:
name: "{{item}}"
state: installed
with_items:
- libxtables11
- name: debian | installing kubelet support packages
when: ansible_distribution == 'Debian'
- name: debian and ubuntu bionic | installing kubelet support packages
when: ansible_distribution == 'Debian' or ( ansible_distribution == 'Ubuntu' and ansible_distribution_release == 'bionic' )
apt:
name: "{{item}}"
state: installed