Skip to content

Commit b720cb5

Browse files
committed
Bump controller-runtime to v0.8.0
Also bumps k8s dependecies to 0.20.1 & fixes test that break due to k8s v1.20 API changes
1 parent 8a75409 commit b720cb5

File tree

4 files changed

+200
-49
lines changed

4 files changed

+200
-49
lines changed

config/crd/bases/rabbitmq.com_rabbitmqclusters.yaml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -419,8 +419,15 @@ spec:
419419
type: object
420420
spec:
421421
properties:
422+
allocateLoadBalancerNodePorts:
423+
type: boolean
422424
clusterIP:
423425
type: string
426+
clusterIPs:
427+
items:
428+
type: string
429+
type: array
430+
x-kubernetes-list-type: atomic
424431
externalIPs:
425432
items:
426433
type: string
@@ -432,7 +439,12 @@ spec:
432439
healthCheckNodePort:
433440
format: int32
434441
type: integer
435-
ipFamily:
442+
ipFamilies:
443+
items:
444+
type: string
445+
type: array
446+
x-kubernetes-list-type: atomic
447+
ipFamilyPolicy:
436448
type: string
437449
loadBalancerIP:
438450
type: string
@@ -3217,8 +3229,6 @@ spec:
32173229
type: object
32183230
type: object
32193231
type: array
3220-
required:
3221-
- sources
32223232
type: object
32233233
quobyte:
32243234
properties:

go.mod

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,14 @@ require (
1414
github.com/onsi/gomega v1.10.4
1515
github.com/pelletier/go-toml v1.8.1 // indirect
1616
github.com/sclevine/yj v0.0.0-20200815061347-554173e71934
17-
github.com/smartystreets/goconvey v1.6.4 // indirect
1817
github.com/streadway/amqp v0.0.0-20200108173154-1c71cc93ed71
1918
golang.org/x/net v0.0.0-20201202161906-c7110b5ffcbb
2019
gopkg.in/ini.v1 v1.62.0
21-
k8s.io/api v0.19.2
22-
k8s.io/apimachinery v0.19.2
23-
k8s.io/client-go v0.19.2
24-
k8s.io/utils v0.0.0-20200912215256-4140de9c8800
25-
sigs.k8s.io/controller-runtime v0.7.0
20+
k8s.io/api v0.20.1
21+
k8s.io/apimachinery v0.20.1
22+
k8s.io/client-go v0.20.1
23+
k8s.io/utils v0.0.0-20201110183641-67b214c5f920
24+
sigs.k8s.io/controller-runtime v0.8.0
2625
sigs.k8s.io/controller-tools v0.4.1
2726
sigs.k8s.io/kind v0.9.0
2827
sigs.k8s.io/kustomize/kustomize/v3 v3.9.1

0 commit comments

Comments
 (0)