From 07c214246afd72ac6f370c63d5549904ecf8622b Mon Sep 17 00:00:00 2001 From: Jason Brooks Date: Wed, 1 Nov 2017 14:40:13 -0700 Subject: [PATCH 01/16] set FROM for 27, set version to 0 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 618c672..359ccd7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ MAINTAINER "Jason Brooks" ENV container=docker -ENV NAME=kubernetes-proxy VERSION=0 RELEASE=8 ARCH=x86_64 +ENV NAME=kubernetes-proxy VERSION=0 RELEASE=1 ARCH=x86_64 LABEL BZComponent="$NAME" \ name="$FGC/$NAME" \ version="$VERSION" \ From 7a590e0f1fb2c80cc627ac6eb2c0e39643d9adaf Mon Sep 17 00:00:00 2001 From: Adam Miller Date: Tue, 14 Nov 2017 17:35:53 -0600 Subject: [PATCH 02/16] Bump RELEASE for automatic rebuild --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 359ccd7..8ae9057 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ MAINTAINER "Jason Brooks" ENV container=docker -ENV NAME=kubernetes-proxy VERSION=0 RELEASE=1 ARCH=x86_64 +ENV NAME=kubernetes-proxy VERSION=0 RELEASE=2 ARCH=x86_64 LABEL BZComponent="$NAME" \ name="$FGC/$NAME" \ version="$VERSION" \ From dd6638d068a86d610eb93f26edc52d4bb295d170 Mon Sep 17 00:00:00 2001 From: Jason Brooks Date: Mon, 27 Nov 2017 17:21:57 -0800 Subject: [PATCH 03/16] make run script executable, fix uid/gid --- Dockerfile | 2 +- config.json.template | 4 ++-- launch.sh | 0 3 files changed, 3 insertions(+), 3 deletions(-) mode change 100644 => 100755 launch.sh diff --git a/Dockerfile b/Dockerfile index 8ae9057..a36a798 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ MAINTAINER "Jason Brooks" ENV container=docker -ENV NAME=kubernetes-proxy VERSION=0 RELEASE=2 ARCH=x86_64 +ENV NAME=kubernetes-proxy VERSION=0 RELEASE=3 ARCH=x86_64 LABEL BZComponent="$NAME" \ name="$FGC/$NAME" \ version="$VERSION" \ diff --git a/config.json.template b/config.json.template index 5084c9b..a4d7a0c 100644 --- a/config.json.template +++ b/config.json.template @@ -7,8 +7,8 @@ "process": { "terminal": false, "user": { - "uid": 994, - "gid": 996 + "uid": 996, + "gid": 994 }, "args": [ "/usr/bin/kube-proxy-docker.sh" diff --git a/launch.sh b/launch.sh old mode 100644 new mode 100755 From 0ec47c4ca66eef1a8155f4ffecb9f56467c60991 Mon Sep 17 00:00:00 2001 From: Jason Brooks Date: Mon, 18 Dec 2017 13:05:09 -0800 Subject: [PATCH 04/16] bind mount /run rw --- config.json.template | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/config.json.template b/config.json.template index a4d7a0c..b63aab6 100644 --- a/config.json.template +++ b/config.json.template @@ -320,6 +320,16 @@ "rbind", "rprivate" ] + }, + { + "type": "bind", + "source": "/run", + "destination": "/run", + "options": [ + "rbind", + "rw", + "mode=755" + ] } ], "linux": { From 10c6feba7b83c621fa9c4adc6889a56682beac62 Mon Sep 17 00:00:00 2001 From: Jason Brooks Date: Mon, 18 Dec 2017 13:06:02 -0800 Subject: [PATCH 05/16] bump release --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a36a798..8ee5968 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ MAINTAINER "Jason Brooks" ENV container=docker -ENV NAME=kubernetes-proxy VERSION=0 RELEASE=3 ARCH=x86_64 +ENV NAME=kubernetes-proxy VERSION=0 RELEASE=4 ARCH=x86_64 LABEL BZComponent="$NAME" \ name="$FGC/$NAME" \ version="$VERSION" \ From 1591e1c62d84e2328fe24b7e53797cf4347e9613 Mon Sep 17 00:00:00 2001 From: Jason Brooks Date: Tue, 19 Dec 2017 11:36:51 -0800 Subject: [PATCH 06/16] run kube-proxy as root --- config.json.template | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/config.json.template b/config.json.template index b63aab6..da4b79b 100644 --- a/config.json.template +++ b/config.json.template @@ -6,10 +6,7 @@ }, "process": { "terminal": false, - "user": { - "uid": 996, - "gid": 994 - }, + "user": {}, "args": [ "/usr/bin/kube-proxy-docker.sh" ], From 4a849b2dc72d6a02636a2a2f639ab89befd4dd54 Mon Sep 17 00:00:00 2001 From: Jason Brooks Date: Tue, 19 Dec 2017 11:37:14 -0800 Subject: [PATCH 07/16] bump release --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8ee5968..f972859 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ MAINTAINER "Jason Brooks" ENV container=docker -ENV NAME=kubernetes-proxy VERSION=0 RELEASE=4 ARCH=x86_64 +ENV NAME=kubernetes-proxy VERSION=0 RELEASE=5 ARCH=x86_64 LABEL BZComponent="$NAME" \ name="$FGC/$NAME" \ version="$VERSION" \ From e1d1299fcce716ed2f9d06620f6c9583c00786a6 Mon Sep 17 00:00:00 2001 From: Mohan Boddu Date: Tue, 9 Jan 2018 15:43:09 +0000 Subject: [PATCH 08/16] "Bump RELEASE for automatic rebuild" --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f972859..33677a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ MAINTAINER "Jason Brooks" ENV container=docker -ENV NAME=kubernetes-proxy VERSION=0 RELEASE=5 ARCH=x86_64 +ENV NAME=kubernetes-proxy VERSION=0 RELEASE=6 ARCH=x86_64 LABEL BZComponent="$NAME" \ name="$FGC/$NAME" \ version="$VERSION" \ From 971f171f4e7fc5b872cebf98bb97d4e8c407526d Mon Sep 17 00:00:00 2001 From: Mohan Boddu Date: Wed, 10 Jan 2018 13:57:10 +0000 Subject: [PATCH 09/16] "Bump RELEASE for automatic rebuild" --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 33677a5..56f3d1b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ MAINTAINER "Jason Brooks" ENV container=docker -ENV NAME=kubernetes-proxy VERSION=0 RELEASE=6 ARCH=x86_64 +ENV NAME=kubernetes-proxy VERSION=0 RELEASE=7 ARCH=x86_64 LABEL BZComponent="$NAME" \ name="$FGC/$NAME" \ version="$VERSION" \ From 4dc72e04aec9f24fc74b0b7aebcf0579d246738d Mon Sep 17 00:00:00 2001 From: Mohan Boddu Date: Thu, 1 Mar 2018 17:20:19 +0000 Subject: [PATCH 10/16] "Bump RELEASE for automatic rebuild" --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 56f3d1b..618c672 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ MAINTAINER "Jason Brooks" ENV container=docker -ENV NAME=kubernetes-proxy VERSION=0 RELEASE=7 ARCH=x86_64 +ENV NAME=kubernetes-proxy VERSION=0 RELEASE=8 ARCH=x86_64 LABEL BZComponent="$NAME" \ name="$FGC/$NAME" \ version="$VERSION" \ From bb048568697899a90012ba6359d0592c00cbbd91 Mon Sep 17 00:00:00 2001 From: Mohan Boddu Date: Thu, 1 Mar 2018 19:11:40 +0000 Subject: [PATCH 11/16] "Bump RELEASE for automatic rebuild" --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 618c672..47968da 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ MAINTAINER "Jason Brooks" ENV container=docker -ENV NAME=kubernetes-proxy VERSION=0 RELEASE=8 ARCH=x86_64 +ENV NAME=kubernetes-proxy VERSION=0 RELEASE=9 ARCH=x86_64 LABEL BZComponent="$NAME" \ name="$FGC/$NAME" \ version="$VERSION" \ From f189285e83a746e0ec948429085a2fcd5b9c2740 Mon Sep 17 00:00:00 2001 From: Mohan Boddu Date: Thu, 15 Mar 2018 15:46:28 +0000 Subject: [PATCH 12/16] "Bump RELEASE for automatic rebuild" --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 47968da..c3e7874 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ MAINTAINER "Jason Brooks" ENV container=docker -ENV NAME=kubernetes-proxy VERSION=0 RELEASE=9 ARCH=x86_64 +ENV NAME=kubernetes-proxy VERSION=0 RELEASE=10 ARCH=x86_64 LABEL BZComponent="$NAME" \ name="$FGC/$NAME" \ version="$VERSION" \ From 4e3646d3b65b3f66c65126421bfc3e3926080fe2 Mon Sep 17 00:00:00 2001 From: Mohan Boddu Date: Thu, 29 Mar 2018 15:02:00 +0000 Subject: [PATCH 13/16] "Bump RELEASE for automatic rebuild" --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c3e7874..87fe6cf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ MAINTAINER "Jason Brooks" ENV container=docker -ENV NAME=kubernetes-proxy VERSION=0 RELEASE=10 ARCH=x86_64 +ENV NAME=kubernetes-proxy VERSION=0 RELEASE=11 ARCH=x86_64 LABEL BZComponent="$NAME" \ name="$FGC/$NAME" \ version="$VERSION" \ From 31d883ff694dfd08513db994a628df40392c349a Mon Sep 17 00:00:00 2001 From: Mohan Boddu Date: Fri, 20 Apr 2018 14:51:58 +0000 Subject: [PATCH 14/16] "Bump RELEASE for automatic rebuild" --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 87fe6cf..bc7606f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ MAINTAINER "Jason Brooks" ENV container=docker -ENV NAME=kubernetes-proxy VERSION=0 RELEASE=11 ARCH=x86_64 +ENV NAME=kubernetes-proxy VERSION=0 RELEASE=12 ARCH=x86_64 LABEL BZComponent="$NAME" \ name="$FGC/$NAME" \ version="$VERSION" \ From 3dadc28b538538f8c800e7315cf13303c7e3a295 Mon Sep 17 00:00:00 2001 From: Mohan Boddu Date: Mon, 21 May 2018 16:21:11 +0000 Subject: [PATCH 15/16] "Bump RELEASE for automatic rebuild" --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bc7606f..efc0f2f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ MAINTAINER "Jason Brooks" ENV container=docker -ENV NAME=kubernetes-proxy VERSION=0 RELEASE=12 ARCH=x86_64 +ENV NAME=kubernetes-proxy VERSION=0 RELEASE=13 ARCH=x86_64 LABEL BZComponent="$NAME" \ name="$FGC/$NAME" \ version="$VERSION" \ From 8cec681ef03b668c33c28f06a7674d45e9c54dcf Mon Sep 17 00:00:00 2001 From: Mohan Boddu Date: Tue, 17 Jul 2018 20:11:39 +0000 Subject: [PATCH 16/16] "Bump RELEASE for automatic rebuild" --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index efc0f2f..d2cd3d4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ MAINTAINER "Jason Brooks" ENV container=docker -ENV NAME=kubernetes-proxy VERSION=0 RELEASE=13 ARCH=x86_64 +ENV NAME=kubernetes-proxy VERSION=0 RELEASE=14 ARCH=x86_64 LABEL BZComponent="$NAME" \ name="$FGC/$NAME" \ version="$VERSION" \