Compare commits

..

8 commits

Author SHA1 Message Date
Bhavin Gandhi
ca8e0e2c97 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-23 23:03:06 +05:30
Jason Brooks
f5ffaecff4 revert 2018-03-20 12:55:47 -07:00
Jason Brooks
228f8cf8bb from f28 2018-03-20 12:55:06 -07:00
Jason Brooks
8ba1a699d7 fix uid/gid, make launch script executable 2017-11-28 12:56:03 -08:00
Jason Brooks
e0a5a8c8c9 don't sort args 2017-07-24 18:14:30 -07:00
Jason Brooks
62d3628bae build from f27 2017-07-06 13:59:39 -07:00
Jason Brooks
2a156f42e9 fix BZComponent capitalization 2017-07-06 13:02:17 -07:00
Jason Brooks
3663f9680f initial commit 2017-07-06 12:29:55 -07:00
2 changed files with 3 additions and 4 deletions

View file

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

View file

@ -3,6 +3,6 @@
source /etc/kubernetes/controller-manager
source /etc/kubernetes/config
ARGS=$(echo "$@ $KUBE_LOGTOSTDERR $KUBE_LOG_LEVEL $KUBE_MASTER $KUBE_CONTROLLER_MANAGER_ARGS" | xargs -n1 | sort -u -t = -k 1,1 | xargs)
ARGS="$@ $KUBE_LOGTOSTDERR $KUBE_LOG_LEVEL $KUBE_MASTER $KUBE_CONTROLLER_MANAGER_ARGS"
exec /usr/bin/kube-controller-manager $ARGS