FROM openshift/golang-builder:1.10 AS builder
ENV OS_GIT_MAJOR=4 OS_GIT_MINOR=1 OS_GIT_PATCH=41 OS_GIT_VERSION=4.1.41-202004130646-17d5e94 OS_GIT_TREE_STATE=clean SOURCE_GIT_COMMIT=17d5e9405c03ff0d7ffc79af56171b622f63c871 SOURCE_GIT_TAG=v0.2.0-140-g17d5e94 SOURCE_GIT_URL=https://github.com/openshift/k8s-prometheus-adapter SOURCE_DATE_EPOCH=1556092164 OS_GIT_COMMIT=17d5e94 BUILD_VERSION=v4.1.41 BUILD_RELEASE=202004130646

COPY . /go/src/github.com/directxman12/k8s-prometheus-adapter

WORKDIR /go/src/github.com/directxman12/k8s-prometheus-adapter
RUN make
RUN mv /go/src/github.com/directxman12/k8s-prometheus-adapter/_output/$(go env GOARCH)/adapter /usr/bin/cm-adapter


FROM openshift/ose-base:v4.1.41.20200413.064634
ENV OS_GIT_MAJOR=4 OS_GIT_MINOR=1 OS_GIT_PATCH=41 OS_GIT_VERSION=4.1.41-202004130646-17d5e94 OS_GIT_TREE_STATE=clean SOURCE_GIT_COMMIT=17d5e9405c03ff0d7ffc79af56171b622f63c871 SOURCE_GIT_TAG=v0.2.0-140-g17d5e94 SOURCE_GIT_URL=https://github.com/openshift/k8s-prometheus-adapter SOURCE_DATE_EPOCH=1556092164 OS_GIT_COMMIT=17d5e94 BUILD_VERSION=v4.1.41 BUILD_RELEASE=202004130646

COPY --from=builder /usr/bin/cm-adapter /usr/bin/cm-adapter
    

USER 1001

ENTRYPOINT ["/usr/bin/cm-adapter"]

LABEL \
        io.k8s.display-name="OpenShift Prometheus Custom Metrics Adapter" \
        io.k8s.description="This is a component of OpenShift Container Platform that provides the Kubernetes custom metrics API based on Prometheus metrics" \
        io.openshift.tags="openshift" \
        maintainer="Solly Ross <sross@redhat.com>" \
        name="openshift/ose-k8s-prometheus-adapter" \
        com.redhat.component="ose-prometheus-adapter-container" \
        io.openshift.maintainer.product="OpenShift Container Platform" \
        version="v4.1.41" \
        release="202004130646" \
        io.openshift.build.commit.id="17d5e9405c03ff0d7ffc79af56171b622f63c871" \
        io.openshift.build.source-location="https://github.com/openshift/k8s-prometheus-adapter" \
        io.openshift.build.commit.url="https://github.com/openshift/k8s-prometheus-adapter/commit/17d5e9405c03ff0d7ffc79af56171b622f63c871"

