Compare commits

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

1 commit

Author SHA1 Message Date
Jakub Čajka
5a819a86f6 Initial commit 2019-01-21 16:01:18 +01:00

25
Dockerfile Normal file
View file

@ -0,0 +1,25 @@
#
# This is the default OpenShift Origin persistent volume recycler image.
#
# The standard name for this image is openshift/origin-recycler
#
#
FROM registry.fedoraproject.org/f29/origin-cli:latest
ENV NAME=origin-recycler \
VERSION=3.11 \
ARCH=x86_64
LABEL io.k8s.display-name="OpenShift Origin Volume Recycler" \
io.k8s.description="This is a component of OpenShift Origin and is used to prepare persistent volumes for reuse after they are deleted." \
io.openshift.tags="openshift,recycler" \
summary="This is a component of OpenShift Origin and is used to prepare persistent volumes for reuse after they are deleted." \
maintainer="Jakub Cajka <jcajka@fedoraproject.org>" \
License="GPLv2+" \
name="$FGC/$NAME" \
com.redhat.component="$NAME" \
version="$VERSION" \
architecture="$ARCH" \
usage="This is a component of OpenShift Origin and is used to prepare persistent volumes for reuse after they are deleted."
ENTRYPOINT ["/usr/bin/openshift-recycle"]