Skip to content
Snippets Groups Projects
Commit 9f74f509 authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Unblock Docker pinning in gate"

parents bef9c081 6ca65aba
No related branches found
No related tags found
No related merge requests found
...@@ -20,8 +20,7 @@ cat << EOF > /etc/kolla/globals.yml ...@@ -20,8 +20,7 @@ cat << EOF > /etc/kolla/globals.yml
kolla_base_distro: "$1" kolla_base_distro: "$1"
kolla_install_type: "$2" kolla_install_type: "$2"
kolla_internal_address: "169.254.169.10" kolla_internal_address: "169.254.169.10"
docker_pull_policy: "missing" docker_restart_policy: "never"
docker_restart_policy: "no"
network_interface: "eth0" network_interface: "eth0"
neutron_external_interface: "fake_interface" neutron_external_interface: "fake_interface"
EOF EOF
......
...@@ -12,7 +12,7 @@ export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" ...@@ -12,7 +12,7 @@ export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
echo 'deb http://apt.dockerproject.org/repo ubuntu-trusty main' | sudo tee /etc/apt/sources.list.d/docker.list echo 'deb http://apt.dockerproject.org/repo ubuntu-trusty main' | sudo tee /etc/apt/sources.list.d/docker.list
sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
sudo apt-get update sudo apt-get update
sudo apt-get install -y --no-install-recommends docker-engine=1.8.2-0~trusty btrfs-tools sudo apt-get install -y --no-install-recommends docker-engine btrfs-tools
# Only do FS optimization if we have a secondary disk # Only do FS optimization if we have a secondary disk
if [[ -b /dev/${DEV} ]]; then if [[ -b /dev/${DEV} ]]; then
......
...@@ -17,7 +17,7 @@ gpgcheck=1 ...@@ -17,7 +17,7 @@ gpgcheck=1
gpgkey=https://yum.dockerproject.org/gpg gpgkey=https://yum.dockerproject.org/gpg
EOF EOF
sudo yum install -y libffi-devel openssl-devel docker-engine-1.8.2 xfsprogs sudo yum install -y libffi-devel openssl-devel docker-engine xfsprogs
# Only do FS optimization if we have a secondary disk # Only do FS optimization if we have a secondary disk
if [[ -b /dev/${DEV} ]]; then if [[ -b /dev/${DEV} ]]; then
......
...@@ -70,7 +70,7 @@ function setup_ansible { ...@@ -70,7 +70,7 @@ function setup_ansible {
RAW_INVENTORY=/tmp/kolla/raw_inventory RAW_INVENTORY=/tmp/kolla/raw_inventory
mkdir /tmp/kolla mkdir /tmp/kolla
sudo -H pip install "ansible<2" "docker-py>=1.4.0,<1.6.0" sudo -H pip install "ansible<2" "docker-py>=1.4.0"
setup_inventory setup_inventory
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment