[ci] Switch docker job rally-docker-check to ubuntu bionic

Change-Id: Ia60ec8a03ea5615ef261d6e85dcfcacc304a7d3e
This commit is contained in:
Andrey Kurilin 2018-10-22 15:15:00 +03:00
parent 81ab47030e
commit acc88e9298
2 changed files with 10 additions and 7 deletions

View File

@ -1,6 +1,6 @@
- job:
name: rally-docker-check
parent: base
nodeset: ubuntu-xenial
nodeset: ubuntu-bionic
run: tests/ci/playbooks/run-rally-docker-check.yaml
timeout: 1800

View File

@ -10,15 +10,18 @@
cmd: |
set -e
apt-get update
apt update
apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
apt-add-repository 'deb https://apt.dockerproject.org/repo ubuntu-xenial main'
apt install --yes apt-transport-https ca-certificates curl software-properties-common
apt-get update
apt-cache policy docker-engine
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
apt-get install -y docker-engine
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"
apt update
apt-cache policy docker-ce
apt install --yes docker-ce
- name: Check docker service status
become: True