Compare commits

...
Sign in to create a new pull request.

5 commits

Author SHA1 Message Date
Bhavin Gandhi
39372cfa57 Drop Release label in favor of OSBS release_bump plugin
OSBS can automatically bump the release number, for that
we just need to drop the label from the Dockerfile

See https://pagure.io/ContainerSIG/container-sig/issue/1

Signed-off-by: Bhavin Gandhi <bhavin7392@gmail.com>
2018-08-26 23:46:41 +05:30
Jason Brooks
ea79d3a69f run proxy as root 2018-03-20 13:28:29 -07:00
Jason Brooks
40655fd376 from f28, run proxy as root 2018-03-20 13:26:37 -07:00
Jason Brooks
593a3f9bdb bind mount /run rw 2017-12-18 13:41:11 -08:00
Jason Brooks
c88de4b530 fix gid/uid, make launch.sh executable 2017-11-28 13:01:13 -08:00
3 changed files with 14 additions and 5 deletions

View file

@ -1,13 +1,12 @@
FROM registry.fedoraproject.org/f27/kubernetes-node:latest
FROM registry.fedoraproject.org/kubernetes-master:rawhide
MAINTAINER "Jason Brooks" <jbrooks@redhat.com>
ENV container=docker
ENV NAME=kubernetes-proxy VERSION=0 RELEASE=8 ARCH=x86_64
ENV NAME=kubernetes-proxy VERSION=0 ARCH=x86_64
LABEL BZComponent="$NAME" \
name="$FGC/$NAME" \
version="$VERSION" \
release="$RELEASE.$DISTTAG" \
architecture="$ARCH" \
atomic.type='system'

View file

@ -7,8 +7,8 @@
"process": {
"terminal": false,
"user": {
"uid": 994,
"gid": 996
"uid": 0,
"gid": 0
},
"args": [
"/usr/bin/kube-proxy-docker.sh"
@ -320,6 +320,16 @@
"rbind",
"rprivate"
]
},
{
"type": "bind",
"source": "/run",
"destination": "/run",
"options": [
"rbind",
"rw",
"mode=755"
]
}
],
"linux": {

0
launch.sh Normal file → Executable file
View file