From 5fc39e2897d4de9e7e8c8a84c15101f1596da24b Mon Sep 17 00:00:00 2001 From: Jakub Čajka Date: Jan 19 2019 14:59:46 +0000 Subject: Initial commit --- diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..60c8a9c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,24 @@ +# +# This is the F5 router for OpenShift Origin. +# +# The standard name for this image is openshift/origin-f5-router +# +FROM registry.fedoraproject.org/f29/origin-cli:latest + +ENV NAME=origin-f5-router \ + VERSION=3.11 \ + ARCH=x86_64 + +LABEL io.k8s.display-name="OpenShift Origin F5 Router" \ + io.k8s.description="This is a component of OpenShift Origin and programs a BigIP F5 router to expose services within the cluster." \ + io.openshift.tags="openshift,router,f5" \ + summary="This is a component of OpenShift Origin and programs a BigIP F5 router to expose services within the cluster." \ + maintainer="Jakub Cajka " \ + License="GPLv2+" \ + name="$FGC/$NAME" \ + com.redhat.component="$NAME" \ + version="$VERSION" \ + architecture="$ARCH" \ + usage="This is a component of OpenShift Origin and programs a BigIP F5 router to expose services within the cluster." + +ENTRYPOINT ["/usr/bin/openshift-f5-router"]