From f43c4df792579d7560576ca2567879792e339268 Mon Sep 17 00:00:00 2001 From: yuqi-zhang Date: Thu, 23 Feb 2017 16:11:17 -0500 Subject: [PATCH 01/15] Initial import (#1421858). --- Dockerfile | 23 +++++ README.md | 52 +++++++++++ config.json.template | 210 +++++++++++++++++++++++++++++++++++++++++++ flanneld-run.sh | 20 +++++ manifest.json | 10 +++ service.template | 20 +++++ tmpfiles.template | 3 + 7 files changed, 338 insertions(+) create mode 100644 Dockerfile create mode 100644 README.md create mode 100644 config.json.template create mode 100755 flanneld-run.sh create mode 100644 manifest.json create mode 100644 service.template create mode 100644 tmpfiles.template diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..3f72620 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,23 @@ +FROM fedora:25 + +ENV container=docker FLANNELD_ETCD_ENDPOINTS="http://127.0.0.1:2379" FLANNELD_ETCD_PREFIX="/atomic.io/network" + +ENV VERSION=0.1 RELEASE=2 ARCH=x86_64 +LABEL BZComponent="flannel" \ + Name="$FGC/flannel" \ + Version="$VERSION" \ + Release="$RELEASE.$DISTTAG" \ + Architecture="$ARCH" \ + Summary="An etcd driven address agent, intended to be run as a system container" \ + maintainer="Giuseppe Scrivano " \ + atomic.type='system' + +RUN dnf -y --setopt=tsflags=nodocs install flannel && dnf clean all + +ADD flanneld-run.sh /usr/bin/ + +# System container files +COPY tmpfiles.template service.template manifest.json \ + config.json.template /exports/ + +CMD ["/usr/bin/flanneld-run.sh"] diff --git a/README.md b/README.md new file mode 100644 index 0000000..fb6dbd4 --- /dev/null +++ b/README.md @@ -0,0 +1,52 @@ +# flannel-container + +This container image is intended to be run as a system container +with the atomic command line. + +Building flannel container for fedora and atomic host: + +``` +# git clone https://github.com/projectatomic/atomic-system-containers +# cd atomic-system-containers/flannel +# docker build -t flannel . +``` + +**Running as system container, with the atomic CLI:** + +Prerequisite: + +1. etcd must be running + +2. a network is configured in etcd + +(example with etcd installed as a system container: `runc exec etcd etcdctl set /atomic.io/network/config '{"Network":"172.17.0.0/16"}'`) + +Pull from local docker into ostree: + +``` +#atomic pull --storage ostree docker:flannel +``` + +Install the container: + +``` +#atomic install --system flannel +``` + +Start as a systemd service: + +``` +#systemctl start flannel +``` + +Stopping the service + +``` +#systemctl stop flannel +``` + +Removing the container + +``` +#atomic uninstall flannel +``` diff --git a/config.json.template b/config.json.template new file mode 100644 index 0000000..457dfd6 --- /dev/null +++ b/config.json.template @@ -0,0 +1,210 @@ +{ + "ociVersion": "0.5.0", + "platform": { + "os": "linux", + "arch": "amd64" + }, + "process": { + "terminal": false, + "user": {}, + "args": [ + "/usr/bin/flanneld-run.sh" + ], + "env": [ + "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", + "FLANNELD_ETCD_PREFIX=$FLANNELD_ETCD_PREFIX", + "FLANNELD_ETCD_ENDPOINTS=$FLANNELD_ETCD_ENDPOINTS", + "TERM=xterm", + "NAME=$NAME" + ], + "cwd": "/", + "capabilities": [ + "CAP_FOWNER", + "CAP_FSETID", + "CAP_KILL", + "CAP_SETGID", + "CAP_SETUID", + "CAP_SETPCAP", + "CAP_LINUX_IMMUTABLE", + "CAP_NET_BIND_SERVICE", + "CAP_NET_BROADCAST", + "CAP_NET_ADMIN", + "CAP_NET_RAW", + "CAP_IPC_LOCK", + "CAP_IPC_OWNER", + "CAP_SYS_MODULE", + "CAP_SYS_RAWIO", + "CAP_SYS_CHROOT", + "CAP_SYS_PTRACE", + "CAP_SYS_PACCT", + "CAP_SYS_ADMIN", + "CAP_SYS_BOOT", + "CAP_SYS_NICE", + "CAP_SYS_RESOURCE", + "CAP_SYS_TIME", + "CAP_SYS_TTY_CONFIG", + "CAP_MKNOD", + "CAP_LEASE", + "CAP_AUDIT_WRITE", + "CAP_AUDIT_CONTROL", + "CAP_SETFCAP", + "CAP_MAC_OVERRIDE", + "CAP_MAC_ADMIN", + "CAP_SYSLOG", + "CAP_WAKE_ALARM", + "CAP_BLOCK_SUSPEND" + ], + "rlimits": [ + { + "type": "RLIMIT_NOFILE", + "hard": 1024, + "soft": 1024 + } + ], + "noNewPrivileges": false + }, + "root": { + "path": "rootfs", + "readonly": true + }, + "hostname": "flannel", + "mounts": [ + { + "destination": "/proc", + "type": "proc", + "source": "proc" + }, + { + "type": "bind", + "source": "/dev", + "destination": "/dev", + "options": [ + "rbind", + "rw", + "mode=755" + ] + }, + { + "destination": "/dev/pts", + "type": "devpts", + "source": "devpts", + "options": [ + "nosuid", + "noexec", + "newinstance", + "ptmxmode=0666", + "mode=0620", + "gid=5" + ] + }, + { + "destination": "/dev/shm", + "type": "tmpfs", + "source": "shm", + "options": [ + "nosuid", + "noexec", + "nodev", + "mode=1777", + "size=65536k" + ] + }, + { + "destination": "/dev/mqueue", + "type": "mqueue", + "source": "mqueue", + "options": [ + "nosuid", + "noexec", + "nodev" + ] + }, + { + "destination": "/sys", + "type": "sysfs", + "source": "sysfs", + "options": [ + "nosuid", + "noexec", + "nodev", + "ro" + ] + }, + { + "destination": "/sys/fs/cgroup", + "type": "cgroup", + "source": "cgroup", + "options": [ + "nosuid", + "noexec", + "nodev", + "relatime", + "ro" + ] + }, + { + "type": "bind", + "source": "/etc/systemd/system/docker.service.d", + "destination": "/etc/systemd/system/docker.service.d", + "options": [ + "rbind", + "rw", + "mode=755" + ] + }, + { + "source": "${RUN_DIRECTORY}/${NAME}", + "destination": "/run/flannel", + "type": "bind", + "options": [ + "rw", + "rbind", + "rprivate" + ] + }, + { + "destination": "/etc/resolv.conf", + "type": "bind", + "source": "/etc/resolv.conf", + "options": [ + "ro", + "rbind", + "rprivate" + ] + } + ], + "hooks": {}, + "linux": { + "resources": { + "devices": [ + { + "allow": false, + "access": "rwm" + } + ] + }, + "namespaces": [ + { + "type": "ipc" + }, + { + "type": "uts" + }, + { + "type": "mount" + } + ], + "maskedPaths": [ + "/proc/kcore", + "/proc/latency_stats", + "/proc/timer_stats", + "/proc/sched_debug" + ], + "readonlyPaths": [ + "/proc/asound", + "/proc/bus", + "/proc/irq", + "/proc/sysrq-trigger" + ] + } +} diff --git a/flanneld-run.sh b/flanneld-run.sh new file mode 100755 index 0000000..5303a90 --- /dev/null +++ b/flanneld-run.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +# Create flannel.conf for docker service +echo "[Service]" > /etc/systemd/system/docker.service.d/$NAME.conf +echo "EnvironmentFile=-/run/$NAME/docker" >> /etc/systemd/system/docker.service.d/$NAME.conf + +# Ensure this file doesn't already exist. +rm -f run/flannel/subnet.env + +/usr/bin/flanneld & +child=$! + +while test \! -e /run/flannel/subnet.env +do + sleep 0.1 +done + +/usr/libexec/flannel/mk-docker-opts.sh -k DOCKER_NETWORK_OPTIONS -d /run/flannel/docker + +wait $child diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..816c24e --- /dev/null +++ b/manifest.json @@ -0,0 +1,10 @@ +{ + "version": "1.0", + "defaultValues": { + "FLANNELD_ETCD_PREFIX": "/atomic.io/network", + "FLANNELD_ETCD_ENDPOINTS": "http://127.0.0.1:2379", + "AFTER": "etcd.service", + "REQUIRED_BY": "docker.service" + } +} + diff --git a/service.template b/service.template new file mode 100644 index 0000000..d25dc8c --- /dev/null +++ b/service.template @@ -0,0 +1,20 @@ +[Unit] +Description=Flanneld overlay address etcd agent +After=network.target +After=network-online.target +Wants=network-online.target +After=$AFTER +Before=docker.service + +[Service] +ExecStart=$EXEC_START +ExecStop=$EXEC_STOP +ExecStartPost=/usr/bin/sh -c "while test \! -s ${RUN_DIRECTORY}/${NAME}/docker; do sleep 0.1; done" +ExecStopPost=/bin/rm /etc/systemd/system/docker.service.d/$NAME.conf +Restart=on-failure +WorkingDirectory=$DESTDIR +RuntimeDirectory=${NAME} + +[Install] +WantedBy=multi-user.target +RequiredBy=$REQUIRED_BY diff --git a/tmpfiles.template b/tmpfiles.template new file mode 100644 index 0000000..77acbd8 --- /dev/null +++ b/tmpfiles.template @@ -0,0 +1,3 @@ +D ${RUN_DIRECTORY}/${NAME} - - - - - +d /etc/systemd/system/docker.service.d - - - - - +r /etc/systemd/system/docker.service.d/$NAME.conf - - - - - From 97b49284bd2e4eff56a4b64e25a81397c1756bee Mon Sep 17 00:00:00 2001 From: Adam Miller Date: Thu, 2 Mar 2017 20:22:04 -0600 Subject: [PATCH 02/15] Bump RELEASE for automatic rebuild --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3f72620..7d81a6d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM fedora:25 ENV container=docker FLANNELD_ETCD_ENDPOINTS="http://127.0.0.1:2379" FLANNELD_ETCD_PREFIX="/atomic.io/network" -ENV VERSION=0.1 RELEASE=2 ARCH=x86_64 +ENV VERSION=0.1 RELEASE=3 ARCH=x86_64 LABEL BZComponent="flannel" \ Name="$FGC/flannel" \ Version="$VERSION" \ From ec89b478e931885fd4491c669aea161b12db5c5e Mon Sep 17 00:00:00 2001 From: Adam Miller Date: Wed, 15 Mar 2017 16:50:33 -0500 Subject: [PATCH 03/15] Bump RELEASE for automatic rebuild --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7d81a6d..0d134db 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM fedora:25 ENV container=docker FLANNELD_ETCD_ENDPOINTS="http://127.0.0.1:2379" FLANNELD_ETCD_PREFIX="/atomic.io/network" -ENV VERSION=0.1 RELEASE=3 ARCH=x86_64 +ENV VERSION=0.1 RELEASE=4 ARCH=x86_64 LABEL BZComponent="flannel" \ Name="$FGC/flannel" \ Version="$VERSION" \ From e7255bdcd36ca4234f16d75318fd04eee5a36e57 Mon Sep 17 00:00:00 2001 From: Adam Miller Date: Wed, 15 Mar 2017 17:25:07 -0500 Subject: [PATCH 04/15] Bump RELEASE for automatic rebuild --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0d134db..a211e86 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM fedora:25 ENV container=docker FLANNELD_ETCD_ENDPOINTS="http://127.0.0.1:2379" FLANNELD_ETCD_PREFIX="/atomic.io/network" -ENV VERSION=0.1 RELEASE=4 ARCH=x86_64 +ENV VERSION=0.1 RELEASE=5 ARCH=x86_64 LABEL BZComponent="flannel" \ Name="$FGC/flannel" \ Version="$VERSION" \ From 21393396cfe2b2e17d69be3f6e60be2e83a97f63 Mon Sep 17 00:00:00 2001 From: Adam Miller Date: Wed, 29 Mar 2017 15:18:07 -0500 Subject: [PATCH 05/15] Bump RELEASE for automatic rebuild --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a211e86..6df05b0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM fedora:25 ENV container=docker FLANNELD_ETCD_ENDPOINTS="http://127.0.0.1:2379" FLANNELD_ETCD_PREFIX="/atomic.io/network" -ENV VERSION=0.1 RELEASE=5 ARCH=x86_64 +ENV VERSION=0.1 RELEASE=6 ARCH=x86_64 LABEL BZComponent="flannel" \ Name="$FGC/flannel" \ Version="$VERSION" \ From a3b0fc721b170a318b8cd3197214fcffa00ea11d Mon Sep 17 00:00:00 2001 From: Adam Miller Date: Wed, 29 Mar 2017 22:39:28 -0500 Subject: [PATCH 06/15] Bump RELEASE for automatic rebuild --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6df05b0..0cdf50b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM fedora:25 ENV container=docker FLANNELD_ETCD_ENDPOINTS="http://127.0.0.1:2379" FLANNELD_ETCD_PREFIX="/atomic.io/network" -ENV VERSION=0.1 RELEASE=6 ARCH=x86_64 +ENV VERSION=0.1 RELEASE=7 ARCH=x86_64 LABEL BZComponent="flannel" \ Name="$FGC/flannel" \ Version="$VERSION" \ From 03238a41a4989b70b7b089fb5236b795055b9bf5 Mon Sep 17 00:00:00 2001 From: Adam Miller Date: Thu, 20 Apr 2017 21:34:16 -0500 Subject: [PATCH 07/15] Bump RELEASE for automatic rebuild --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0cdf50b..58167c9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM fedora:25 ENV container=docker FLANNELD_ETCD_ENDPOINTS="http://127.0.0.1:2379" FLANNELD_ETCD_PREFIX="/atomic.io/network" -ENV VERSION=0.1 RELEASE=7 ARCH=x86_64 +ENV VERSION=0.1 RELEASE=8 ARCH=x86_64 LABEL BZComponent="flannel" \ Name="$FGC/flannel" \ Version="$VERSION" \ From 9ef58561a9dbcf1222fc96f78686154acfa6d53f Mon Sep 17 00:00:00 2001 From: Adam Miller Date: Tue, 23 May 2017 16:18:03 -0500 Subject: [PATCH 08/15] Bump RELEASE for automatic rebuild --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 58167c9..4822fe3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM fedora:25 ENV container=docker FLANNELD_ETCD_ENDPOINTS="http://127.0.0.1:2379" FLANNELD_ETCD_PREFIX="/atomic.io/network" -ENV VERSION=0.1 RELEASE=8 ARCH=x86_64 +ENV VERSION=0.1 RELEASE=9 ARCH=x86_64 LABEL BZComponent="flannel" \ Name="$FGC/flannel" \ Version="$VERSION" \ From b711d7eaa066bd85541bb180d1f7299cf52d7049 Mon Sep 17 00:00:00 2001 From: yuqi-zhang Date: Tue, 6 Jun 2017 16:55:11 -0400 Subject: [PATCH 09/15] Update various configs Dockerfile: - update labels - use fqn for FROM config.json.template: - update oci version - update capabilities for new runc version service/run.sh - update to use systemd-notify --- Dockerfile | 16 +++++----- config.json.template | 75 ++++++++++++++++++++++---------------------- flanneld-run.sh | 4 ++- service.template | 3 +- 4 files changed, 50 insertions(+), 48 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4822fe3..acae6ef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,14 +1,14 @@ -FROM fedora:25 +FROM registry.fedoraproject.org/fedora:25 ENV container=docker FLANNELD_ETCD_ENDPOINTS="http://127.0.0.1:2379" FLANNELD_ETCD_PREFIX="/atomic.io/network" -ENV VERSION=0.1 RELEASE=9 ARCH=x86_64 -LABEL BZComponent="flannel" \ - Name="$FGC/flannel" \ - Version="$VERSION" \ - Release="$RELEASE.$DISTTAG" \ - Architecture="$ARCH" \ - Summary="An etcd driven address agent, intended to be run as a system container" \ +ENV VERSION=0.1 RELEASE=10 ARCH=x86_64 +LABEL com.redhat.component="flannel" \ + name="$FGC/flannel" \ + version="$VERSION" \ + release="$RELEASE.$DISTTAG" \ + architecture="$ARCH" \ + summary="An etcd driven address agent, intended to be run as a system container" \ maintainer="Giuseppe Scrivano " \ atomic.type='system' diff --git a/config.json.template b/config.json.template index 457dfd6..fa50bcb 100644 --- a/config.json.template +++ b/config.json.template @@ -1,12 +1,15 @@ { - "ociVersion": "0.5.0", + "ociVersion": "1.0.0", "platform": { "os": "linux", "arch": "amd64" }, "process": { "terminal": false, - "user": {}, + "user": { + "uid": 0, + "gid": 0 + }, "args": [ "/usr/bin/flanneld-run.sh" ], @@ -18,42 +21,38 @@ "NAME=$NAME" ], "cwd": "/", - "capabilities": [ - "CAP_FOWNER", - "CAP_FSETID", - "CAP_KILL", - "CAP_SETGID", - "CAP_SETUID", - "CAP_SETPCAP", - "CAP_LINUX_IMMUTABLE", - "CAP_NET_BIND_SERVICE", - "CAP_NET_BROADCAST", - "CAP_NET_ADMIN", - "CAP_NET_RAW", - "CAP_IPC_LOCK", - "CAP_IPC_OWNER", - "CAP_SYS_MODULE", - "CAP_SYS_RAWIO", - "CAP_SYS_CHROOT", - "CAP_SYS_PTRACE", - "CAP_SYS_PACCT", - "CAP_SYS_ADMIN", - "CAP_SYS_BOOT", - "CAP_SYS_NICE", - "CAP_SYS_RESOURCE", - "CAP_SYS_TIME", - "CAP_SYS_TTY_CONFIG", - "CAP_MKNOD", - "CAP_LEASE", - "CAP_AUDIT_WRITE", - "CAP_AUDIT_CONTROL", - "CAP_SETFCAP", - "CAP_MAC_OVERRIDE", - "CAP_MAC_ADMIN", - "CAP_SYSLOG", - "CAP_WAKE_ALARM", - "CAP_BLOCK_SUSPEND" - ], + "capabilities": { + "bounding": [ + "CAP_AUDIT_WRITE", + "CAP_KILL", + "CAP_NET_BIND_SERVICE", + "CAP_NET_ADMIN" + ], + "permitted": [ + "CAP_AUDIT_WRITE", + "CAP_KILL", + "CAP_NET_BIND_SERVICE", + "CAP_NET_ADMIN" + ], + "inheritable": [ + "CAP_AUDIT_WRITE", + "CAP_KILL", + "CAP_NET_BIND_SERVICE", + "CAP_NET_ADMIN" + ], + "effective": [ + "CAP_AUDIT_WRITE", + "CAP_KILL", + "CAP_NET_BIND_SERVICE", + "CAP_NET_ADMIN" + ], + "ambient": [ + "CAP_AUDIT_WRITE", + "CAP_KILL", + "CAP_NET_BIND_SERVICE", + "CAP_NET_ADMIN" + ] + }, "rlimits": [ { "type": "RLIMIT_NOFILE", diff --git a/flanneld-run.sh b/flanneld-run.sh index 5303a90..fbd97e0 100755 --- a/flanneld-run.sh +++ b/flanneld-run.sh @@ -7,7 +7,7 @@ echo "EnvironmentFile=-/run/$NAME/docker" >> /etc/systemd/system/docker.service. # Ensure this file doesn't already exist. rm -f run/flannel/subnet.env -/usr/bin/flanneld & +NOTIFY_SOCKET=/dev/null /usr/bin/flanneld & child=$! while test \! -e /run/flannel/subnet.env @@ -17,4 +17,6 @@ done /usr/libexec/flannel/mk-docker-opts.sh -k DOCKER_NETWORK_OPTIONS -d /run/flannel/docker +systemd-notify --ready + wait $child diff --git a/service.template b/service.template index d25dc8c..b6a2883 100644 --- a/service.template +++ b/service.template @@ -7,9 +7,10 @@ After=$AFTER Before=docker.service [Service] +Type=notify +NotifyAccess=all ExecStart=$EXEC_START ExecStop=$EXEC_STOP -ExecStartPost=/usr/bin/sh -c "while test \! -s ${RUN_DIRECTORY}/${NAME}/docker; do sleep 0.1; done" ExecStopPost=/bin/rm /etc/systemd/system/docker.service.d/$NAME.conf Restart=on-failure WorkingDirectory=$DESTDIR From b51e7bdc319e9780a935e86eb7f4caf46f9634e8 Mon Sep 17 00:00:00 2001 From: Adam Miller Date: Thu, 8 Jun 2017 22:22:11 -0500 Subject: [PATCH 10/15] Bump RELEASE for automatic rebuild --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index acae6ef..079770e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM registry.fedoraproject.org/fedora:25 ENV container=docker FLANNELD_ETCD_ENDPOINTS="http://127.0.0.1:2379" FLANNELD_ETCD_PREFIX="/atomic.io/network" -ENV VERSION=0.1 RELEASE=10 ARCH=x86_64 +ENV VERSION=0.1 RELEASE=11 ARCH=x86_64 LABEL com.redhat.component="flannel" \ name="$FGC/flannel" \ version="$VERSION" \ From 1187bd87a2f7f2857f8c02d7526943f6e7fd74b1 Mon Sep 17 00:00:00 2001 From: Adam Miller Date: Wed, 14 Jun 2017 16:26:32 -0500 Subject: [PATCH 11/15] Bump RELEASE for automatic rebuild --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 079770e..44cd6d9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM registry.fedoraproject.org/fedora:25 ENV container=docker FLANNELD_ETCD_ENDPOINTS="http://127.0.0.1:2379" FLANNELD_ETCD_PREFIX="/atomic.io/network" -ENV VERSION=0.1 RELEASE=11 ARCH=x86_64 +ENV VERSION=0.1 RELEASE=12 ARCH=x86_64 LABEL com.redhat.component="flannel" \ name="$FGC/flannel" \ version="$VERSION" \ From 45cbacde0c3f38bd7282e1ec11f0920898b81138 Mon Sep 17 00:00:00 2001 From: Adam Miller Date: Tue, 27 Jun 2017 10:46:06 -0500 Subject: [PATCH 12/15] Bump RELEASE for automatic rebuild --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 44cd6d9..aa08006 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM registry.fedoraproject.org/fedora:25 ENV container=docker FLANNELD_ETCD_ENDPOINTS="http://127.0.0.1:2379" FLANNELD_ETCD_PREFIX="/atomic.io/network" -ENV VERSION=0.1 RELEASE=12 ARCH=x86_64 +ENV VERSION=0.1 RELEASE=13 ARCH=x86_64 LABEL com.redhat.component="flannel" \ name="$FGC/flannel" \ version="$VERSION" \ From 8d254efd6cd69bfd817e0e37f3397accf2d20464 Mon Sep 17 00:00:00 2001 From: Adam Miller Date: Thu, 6 Jul 2017 14:05:20 -0500 Subject: [PATCH 13/15] Bump RELEASE for automatic rebuild --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index aa08006..98af98f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM registry.fedoraproject.org/fedora:25 ENV container=docker FLANNELD_ETCD_ENDPOINTS="http://127.0.0.1:2379" FLANNELD_ETCD_PREFIX="/atomic.io/network" -ENV VERSION=0.1 RELEASE=13 ARCH=x86_64 +ENV VERSION=0.1 RELEASE=14 ARCH=x86_64 LABEL com.redhat.component="flannel" \ name="$FGC/flannel" \ version="$VERSION" \ From 43012b5e689e768b32d40152796f80e6813e9418 Mon Sep 17 00:00:00 2001 From: Adam Miller Date: Tue, 25 Jul 2017 12:57:37 -0500 Subject: [PATCH 14/15] Bump RELEASE for automatic rebuild --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 98af98f..1b56b66 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM registry.fedoraproject.org/fedora:25 ENV container=docker FLANNELD_ETCD_ENDPOINTS="http://127.0.0.1:2379" FLANNELD_ETCD_PREFIX="/atomic.io/network" -ENV VERSION=0.1 RELEASE=14 ARCH=x86_64 +ENV VERSION=0.1 RELEASE=15 ARCH=x86_64 LABEL com.redhat.component="flannel" \ name="$FGC/flannel" \ version="$VERSION" \ From edc5e6b88dda048057e7399c4905c6f25963dfc2 Mon Sep 17 00:00:00 2001 From: Adam Miller Date: Thu, 21 Sep 2017 10:31:38 -0500 Subject: [PATCH 15/15] Bump RELEASE for automatic rebuild --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1b56b66..47345e5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM registry.fedoraproject.org/fedora:25 ENV container=docker FLANNELD_ETCD_ENDPOINTS="http://127.0.0.1:2379" FLANNELD_ETCD_PREFIX="/atomic.io/network" -ENV VERSION=0.1 RELEASE=15 ARCH=x86_64 +ENV VERSION=0.1 RELEASE=16 ARCH=x86_64 LABEL com.redhat.component="flannel" \ name="$FGC/flannel" \ version="$VERSION" \