Merge "Gate: Update gate permit running on ubuntu 18.04"

This commit is contained in:
Zuul 2018-09-11 19:19:27 +00:00 committed by Gerrit Code Review
commit e6966ffdaf

View File

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