Merge "Update Dockerfile to allow override of FROM variable"
This commit is contained in:
commit
10d4966810
10
Makefile
10
Makefile
@ -31,6 +31,7 @@ IMAGE_NAME := maas-rack-controller maas-region-controller sstream-cache
|
|||||||
BUILD_DIR := $(shell mktemp -d)
|
BUILD_DIR := $(shell mktemp -d)
|
||||||
HELM := $(BUILD_DIR)/helm
|
HELM := $(BUILD_DIR)/helm
|
||||||
SSTREAM_IMAGE := "https://images.maas.io/ephemeral-v3/daily/"
|
SSTREAM_IMAGE := "https://images.maas.io/ephemeral-v3/daily/"
|
||||||
|
UBUNTU_BASE_IMAGE ?= ubuntu:16.04
|
||||||
|
|
||||||
.PHONY: images
|
.PHONY: images
|
||||||
#Build all images in the list
|
#Build all images in the list
|
||||||
@ -66,16 +67,21 @@ helm-install:
|
|||||||
.PHONY: build
|
.PHONY: build
|
||||||
build:
|
build:
|
||||||
ifeq ($(USE_PROXY), true)
|
ifeq ($(USE_PROXY), true)
|
||||||
docker build -t $(IMAGE) --network=host --label $(LABEL) -f $(IMAGE_DIR)/Dockerfile --build-arg SSTREAM_IMAGE=$(SSTREAM_IMAGE) \
|
docker build -t $(IMAGE) --network=host --label $(LABEL) -f $(IMAGE_DIR)/Dockerfile \
|
||||||
|
--build-arg FROM=$(UBUNTU_BASE_IMAGE) \
|
||||||
--build-arg http_proxy=$(PROXY) \
|
--build-arg http_proxy=$(PROXY) \
|
||||||
--build-arg https_proxy=$(PROXY) \
|
--build-arg https_proxy=$(PROXY) \
|
||||||
--build-arg HTTP_PROXY=$(PROXY) \
|
--build-arg HTTP_PROXY=$(PROXY) \
|
||||||
--build-arg HTTPS_PROXY=$(PROXY) \
|
--build-arg HTTPS_PROXY=$(PROXY) \
|
||||||
--build-arg no_proxy=$(NO_PROXY) \
|
--build-arg no_proxy=$(NO_PROXY) \
|
||||||
--build-arg NO_PROXY=$(NO_PROXY) \
|
--build-arg NO_PROXY=$(NO_PROXY) \
|
||||||
|
--build-arg SSTREAM_IMAGE=$(SSTREAM_IMAGE) \
|
||||||
$(IMAGE_DIR)
|
$(IMAGE_DIR)
|
||||||
else
|
else
|
||||||
docker build -t $(IMAGE) --network=host --label $(LABEL) --build-arg SSTREAM_IMAGE=$(SSTREAM_IMAGE) -f $(IMAGE_DIR)/Dockerfile $(IMAGE_DIR)
|
docker build -t $(IMAGE) --network=host --label $(LABEL) -f $(IMAGE_DIR)/Dockerfile \
|
||||||
|
--build-arg FROM=$(UBUNTU_BASE_IMAGE) \
|
||||||
|
--build-arg SSTREAM_IMAGE=$(SSTREAM_IMAGE) \
|
||||||
|
$(IMAGE_DIR)
|
||||||
endif
|
endif
|
||||||
ifeq ($(PUSH_IMAGE), true)
|
ifeq ($(PUSH_IMAGE), true)
|
||||||
docker push $(IMAGE)
|
docker push $(IMAGE)
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
FROM ubuntu:16.04
|
ARG FROM=ubuntu:16.04
|
||||||
|
FROM ${FROM}
|
||||||
|
|
||||||
ENV DEBIAN_FRONTEND noninteractive
|
ENV DEBIAN_FRONTEND noninteractive
|
||||||
ENV container docker
|
ENV container docker
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
FROM ubuntu:16.04
|
ARG FROM=ubuntu:16.04
|
||||||
|
FROM ${FROM}
|
||||||
|
|
||||||
ENV DEBIAN_FRONTEND noninteractive
|
ENV DEBIAN_FRONTEND noninteractive
|
||||||
ENV container docker
|
ENV container docker
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
FROM ubuntu:16.04
|
ARG FROM=ubuntu:16.04
|
||||||
|
FROM ${FROM}
|
||||||
|
|
||||||
ARG SSTREAM_IMAGE=https://images.maas.io/ephemeral-v3/daily/
|
ARG SSTREAM_IMAGE=https://images.maas.io/ephemeral-v3/daily/
|
||||||
ENV IMAGE_SRC ${SSTREAM_IMAGE}
|
ENV IMAGE_SRC ${SSTREAM_IMAGE}
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
|
|
||||||
- hosts: primary
|
- hosts: primary
|
||||||
tasks:
|
tasks:
|
||||||
|
- include_vars: vars.yaml
|
||||||
|
|
||||||
- name: Debug tag generation inputs
|
- name: Debug tag generation inputs
|
||||||
block:
|
block:
|
||||||
- debug:
|
- debug:
|
||||||
@ -39,16 +41,47 @@
|
|||||||
var: image_tags
|
var: image_tags
|
||||||
|
|
||||||
- name: Install Docker (Debian)
|
- name: Install Docker (Debian)
|
||||||
|
when: ansible_os_family == 'Debian'
|
||||||
block:
|
block:
|
||||||
|
- file:
|
||||||
|
path: "{{ item }}"
|
||||||
|
state: directory
|
||||||
|
with_items:
|
||||||
|
- /etc/docker/
|
||||||
|
- /etc/systemd/system/docker.service.d/
|
||||||
|
- /var/lib/docker/
|
||||||
|
- mount:
|
||||||
|
path: /var/lib/docker/
|
||||||
|
src: tmpfs
|
||||||
|
fstype: tmpfs
|
||||||
|
opts: size=25g
|
||||||
|
state: mounted
|
||||||
|
- copy: "{{ item }}"
|
||||||
|
with_items:
|
||||||
|
- content: "{{ docker_daemon | to_json }}"
|
||||||
|
dest: /etc/docker/daemon.json
|
||||||
|
- src: files/docker-systemd.conf
|
||||||
|
dest: /etc/systemd/system/docker.service.d/
|
||||||
|
- apt_key:
|
||||||
|
url: https://download.docker.com/linux/ubuntu/gpg
|
||||||
|
- apt_repository:
|
||||||
|
repo: deb http://{{ zuul_site_mirror_fqdn }}/deb-docker xenial stable
|
||||||
- apt:
|
- apt:
|
||||||
name: "{{ item }}"
|
name: "{{ item }}"
|
||||||
|
allow_unauthenticated: True
|
||||||
with_items:
|
with_items:
|
||||||
- docker.io
|
- docker-ce
|
||||||
- python-pip
|
- python-pip
|
||||||
when: ansible_os_family == 'Debian'
|
|
||||||
- pip:
|
- pip:
|
||||||
name: docker
|
name: docker
|
||||||
version: 2.7.0
|
version: 2.7.0
|
||||||
|
# NOTE(SamYaple): Allow all connections from containers to host so the
|
||||||
|
# containers can access the http server for git and wheels
|
||||||
|
- iptables:
|
||||||
|
action: insert
|
||||||
|
chain: INPUT
|
||||||
|
in_interface: docker0
|
||||||
|
jump: ACCEPT
|
||||||
become: True
|
become: True
|
||||||
|
|
||||||
- name: Make images
|
- name: Make images
|
||||||
|
8
tools/gate/playbooks/files/docker-systemd.conf
Normal file
8
tools/gate/playbooks/files/docker-systemd.conf
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
# NOTE(SamYaple): CentOS cannot be build with userns-remap enabled. httpd uses
|
||||||
|
# cap_set_file capability and there is no way to pass that in at build as of
|
||||||
|
# docker 17.06.
|
||||||
|
# TODO(SamYaple): Periodically check to see if this is possible in newer
|
||||||
|
# versions of Docker
|
||||||
|
[Service]
|
||||||
|
ExecStart=
|
||||||
|
ExecStart=/usr/bin/dockerd
|
20
tools/gate/playbooks/vars.yaml
Normal file
20
tools/gate/playbooks/vars.yaml
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
# Copyright 2017 The Openstack-Helm Authors.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
|
docker_daemon:
|
||||||
|
group: zuul
|
||||||
|
registry-mirrors:
|
||||||
|
- "http://{{ zuul_site_mirror_fqdn }}:8082/"
|
||||||
|
storage-driver: overlay2
|
||||||
|
debug: True
|
Loading…
Reference in New Issue
Block a user