Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

default to latest release for all the upgrade goodies #197

Merged
merged 2 commits into from
Jul 25, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/tenant-console.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ spec:
prometheus.io/port: "9000"
prometheus.io/scrape: "true"
## Registry location and Tag to download MinIO Server image
image: minio/minio:RELEASE.2020-07-22T00-26-33Z
image: minio/minio:RELEASE.2020-07-24T22-43-05Z
## A ClusterIP Service will be created with the given name
serviceName: minio-internal-service
## Secret with credentials to be used by MinIO instance.
Expand Down
2 changes: 1 addition & 1 deletion examples/tenant-kes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ spec:
prometheus.io/port: "9000"
prometheus.io/scrape: "true"
## Registry location and Tag to download MinIO Server image
image: minio/minio:RELEASE.2020-07-22T00-26-33Z
image: minio/minio:RELEASE.2020-07-24T22-43-05Z
## A ClusterIP Service will be created with the given name
serviceName: minio-internal-service
## Secret with credentials to be used by MinIO instance.
Expand Down
2 changes: 1 addition & 1 deletion examples/tenant-pod-security-policy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ spec:
prometheus.io/port: "9000"
prometheus.io/scrape: "true"
## Registry location and Tag to download MinIO Server image
image: minio/minio:RELEASE.2020-07-22T00-26-33Z
image: minio/minio:RELEASE.2020-07-24T22-43-05Z
## A ClusterIP Service will be created with the given name
serviceName: minio-internal-service
## Service account to be used for all the MinIO Pods
Expand Down
2 changes: 1 addition & 1 deletion examples/tenant.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ spec:
prometheus.io/port: "9000"
prometheus.io/scrape: "true"
## Registry location and Tag to download MinIO Server image
image: minio/minio:RELEASE.2020-07-22T00-26-33Z
image: minio/minio:RELEASE.2020-07-24T22-43-05Z
## A ClusterIP Service will be created with the given name
serviceName: minio-internal-service
zones:
Expand Down
2 changes: 1 addition & 1 deletion minioinstance-kustomize/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ configMapGenerator:
images:
- name: minio/minio
newName: minio/minio
newTag: RELEASE.2020-07-22T00-26-33Z
newTag: RELEASE.2020-07-24T22-43-05Z
- name: minio/mcs
newName: minio/mcs
newTag: v0.2.0
Expand Down
2 changes: 1 addition & 1 deletion minioinstance-kustomize/minio-tenant.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ spec:
prometheus.io/path: /minio/prometheus/metrics
prometheus.io/port: "9000"
prometheus.io/scrape: "true"
image: minio/minio:RELEASE.2020-07-22T00-26-33Z
image: minio/minio:RELEASE.2020-07-24T22-43-05Z
serviceName: minio-internal-service
credsSecret:
name: minio-creds-secret
Expand Down
2 changes: 1 addition & 1 deletion pkg/apis/minio.min.io/v1/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const MinIOVolumeMountPath = "/export"
const MinIOVolumeSubPath = ""

// DefaultMinIOImage specifies the default MinIO Docker hub image
const DefaultMinIOImage = "minio/minio:RELEASE.2020-07-22T00-26-33Z"
const DefaultMinIOImage = "minio/minio:RELEASE.2020-07-24T22-43-05Z"

// DefaultMinIOUpdateURL specifies the default MinIO URL where binaries are
// pulled from during MinIO upgrades
Expand Down
2 changes: 1 addition & 1 deletion testing/patching/upgrade-one-zone-step-2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ kind: Tenant
metadata:
name: upgrade-one-zone
spec:
image: minio/minio:RELEASE.2020-07-22T00-26-33Z
image: minio/minio:RELEASE.2020-07-24T22-43-05Z
zones:
- servers: 1
volumesPerServer: 4
Expand Down
2 changes: 1 addition & 1 deletion testing/patching/upgrade-two-zones-step-2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ kind: Tenant
metadata:
name: upgrade-two-zones
spec:
image: minio/minio:RELEASE.2020-07-22T00-26-33Z
image: minio/minio:RELEASE.2020-07-24T22-43-05Z
zones:
- servers: 4
volumesPerServer: 4
Expand Down