Skip to content

Commit 59bf546

Browse files
committed
upgrade to v0.3.5
1 parent c3e34dc commit 59bf546

File tree

4 files changed

+30
-3
lines changed

4 files changed

+30
-3
lines changed

.goreleaser.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,33 @@ builds:
2323
goarch:
2424
- amd64
2525
- arm64
26+
27+
ignore:
28+
- goos: darwin
29+
goarch: arm64
30+
- goos: darwin
31+
goarch: arm
32+
- goos: darwin
33+
goarch: ppc64le
34+
- goos: darwin
35+
goarch: s390x
36+
- goos: windows
37+
goarch: arm64
38+
- goos: windows
39+
goarch: arm
40+
- goos: windows
41+
goarch: ppc64le
42+
- goos: windows
43+
goarch: s390x
44+
- goos: freebsd
45+
goarch: arm
46+
- goos: freebsd
47+
goarch: arm64
48+
- goos: freebsd
49+
goarch: ppc64le
50+
- goos: freebsd
51+
goarch: s390x
52+
2653
env:
2754
- CGO_ENABLED=0
2855
main: ./cmd/console/

k8s/console/base/console-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
serviceAccountName: console-sa
1616
containers:
1717
- name: console
18-
image: minio/console:v0.3.4
18+
image: minio/console:v0.3.5
1919
imagePullPolicy: "IfNotPresent"
2020
args:
2121
- server

k8s/operator-console/base/console-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
serviceAccountName: console-sa
1616
containers:
1717
- name: console
18-
image: minio/console:v0.3.4
18+
image: minio/console:v0.3.5
1919
imagePullPolicy: "IfNotPresent"
2020
env:
2121
- name: CONSOLE_OPERATOR_MODE

restapi/admin_tenants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@ func getTenantCreatedResponse(session *models.Principal, params admin_api.Create
768768
return nil, err
769769
}
770770

771-
const consoleVersion = "minio/console:v0.3.4"
771+
const consoleVersion = "minio/console:v0.3.5"
772772
minInst.Spec.Console = &operator.ConsoleConfiguration{
773773
Replicas: 2,
774774
Image: consoleVersion,

0 commit comments

Comments
 (0)