Skip to content

Commit b42c451

Browse files
upgrade to RELEASE.2020-10-18T21-54-12Z
1 parent 1c2d212 commit b42c451

11 files changed

+11
-11
lines changed

examples/tenant-encryption.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ metadata:
110110

111111
spec:
112112
## Registry location and Tag to download MinIO Server image
113-
image: minio/minio:RELEASE.2020-10-12T21-53-21Z
113+
image: minio/minio:RELEASE.2020-10-18T21-54-12Z
114114
imagePullPolicy: IfNotPresent
115115

116116
## Secret with credentials to be used by MinIO Tenant.

examples/tenant-pod-security-policy.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ metadata:
7676
# name: my-custom-scheduler
7777
spec:
7878
## Registry location and Tag to download MinIO Server image
79-
image: minio/minio:RELEASE.2020-10-12T21-53-21Z
79+
image: minio/minio:RELEASE.2020-10-18T21-54-12Z
8080
## Service account to be used for all the MinIO Pods
8181
serviceAccountName: minio-pods
8282
zones:

examples/tenant-with-autocert-and-custom-certs-encryption-enabled.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ metadata:
103103

104104
spec:
105105
## Registry location and Tag to download MinIO Server image
106-
image: minio/minio:RELEASE.2020-10-12T21-53-21Z
106+
image: minio/minio:RELEASE.2020-10-18T21-54-12Z
107107
imagePullPolicy: IfNotPresent
108108

109109
## Secret with credentials to be used by MinIO Tenant.

examples/tenant.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ metadata:
4949

5050
spec:
5151
## Registry location and Tag to download MinIO Server image
52-
image: minio/minio:RELEASE.2020-10-12T21-53-21Z
52+
image: minio/minio:RELEASE.2020-10-18T21-54-12Z
5353
imagePullPolicy: IfNotPresent
5454

5555
## Secret with credentials to be used by MinIO Tenant.

kubectl-minio/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Command: `kubectl minio tenant upgrade --name TENANT_NAME --image IMAGE_TAG [opt
8484

8585
Upgrade MinIO Docker image for the given MinIO Tenant.
8686

87-
example: `kubectl minio tenant upgrade --name tenant1 --image minio/minio:RELEASE.2020-10-12T21-53-21Z`
87+
example: `kubectl minio tenant upgrade --name tenant1 --image minio/minio:RELEASE.2020-10-18T21-54-12Z`
8888

8989
Options:
9090

kubectl-minio/cmd/helpers/constants.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ const (
7474
DefaultOperatorImage = "minio/k8s-operator:v3.0.28"
7575

7676
// DefaultTenantImage is the default MinIO image used while creating tenant
77-
DefaultTenantImage = "minio/minio:RELEASE.2020-10-12T21-53-21Z"
77+
DefaultTenantImage = "minio/minio:RELEASE.2020-10-18T21-54-12Z"
7878

7979
// DefaultKESImage is the default KES image used while creating tenant
8080
DefaultKESImage = "minio/kes:v0.11.0"

kubectl-minio/cmd/tenant-upgrade.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import (
3838
const (
3939
upgradeDesc = `
4040
'upgrade' command upgrades a MinIO tenant to the specified MinIO version`
41-
upgradeExample = ` kubectl minio tenant upgrade --name tenant1 --image minio/minio:RELEASE.2020-10-12T21-53-21Z --namespace tenant1-ns`
41+
upgradeExample = ` kubectl minio tenant upgrade --name tenant1 --image minio/minio:RELEASE.2020-10-18T21-54-12Z --namespace tenant1-ns`
4242
)
4343

4444
type upgradeCmd struct {

pkg/apis/minio.min.io/v1/constants.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ const MinIOVolumeMountPath = "/export"
8383
const MinIOVolumeSubPath = ""
8484

8585
// DefaultMinIOImage specifies the default MinIO Docker hub image
86-
const DefaultMinIOImage = "minio/minio:RELEASE.2020-09-26T03-44-56Z"
86+
const DefaultMinIOImage = "minio/minio:RELEASE.2020-10-18T21-54-12Z"
8787

8888
// DefaultMinIOUpdateURL specifies the default MinIO URL where binaries are
8989
// pulled from during MinIO upgrades

testing/patching/upgrade-one-zone-step-1.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ kind: Tenant
1212
metadata:
1313
name: upgrade-one-zone
1414
spec:
15-
image: minio/minio:RELEASE.2020-10-12T21-53-21Z
15+
image: minio/minio:RELEASE.2020-10-18T21-54-12Z
1616
zones:
1717
- servers: 1
1818
volumesPerServer: 4

testing/patching/upgrade-one-zone-step-2.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ kind: Tenant
1212
metadata:
1313
name: upgrade-one-zone
1414
spec:
15-
image: minio/minio:RELEASE.2020-10-12T21-53-21Z
15+
image: minio/minio:RELEASE.2020-10-18T21-54-12Z
1616
zones:
1717
- servers: 1
1818
volumesPerServer: 4

testing/patching/upgrade-two-zones-step-2.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ kind: Tenant
1212
metadata:
1313
name: upgrade-two-zones
1414
spec:
15-
image: minio/minio:RELEASE.2020-10-12T21-53-21Z
15+
image: minio/minio:RELEASE.2020-10-18T21-54-12Z
1616
zones:
1717
- servers: 4
1818
volumesPerServer: 4

0 commit comments

Comments
 (0)