Skip to content

Commit ee9d207

Browse files
Merge pull request #441 from dprince/golang_1.24_rabbit
Golang 1.24 rabbit
2 parents beefb62 + 0ee0271 commit ee9d207

File tree

7 files changed

+282
-227
lines changed

7 files changed

+282
-227
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ run: manifests generate fmt vet ## Run a controller from your host.
145145
# (i.e. docker build --platform linux/arm64 ). However, you must enable docker buildKit for it.
146146
# More info: https://docs.docker.com/develop/develop-images/build_enhancements/
147147
.PHONY: docker-build
148-
docker-build: test ## Build docker image with the manager.
148+
docker-build: ## Build docker image with the manager.
149149
podman build -t ${IMG} . ${DOCKER_BUILD_ARGS}
150150

151151
.PHONY: docker-push

apis/bases/rabbitmq.openstack.org_rabbitmqs.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1418,7 +1418,7 @@ spec:
14181418
Modify to add to the rabbitmq.conf file in addition to default configurations set by the operator.
14191419
Modifying this property on an existing RabbitmqCluster will trigger a StatefulSet rolling restart and will cause rabbitmq downtime.
14201420
For more information on this config, see https://www.rabbitmq.com/configure.html#config-file
1421-
maxLength: 2000
1421+
maxLength: 100000
14221422
type: string
14231423
additionalPlugins:
14241424
description: 'List of plugins to enable in addition to essential
@@ -1628,6 +1628,10 @@ spec:
16281628
- PreferDualStack
16291629
- RequireDualStack
16301630
type: string
1631+
labels:
1632+
additionalProperties:
1633+
type: string
1634+
type: object
16311635
type:
16321636
default: ClusterIP
16331637
description: |-
@@ -1662,7 +1666,7 @@ spec:
16621666
description: |-
16631667
Name of a Secret in the same Namespace as the RabbitmqCluster, containing the Certificate Authority's public certificate for TLS.
16641668
The Secret must store this as ca.crt.
1665-
This Secret can be created by running `kubectl create secret generic ca-secret --from-file=ca.crt=path/to/ca.cert`
1669+
This Secret can be created by running `kubectl create secret generic ca-secret --from-file=ca.crt=path/to/ca.crt`
16661670
Used for mTLS, and TLS for rabbitmq_web_stomp and rabbitmq_web_mqtt.
16671671
type: string
16681672
disableNonTLSListeners:
@@ -1674,7 +1678,7 @@ spec:
16741678
description: |-
16751679
Name of a Secret in the same Namespace as the RabbitmqCluster, containing the server's private key & public certificate for TLS.
16761680
The Secret must store these as tls.key and tls.crt, respectively.
1677-
This Secret can be created by running `kubectl create secret tls tls-secret --cert=path/to/tls.cert --key=path/to/tls.key`
1681+
This Secret can be created by running `kubectl create secret tls tls-secret --cert=path/to/tls.crt --key=path/to/tls.key`
16781682
type: string
16791683
type: object
16801684
tolerations:

apis/go.mod

Lines changed: 42 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ go 1.24
44

55
require (
66
github.com/go-logr/logr v1.4.3
7-
github.com/onsi/ginkgo/v2 v2.20.1
8-
github.com/onsi/gomega v1.34.1
7+
github.com/onsi/ginkgo/v2 v2.24.0
8+
github.com/onsi/gomega v1.38.0
99
github.com/openstack-k8s-operators/lib-common/modules/common v0.6.1-0.20250922082314-c83d83092a04
1010
github.com/rabbitmq/cluster-operator/v2 v2.9.0
1111
k8s.io/api v0.31.12
@@ -16,63 +16,72 @@ require (
1616
)
1717

1818
require (
19+
github.com/Masterminds/semver/v3 v3.3.1 // indirect
1920
github.com/beorn7/perks v1.0.1 // indirect
2021
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2122
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
22-
github.com/emicklei/go-restful/v3 v3.12.0 // indirect
23-
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
24-
github.com/fsnotify/fsnotify v1.7.0 // indirect
25-
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
23+
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
24+
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
25+
github.com/fsnotify/fsnotify v1.9.0 // indirect
26+
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
2627
github.com/go-logr/zapr v1.3.0 // indirect
27-
github.com/go-openapi/jsonpointer v0.21.0 // indirect
28+
github.com/go-openapi/jsonpointer v0.21.1 // indirect
2829
github.com/go-openapi/jsonreference v0.21.0 // indirect
29-
github.com/go-openapi/swag v0.23.0 // indirect
30+
github.com/go-openapi/swag v0.23.1 // indirect
3031
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
3132
github.com/gogo/protobuf v1.3.2 // indirect
3233
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
3334
github.com/golang/protobuf v1.5.4 // indirect
34-
github.com/google/gnostic-models v0.6.8 // indirect
35-
github.com/google/go-cmp v0.6.0 // indirect
35+
github.com/google/gnostic-models v0.7.0 // indirect
36+
github.com/google/go-cmp v0.7.0 // indirect
3637
github.com/google/gofuzz v1.2.0 // indirect
37-
github.com/google/pprof v0.0.0-20240727154555-813a5fbdbec8 // indirect
38+
github.com/google/pprof v0.0.0-20250403155104-27863c87afa6 // indirect
3839
github.com/google/uuid v1.6.0 // indirect
3940
github.com/imdario/mergo v0.3.16 // indirect
4041
github.com/josharian/intern v1.0.0 // indirect
4142
github.com/json-iterator/go v1.1.12 // indirect
4243
github.com/k8snetworkplumbingwg/network-attachment-definition-client v1.7.7 // indirect
43-
github.com/mailru/easyjson v0.7.7 // indirect
44+
github.com/mailru/easyjson v0.9.0 // indirect
4445
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
45-
github.com/modern-go/reflect2 v1.0.2 // indirect
46+
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
4647
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
4748
github.com/openshift/api v3.9.0+incompatible // indirect
4849
github.com/pkg/errors v0.9.1 // indirect
49-
github.com/prometheus/client_golang v1.19.1 // indirect
50-
github.com/prometheus/client_model v0.6.1 // indirect
51-
github.com/prometheus/common v0.55.0 // indirect
52-
github.com/prometheus/procfs v0.15.1 // indirect
53-
github.com/spf13/pflag v1.0.5 // indirect
50+
github.com/prometheus/client_golang v1.22.0 // indirect
51+
github.com/prometheus/client_model v0.6.2 // indirect
52+
github.com/prometheus/common v0.65.0 // indirect
53+
github.com/prometheus/procfs v0.16.1 // indirect
54+
github.com/spf13/pflag v1.0.7 // indirect
5455
github.com/x448/float16 v0.8.4 // indirect
56+
go.uber.org/automaxprocs v1.6.0 // indirect
5557
go.uber.org/multierr v1.11.0 // indirect
5658
go.uber.org/zap v1.27.0 // indirect
57-
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
58-
golang.org/x/net v0.28.0 // indirect
59-
golang.org/x/oauth2 v0.21.0 // indirect
60-
golang.org/x/sys v0.23.0 // indirect
61-
golang.org/x/term v0.23.0 // indirect
62-
golang.org/x/text v0.17.0 // indirect
63-
golang.org/x/time v0.5.0 // indirect
64-
golang.org/x/tools v0.24.0 // indirect
65-
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
66-
google.golang.org/protobuf v1.34.2 // indirect
59+
go.yaml.in/yaml/v2 v2.4.2 // indirect
60+
go.yaml.in/yaml/v3 v3.0.3 // indirect
61+
golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67 // indirect
62+
golang.org/x/net v0.43.0 // indirect
63+
golang.org/x/oauth2 v0.30.0 // indirect
64+
golang.org/x/sys v0.35.0 // indirect
65+
golang.org/x/term v0.34.0 // indirect
66+
golang.org/x/text v0.28.0 // indirect
67+
golang.org/x/time v0.12.0 // indirect
68+
golang.org/x/tools v0.36.0 // indirect
69+
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
70+
google.golang.org/protobuf v1.36.6 // indirect
6771
gopkg.in/inf.v0 v0.9.1 // indirect
68-
gopkg.in/yaml.v2 v2.4.0 // indirect
6972
gopkg.in/yaml.v3 v3.0.1 // indirect
7073
k8s.io/apiextensions-apiserver v0.31.12 // indirect
7174
k8s.io/klog/v2 v2.130.1 // indirect
72-
k8s.io/kube-openapi v0.0.0-20240322212309-b815d8309940 // indirect
73-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
74-
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
75-
sigs.k8s.io/yaml v1.4.0 // indirect
75+
k8s.io/kube-openapi v0.0.0-20250902184714-7fc278399c7f // indirect
76+
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
77+
sigs.k8s.io/randfill v1.0.0 // indirect
78+
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
79+
sigs.k8s.io/yaml v1.6.0 // indirect
7680
)
7781

7882
replace github.com/openshift/api => github.com/openshift/api v0.0.0-20250711200046-c86d80652a9e //allow-merging
83+
84+
// custom RabbitmqClusterSpecCore for OpenStackControlplane (v2.16.1_patches)
85+
replace github.com/rabbitmq/cluster-operator/v2 => github.com/openstack-k8s-operators/rabbitmq-cluster-operator/v2 v2.6.1-0.20250922171219-e224600b4030 //allow-merging
86+
87+
replace k8s.io/kube-openapi => k8s.io/kube-openapi v0.0.0-20250627150254-e9823e99808e //allow-merging

0 commit comments

Comments
 (0)