Skip to content

Commit

Permalink
update to release v0.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
minio-trusted committed Jun 29, 2021
1 parent b51d550 commit ced3e64
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 9 deletions.
8 changes: 8 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ dockers:
- CREDITS
build_flag_templates:
- "--platform=linux/amd64"
- "--build-arg=RELEASE={{ .Tag }}"
- image_templates:
- "minio/console:{{ .Tag }}-ppc64le"
use_buildx: true
Expand All @@ -104,6 +105,7 @@ dockers:
- CREDITS
build_flag_templates:
- "--platform=linux/ppc64le"
- "--build-arg=RELEASE={{ .Tag }}"
- image_templates:
- "minio/console:{{ .Tag }}-s390x"
use_buildx: true
Expand All @@ -114,6 +116,7 @@ dockers:
- CREDITS
build_flag_templates:
- "--platform=linux/s390x"
- "--build-arg=RELEASE={{ .Tag }}"
- image_templates:
- "minio/console:{{ .Tag }}-arm64"
use_buildx: true
Expand All @@ -125,6 +128,7 @@ dockers:
- CREDITS
build_flag_templates:
- "--platform=linux/arm64"
- "--build-arg=RELEASE={{ .Tag }}"
- image_templates:
- "quay.io/minio/console:{{ .Tag }}-amd64"
use_buildx: true
Expand All @@ -135,6 +139,7 @@ dockers:
- CREDITS
build_flag_templates:
- "--platform=linux/amd64"
- "--build-arg=RELEASE={{ .Tag }}"
- image_templates:
- "quay.io/minio/console:{{ .Tag }}-ppc64le"
use_buildx: true
Expand All @@ -145,6 +150,7 @@ dockers:
- CREDITS
build_flag_templates:
- "--platform=linux/ppc64le"
- "--build-arg=RELEASE={{ .Tag }}"
- image_templates:
- "quay.io/minio/console:{{ .Tag }}-s390x"
use_buildx: true
Expand All @@ -155,6 +161,7 @@ dockers:
- CREDITS
build_flag_templates:
- "--platform=linux/s390x"
- "--build-arg=RELEASE={{ .Tag }}"
- image_templates:
- "quay.io/minio/console:{{ .Tag }}-arm64"
use_buildx: true
Expand All @@ -166,6 +173,7 @@ dockers:
- CREDITS
build_flag_templates:
- "--platform=linux/arm64"
- "--build-arg=RELEASE={{ .Tag }}"
docker_manifests:
- name_template: minio/console:{{ .Tag }}
image_templates:
Expand Down
6 changes: 4 additions & 2 deletions Dockerfile.release
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.3

ARG RELEASE

COPY CREDITS /licenses/CREDITS
COPY LICENSE /licenses/LICENSE

LABEL name="MinIO" \
vendor="MinIO Inc <[email protected]>" \
maintainer="MinIO Inc <[email protected]>" \
version="v0.6.6" \
release="v0.6.6" \
version="${RELEASE}" \
release="${RELEASE}" \
summary="A graphical user interface for MinIO" \
description="MinIO object storage is fundamentally different. Designed for performance and the S3 API, it is 100% open-source. MinIO is ideal for large, private cloud environments with stringent security requirements and delivers mission-critical availability across a diverse range of workloads."

Expand Down
2 changes: 1 addition & 1 deletion k8s/console/base/console-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
serviceAccountName: console-sa
containers:
- name: console
image: minio/console:v0.7.4
image: minio/console:v0.7.5
imagePullPolicy: "IfNotPresent"
args:
- server
Expand Down
2 changes: 1 addition & 1 deletion k8s/operator-console/base/console-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
serviceAccountName: console-sa
containers:
- name: console
image: minio/console:v0.7.4
image: minio/console:v0.7.5
imagePullPolicy: "IfNotPresent"
env:
- name: CONSOLE_OPERATOR_MODE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ const Configure = ({
label="MinIO's Image"
value={imageName}
error={validationErrors["image"] || ""}
placeholder="E.g. minio/minio:RELEASE.2021-04-22T15-44-28Z"
placeholder="E.g. minio/minio:RELEASE.2021-06-17T00-10-46Z"
/>
</Grid>
<Grid item xs={12}>
Expand All @@ -332,7 +332,7 @@ const Configure = ({
label="Console's Image"
value={consoleImage}
error={validationErrors["consoleImage"] || ""}
placeholder="E.g. minio/console:v0.7.4"
placeholder="E.g. minio/console:v0.7.5"
/>
</Grid>
<Grid item xs={12}>
Expand All @@ -346,7 +346,7 @@ const Configure = ({
label="Log Search API's Image"
value={logSearchImage}
error={validationErrors["logSearchImage"] || ""}
placeholder="E.g. minio/logsearchapi:v4.0.9"
placeholder="E.g. minio/logsearchapi:v4.1.1"
/>
</Grid>
<Grid item xs={12}>
Expand Down
2 changes: 1 addition & 1 deletion restapi/admin_tenants_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1035,7 +1035,7 @@ func Test_UpdateTenantAction(t *testing.T) {
},
params: admin_api.UpdateTenantParams{
Body: &models.UpdateTenantRequest{
ConsoleImage: "minio/console:v0.7.4",
ConsoleImage: "minio/console:v0.7.5",
},
},
},
Expand Down
2 changes: 1 addition & 1 deletion restapi/consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const (
// Image versions
const (
KESImageVersion = "minio/kes:v0.13.4"
ConsoleImageDefaultVersion = "minio/console:v0.7.4"
ConsoleImageDefaultVersion = "minio/console:v0.7.5"
)

// K8s
Expand Down

0 comments on commit ced3e64

Please sign in to comment.