#
# 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"]
