Skip to content
Snippets Groups Projects
  • SamYaple's avatar
    e8d66766
    Fix gate for docker 1.10 · e8d66766
    SamYaple authored
    Docker 1.10 has broken the gate and this patch will correct that
    breakage.
    
    The issue comes with rsyslog. Due to a commit in Docker 1.10 [1] we
    must change the way we get the log socket for rsyslog. The /dev/
    folder will no longer populate as we used it. So instead we simply
    make a new socket in a path we control and share that to the correct
    location in the containers.
    
    Additionally, adjust the gate for new Docker daemon.
    
    [1] https://github.com/docker/docker/pull/16639
    Partially-Implements: blueprint kolla-upgrade
    Change-Id: I881a2ecdf6d7b35991e1d38a3f3e60d022d6577f
    e8d66766
    History
    Fix gate for docker 1.10
    SamYaple authored
    Docker 1.10 has broken the gate and this patch will correct that
    breakage.
    
    The issue comes with rsyslog. Due to a commit in Docker 1.10 [1] we
    must change the way we get the log socket for rsyslog. The /dev/
    folder will no longer populate as we used it. So instead we simply
    make a new socket in a path we control and share that to the correct
    location in the containers.
    
    Additionally, adjust the gate for new Docker daemon.
    
    [1] https://github.com/docker/docker/pull/16639
    Partially-Implements: blueprint kolla-upgrade
    Change-Id: I881a2ecdf6d7b35991e1d38a3f3e60d022d6577f
setup_Debian.sh 1.53 KiB
#!/bin/bash

set -o xtrace
set -o errexit

function setup_disk {
    sudo swapoff -a
    sudo dd if=/dev/zero of=/swapfile bs=1M count=4096
    sudo chmod 0600 /swapfile
    sudo mkswap /swapfile
    sudo /sbin/swapon /swapfile

    sudo dd if=/dev/zero of=/docker bs=1M count=10240
    losetup -f /docker
    DEV=$(losetup -a | awk -F: '/\/docker/ {print $1}')

    # Format Disks and setup Docker to use BTRFS
    sudo parted ${DEV} -s -- mklabel msdos
    sudo rm -rf /var/lib/docker
    sudo mkdir /var/lib/docker

    # We want to snapshot the entire docker directory so we have to first create a
    # subvolume and use that as the root for the docker directory.
    sudo mkfs.btrfs -f ${DEV}
    sudo mount ${DEV} /var/lib/docker
    sudo btrfs subvolume create /var/lib/docker/docker
    sudo umount /var/lib/docker
    sudo mount -o noatime,subvol=docker ${DEV} /var/lib/docker
}

# (SamYaple)TODO: Remove the path overriding
export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"

# Setup Docker repo and add signing key
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://pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
sudo apt-get update
sudo apt-get install -y --no-install-recommends docker-engine btrfs-tools

sudo service docker stop
setup_disk
echo 'DOCKER_OPTS="-s btrfs"' | sudo tee /etc/default/docker
sudo mount --make-shared /run
sudo service docker start

sudo docker info

echo "Completed $0."