From 03c61bc8c3c88bea0feda2355343d3b112691e5f Mon Sep 17 00:00:00 2001 From: Gavin Scallon Date: Tue, 16 Jun 2020 14:18:56 -0600 Subject: [PATCH] updated version --- Dockerfile | 11 +++++------ Jenkinsfile | 2 +- README.md | 2 +- download.yaml | 4 ++-- 4 files changed, 9 insertions(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7d8d9b3..146a5e2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,17 +1,16 @@ ############################################################### # Default registry variables -ARG BASE_REGISTRY=nexus-docker-secure.levelup-nexus.svc.cluster.local:18082 +ARG BASE_REGISTRY=nexus-docker-secure.levelup-dev.io ARG BASE_IMAGE=redhat/ubi/ubi8 ARG BASE_TAG=8.2 -############################################################### -FROM opensource/minio/mcs:v0.0.2 AS base +FROM opensource/minio/mcs:v0.1.0 AS base FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} ############################################################### LABEL name="MinIO Console Server" \ maintainer="gavin.scallon@parsons.com" \ vendor="Open Source - MinIO" \ - version="v0.0.2" \ + version="v0.1.0" \ release="1" \ summary="A graphical user interface for MinIO." \ description="mcs can be used in conjunction with the MinIO operator and MinIO server to describe MinIO information." @@ -20,7 +19,7 @@ COPY --from=base /mcs / EXPOSE 9090 CMD ["/mcs"] USER 1001 -# Not sure about the following healthcheck - server will -# need to be started and configured in order for it to work +# The server will need to be started and configured in order +# for the HEALTHCHECK to work HEALTHCHECK --start-period=5s \ CMD curl --fail http://localhost:9090/ || exit 1 diff --git a/Jenkinsfile b/Jenkinsfile index f9a7ef2..e214e3c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,2 +1,2 @@ @Library('DCCSCR@master') _ -dccscrPipeline( version: "v0.0.2") \ No newline at end of file +dccscrPipeline( version: "v0.1.0") \ No newline at end of file diff --git a/README.md b/README.md index ee29cdc..507a249 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # mcs -Version: v0.0.2 +Version: v0.1.0 MinIO is an object storage server comptatible with Amazon S3 APIs. mcs is a graphical user interface which can be used to display the MinIO information from the server. diff --git a/download.yaml b/download.yaml index 56e8deb..e0b2a73 100644 --- a/download.yaml +++ b/download.yaml @@ -1,4 +1,4 @@ --- resources: - - url: docker://docker.io/minio/mcs@sha256:60702ce2b200efcdb9b8afca5cddd933c166563d44c4129279720414a8582a73 - tag: opensource/minio/mcs:v0.0.2 + - url: docker://docker.io/minio/mcs@sha256:6df3e3ce7aebca2624c514593a053915de59808c4dee0c2cc430c289c9cdf4d7 + tag: opensource/minio/mcs:v0.1.0 -- GitLab