Compare commits

..

5 commits

Author SHA1 Message Date
Bhavin Gandhi
5be7e79dfb 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:56:52 +05:30
Jason Brooks
5f52fb6c31 fix uid/gid, make launch.sh executable 2017-11-28 13:03:17 -08:00
Jason Brooks
9eb014322d build from f27 2017-07-06 14:04:46 -07:00
Jason Brooks
4879f443fc fix BZComponent capitalization 2017-07-06 13:12:53 -07:00
Jason Brooks
ed26056c06 initial commit 2017-07-06 12:38:19 -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-scheduler VERSION=0 RELEASE=5 ARCH=x86_64
ENV NAME=kubernetes-scheduler 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/scheduler
source /etc/kubernetes/config
ARGS="$@ $KUBE_LOGTOSTDERR $KUBE_LOG_LEVEL $KUBE_MASTER $KUBE_SCHEDULER_ARGS"
ARGS=$(echo "$@ $KUBE_LOGTOSTDERR $KUBE_LOG_LEVEL $KUBE_MASTER $KUBE_SCHEDULER_ARGS" | xargs -n1 | sort -u -t = -k 1,1 | xargs)
exec /usr/bin/kube-scheduler $ARGS