Skip to content

Commit 3ba23c4

Browse files
Merge pull request #1601 from dprince/golang_1.24_rabbit
Golang 1.24 rabbit
2 parents f45fa61 + d917de6 commit 3ba23c4

13 files changed

+479
-159
lines changed

apis/bases/core.openstack.org_openstackcontrolplanes.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13244,7 +13244,7 @@ spec:
1324413244
rabbitmq:
1324513245
properties:
1324613246
additionalConfig:
13247-
maxLength: 2000
13247+
maxLength: 100000
1324813248
type: string
1324913249
additionalPlugins:
1325013250
items:
@@ -13356,6 +13356,10 @@ spec:
1335613356
- PreferDualStack
1335713357
- RequireDualStack
1335813358
type: string
13359+
labels:
13360+
additionalProperties:
13361+
type: string
13362+
type: object
1335913363
type:
1336013364
default: ClusterIP
1336113365
enum:

apis/go.mod

Lines changed: 31 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module github.com/openstack-k8s-operators/openstack-operator/apis
22

3-
go 1.24
3+
go 1.24.4
44

55
require (
6-
github.com/cert-manager/cert-manager v1.14.7
6+
github.com/cert-manager/cert-manager v1.16.5
77
github.com/go-playground/validator/v10 v10.25.0
88
github.com/onsi/ginkgo/v2 v2.25.3
99
github.com/onsi/gomega v1.38.2
@@ -13,7 +13,7 @@ require (
1313
github.com/openstack-k8s-operators/glance-operator/api v0.6.1-0.20250926105901-f1fc136e23db
1414
github.com/openstack-k8s-operators/heat-operator/api v0.6.1-0.20250926125710-1d20f8dff436
1515
github.com/openstack-k8s-operators/horizon-operator/api v0.6.1-0.20250926111930-e9f843ac503f
16-
github.com/openstack-k8s-operators/infra-operator/apis v0.6.1-0.20250929094900-c6051f6ada6d
16+
github.com/openstack-k8s-operators/infra-operator/apis v0.6.1-0.20250930134137-51c0fe58c195
1717
github.com/openstack-k8s-operators/ironic-operator/api v0.6.1-0.20250926115411-d8d2d3ce3c08
1818
github.com/openstack-k8s-operators/keystone-operator/api v0.6.1-0.20250926130544-3cc98ad43636
1919
github.com/openstack-k8s-operators/lib-common/modules/common v0.6.1-0.20250929092825-4c2402451077
@@ -86,8 +86,9 @@ require (
8686
github.com/prometheus/client_model v0.6.2 // indirect
8787
github.com/prometheus/common v0.65.0 // indirect
8888
github.com/prometheus/procfs v0.16.1 // indirect
89-
github.com/rabbitmq/cluster-operator/v2 v2.9.0 // indirect
89+
github.com/rabbitmq/cluster-operator/v2 v2.16.0 // indirect
9090
github.com/robfig/cron/v3 v3.0.1 // indirect
91+
github.com/rogpeppe/go-internal v1.13.1 // indirect
9192
github.com/spf13/pflag v1.0.7 // indirect
9293
github.com/stretchr/testify v1.11.1 // indirect
9394
github.com/x448/float16 v0.8.4 // indirect
@@ -105,22 +106,41 @@ require (
105106
google.golang.org/protobuf v1.36.7 // indirect
106107
gopkg.in/inf.v0 v0.9.1 // indirect
107108
gopkg.in/yaml.v3 v3.0.1 // indirect
108-
k8s.io/apiextensions-apiserver v0.31.13 // indirect
109+
k8s.io/apiextensions-apiserver v0.33.2 // indirect
109110
k8s.io/klog/v2 v2.130.1 // indirect
110111
k8s.io/kube-openapi v0.0.0-20250902184714-7fc278399c7f // indirect
111-
sigs.k8s.io/gateway-api v1.0.0 // indirect
112+
sigs.k8s.io/gateway-api v1.2.1 // indirect
112113
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
113114
sigs.k8s.io/randfill v1.0.0 // indirect
114-
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
115+
sigs.k8s.io/structured-merge-diff/v4 v4.7.0 // indirect
116+
sigs.k8s.io/structured-merge-diff/v6 v6.2.0 // indirect
115117
sigs.k8s.io/yaml v1.6.0 // indirect
116118
)
117119

118120
// mschuppert: map to latest commit from release-4.18 tag
119121
// must consistent within modules and service operators
120122
replace github.com/openshift/api => github.com/openshift/api v0.0.0-20250711200046-c86d80652a9e //allow-merging
121123

122-
// custom RabbitmqClusterSpecCore for OpenStackControlplane (v2.9.0_patches_tag_n)
123-
replace github.com/rabbitmq/cluster-operator/v2 => github.com/openstack-k8s-operators/rabbitmq-cluster-operator/v2 v2.6.1-0.20250717122149-12f70b7f3d8d //allow-merging
124+
// custom RabbitmqClusterSpecCore for OpenStackControlplane (v2.16.0_patches)
125+
replace github.com/rabbitmq/cluster-operator/v2 => github.com/openstack-k8s-operators/rabbitmq-cluster-operator/v2 v2.6.1-0.20250929174222-a0d328fa4dec //allow-merging
124126

125-
// pin to support rabbitmq 2.16.1 rebase
126-
replace k8s.io/kube-openapi => k8s.io/kube-openapi v0.0.0-20250627150254-e9823e99808e //allow-merging
127+
// pin to support rabbitmq 2.16.0 rebase
128+
//replace k8s.io/kube-openapi => k8s.io/kube-openapi v0.0.0-20250627150254-e9823e99808e //allow-merging
129+
130+
replace k8s.io/apimachinery => k8s.io/apimachinery v0.31.13 //allow-merging
131+
132+
replace k8s.io/api => k8s.io/api v0.31.13 //allow-merging
133+
134+
replace k8s.io/apiserver => k8s.io/apiserver v0.31.13 //allow-merging
135+
136+
replace k8s.io/client-go => k8s.io/client-go v0.31.13 //allow-merging
137+
138+
replace k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.31.13 //allow-merging
139+
140+
replace k8s.io/cli-runtime => k8s.io/cli-runtime v0.31.13 //allow-merging
141+
142+
replace k8s.io/code-generator => k8s.io/code-generator v0.31.13 //allow-merging
143+
144+
replace k8s.io/component-base => k8s.io/component-base v0.31.13 //allow-merging
145+
146+
replace github.com/cert-manager/cmctl/v2 => github.com/cert-manager/cmctl/v2 v2.1.2-0.20241127223932-88edb96860cf //allow-merging

apis/go.sum

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ github.com/Masterminds/semver/v3 v3.4.0 h1:Zog+i5UMtVoCU8oKka5P7i9q9HgrJeGzI9SA1
22
github.com/Masterminds/semver/v3 v3.4.0/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM=
33
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
44
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
5-
github.com/cert-manager/cert-manager v1.14.7 h1:C2L59sMGMdSpd8SPx5qfPAL7ejZaNxJBRd24S7Ws5Ek=
6-
github.com/cert-manager/cert-manager v1.14.7/go.mod h1:0QE/Hzfs2SxNrFFYgFh/d0c0cDfNv9qSrAev2LFt5nM=
5+
github.com/cert-manager/cert-manager v1.16.5 h1:XIhKoS4zQV9RHXAkqQW0NLivvoxAnWzbPsy9BG6cPVc=
6+
github.com/cert-manager/cert-manager v1.16.5/go.mod h1:0DwmIGjMOreiP7/6gAqnjaBRJ+yHCfZ5DP7NNqKV+tY=
77
github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs=
88
github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
99
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
@@ -12,8 +12,8 @@ github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1
1212
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
1313
github.com/emicklei/go-restful/v3 v3.12.2 h1:DhwDP0vY3k8ZzE0RunuJy8GhNpPL6zqLkDf9B/a0/xU=
1414
github.com/emicklei/go-restful/v3 v3.12.2/go.mod h1:6n3XBCmQQb25CM2LCACGz8ukIrRry+4bhvbpWn3mrbc=
15-
github.com/evanphx/json-patch v5.7.0+incompatible h1:vgGkfT/9f8zE6tvSCe74nfpAVDQ2tG6yudJd8LBksgI=
16-
github.com/evanphx/json-patch v5.7.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk=
15+
github.com/evanphx/json-patch v5.9.11+incompatible h1:ixHHqfcGvxhWkniF1tWxBHA0yb4Z+d1UQi45df52xW8=
16+
github.com/evanphx/json-patch v5.9.11+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk=
1717
github.com/evanphx/json-patch/v5 v5.9.11 h1:/8HVnzMq13/3x9TPvjG08wUGqBTmZBsCWzjTM0wiaDU=
1818
github.com/evanphx/json-patch/v5 v5.9.11/go.mod h1:3j+LviiESTElxA4p3EMKAB9HXj3/XEtnUf6OZxqIQTM=
1919
github.com/fsnotify/fsnotify v1.9.0 h1:2Ml+OJNzbYCTzsxtv8vKSFD9PbJjmhYF14k/jKC7S9k=
@@ -112,8 +112,8 @@ github.com/openstack-k8s-operators/heat-operator/api v0.6.1-0.20250926125710-1d2
112112
github.com/openstack-k8s-operators/heat-operator/api v0.6.1-0.20250926125710-1d20f8dff436/go.mod h1:rYdOyj00+5q3ogXu0E0PrOyY1URlZInizf0XvH9cJqk=
113113
github.com/openstack-k8s-operators/horizon-operator/api v0.6.1-0.20250926111930-e9f843ac503f h1:NcqjF15EeviWl3n4xP7W6o2hGWQcr2HrxNF2CidLr7s=
114114
github.com/openstack-k8s-operators/horizon-operator/api v0.6.1-0.20250926111930-e9f843ac503f/go.mod h1:XYd36WDMCrlEMny857MOOOEBfRmhfiOnV6QUQBhnyNQ=
115-
github.com/openstack-k8s-operators/infra-operator/apis v0.6.1-0.20250929094900-c6051f6ada6d h1:lDUWoV7JaLjpt7nFrtg0dLlIywgeDhQyc4a4YMM3lME=
116-
github.com/openstack-k8s-operators/infra-operator/apis v0.6.1-0.20250929094900-c6051f6ada6d/go.mod h1:hmjv6shB8VMf/B9QhMMcnu+t0i3On+S4kAUh2fH0wGQ=
115+
github.com/openstack-k8s-operators/infra-operator/apis v0.6.1-0.20250930134137-51c0fe58c195 h1:21L8Y66i5bdtl+jgMXpaxubQHZPTxVZq/Gbkr2McXlQ=
116+
github.com/openstack-k8s-operators/infra-operator/apis v0.6.1-0.20250930134137-51c0fe58c195/go.mod h1:vjTH79bZSPjdHQd5X0LrQ8ozz1j+eZWQzU5wWmxSoI4=
117117
github.com/openstack-k8s-operators/ironic-operator/api v0.6.1-0.20250926115411-d8d2d3ce3c08 h1:UvvF6gnHLSEY2tS6ygLWysne7G2EkybZr/m4fD39Xqg=
118118
github.com/openstack-k8s-operators/ironic-operator/api v0.6.1-0.20250926115411-d8d2d3ce3c08/go.mod h1:yJ43wGHK22xpiztwHSitulsF+6Uva0D77MHTe+NIzAk=
119119
github.com/openstack-k8s-operators/keystone-operator/api v0.6.1-0.20250926130544-3cc98ad43636 h1:sEUJf+28bpwSuMHKiVx/762VBMIC20W7Qv/L52uPJ+E=
@@ -140,8 +140,8 @@ github.com/openstack-k8s-operators/ovn-operator/api v0.6.1-0.20250926114242-6183
140140
github.com/openstack-k8s-operators/ovn-operator/api v0.6.1-0.20250926114242-6183563dfa1c/go.mod h1:xT8Al+S2phSysByx8PLklgeLI9SVbNBoXqjL6NHEH+I=
141141
github.com/openstack-k8s-operators/placement-operator/api v0.6.1-0.20250926111633-01613c48d59a h1:x3JivogJF/NaZVGulbccCYoYg9WcTrM3/D7vl9sqDvc=
142142
github.com/openstack-k8s-operators/placement-operator/api v0.6.1-0.20250926111633-01613c48d59a/go.mod h1:ahZ5k4+dE/Rkma81fGkaW2zc/TCg0TT2gjGg7IwZIKY=
143-
github.com/openstack-k8s-operators/rabbitmq-cluster-operator/v2 v2.6.1-0.20250717122149-12f70b7f3d8d h1:0KCWljk2IEJ+aWNK+RiGpIdu51KPXrYA5RfyUcV4Mb4=
144-
github.com/openstack-k8s-operators/rabbitmq-cluster-operator/v2 v2.6.1-0.20250717122149-12f70b7f3d8d/go.mod h1:6Mq2N/KtNFW20L+PQC5qkeK8R8UGadmGBXL8HDY6lcg=
143+
github.com/openstack-k8s-operators/rabbitmq-cluster-operator/v2 v2.6.1-0.20250929174222-a0d328fa4dec h1:saovr368HPAKHN0aRPh8h8n9s9dn3d8Frmfua0UYRlc=
144+
github.com/openstack-k8s-operators/rabbitmq-cluster-operator/v2 v2.6.1-0.20250929174222-a0d328fa4dec/go.mod h1:Nh2NEePLjovUQof2krTAg4JaAoLacqtPTZQXK6izNfg=
145145
github.com/openstack-k8s-operators/swift-operator/api v0.6.1-0.20250922191944-7d54e7c80282 h1:wrBO9Xe8CqXlZJNG8yuBOtVqebiJR+02sKPTMtNMi9w=
146146
github.com/openstack-k8s-operators/swift-operator/api v0.6.1-0.20250922191944-7d54e7c80282/go.mod h1:x47kL081iHPPLBL7AcNuX2ossjJP+xXO6RMgG21ATKM=
147147
github.com/openstack-k8s-operators/telemetry-operator/api v0.6.1-0.20250926151751-fb90e2d5d545 h1:cscDXcjLvEwUsV4U6fPdMSB/M4k7CeuejOacINmwPnE=
@@ -169,8 +169,8 @@ github.com/rhobs/observability-operator v0.3.1 h1:vVGCt/a7Ds5VeqikaKZJz18oOPV9p4
169169
github.com/rhobs/observability-operator v0.3.1/go.mod h1:nC2YcqsTdm44agl9Fz5QzNSGtSFokIGUhS1g7OlzFrs=
170170
github.com/robfig/cron/v3 v3.0.1 h1:WdRxkvbJztn8LMz/QEvLN5sBU+xKpSqwwUO1Pjr4qDs=
171171
github.com/robfig/cron/v3 v3.0.1/go.mod h1:eQICP3HwyT7UooqI/z+Ov+PtYAWygg1TEWWzGIFLtro=
172-
github.com/rogpeppe/go-internal v1.12.0 h1:exVL4IDcn6na9z1rAb56Vxr+CgyK3nn3O+epU5NdKM8=
173-
github.com/rogpeppe/go-internal v1.12.0/go.mod h1:E+RYuTGaKKdloAfM02xzb0FW3Paa99yedzYV+kq4uf4=
172+
github.com/rogpeppe/go-internal v1.13.1 h1:KvO1DLK/DRN07sQ1LQKScxyZJuNnedQ5/wKSR38lUII=
173+
github.com/rogpeppe/go-internal v1.13.1/go.mod h1:uMEvuHeurkdAXX61udpOXGD/AzZDWNMNyH2VO9fmH0o=
174174
github.com/spf13/pflag v1.0.7 h1:vN6T9TfwStFPFM5XzjsvmzZkLuaLX+HS+0SeFLRgU6M=
175175
github.com/spf13/pflag v1.0.7/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
176176
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
@@ -267,21 +267,23 @@ k8s.io/client-go v0.31.13 h1:Q0LG51uFbzNd9fzIj5ilA0Sm1wUholHvDaNwVKzqdCA=
267267
k8s.io/client-go v0.31.13/go.mod h1:UB4yTzQeRAv+vULOKp2jdqA5LSwV55bvc3RQ5tM48LM=
268268
k8s.io/klog/v2 v2.130.1 h1:n9Xl7H1Xvksem4KFG4PYbdQCQxqc/tTUyrgXaOhHSzk=
269269
k8s.io/klog/v2 v2.130.1/go.mod h1:3Jpz1GvMt720eyJH1ckRHK1EDfpxISzJ7I9OYgaDtPE=
270-
k8s.io/kube-openapi v0.0.0-20250627150254-e9823e99808e h1:UGI9rv1A2cV87NhXr4s+AUBxIuoo/SME/IyJ3b6KztE=
271-
k8s.io/kube-openapi v0.0.0-20250627150254-e9823e99808e/go.mod h1:GLOk5B+hDbRROvt0X2+hqX64v/zO3vXN7J78OUmBSKw=
270+
k8s.io/kube-openapi v0.0.0-20250902184714-7fc278399c7f h1:wyRlmLgBSXi3kgawro8klrMRljXeRo1HFkQRs+meYfs=
271+
k8s.io/kube-openapi v0.0.0-20250902184714-7fc278399c7f/go.mod h1:kdmbQkyfwUagLfXIad1y2TdrjPFWp2Q89B3qkRwf/pQ=
272272
k8s.io/utils v0.0.0-20250820121507-0af2bda4dd1d h1:wAhiDyZ4Tdtt7e46e9M5ZSAJ/MnPGPs+Ki1gHw4w1R0=
273273
k8s.io/utils v0.0.0-20250820121507-0af2bda4dd1d/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
274274
sigs.k8s.io/controller-runtime v0.19.7 h1:DLABZfMr20A+AwCZOHhcbcu+TqBXnJZaVBri9K3EO48=
275275
sigs.k8s.io/controller-runtime v0.19.7/go.mod h1:iRmWllt8IlaLjvTTDLhRBXIEtkCK6hwVBJJsYS9Ajf4=
276-
sigs.k8s.io/gateway-api v1.0.0 h1:iPTStSv41+d9p0xFydll6d7f7MOBGuqXM6p2/zVYMAs=
277-
sigs.k8s.io/gateway-api v1.0.0/go.mod h1:4cUgr0Lnp5FZ0Cdq8FdRwCvpiWws7LVhLHGIudLlf4c=
276+
sigs.k8s.io/gateway-api v1.2.1 h1:fZZ/+RyRb+Y5tGkwxFKuYuSRQHu9dZtbjenblleOLHM=
277+
sigs.k8s.io/gateway-api v1.2.1/go.mod h1:EpNfEXNjiYfUJypf0eZ0P5iXA9ekSGWaS1WgPaM42X0=
278278
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 h1:gBQPwqORJ8d8/YNZWEjoZs7npUVDpVXUUOFfW6CgAqE=
279279
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8/go.mod h1:mdzfpAEoE6DHQEN0uh9ZbOCuHbLK5wOm7dK4ctXE9Tg=
280280
sigs.k8s.io/randfill v0.0.0-20250304075658-069ef1bbf016/go.mod h1:XeLlZ/jmk4i1HRopwe7/aU3H5n1zNUcX6TM94b3QxOY=
281281
sigs.k8s.io/randfill v1.0.0 h1:JfjMILfT8A6RbawdsK2JXGBR5AQVfd+9TbzrlneTyrU=
282282
sigs.k8s.io/randfill v1.0.0/go.mod h1:XeLlZ/jmk4i1HRopwe7/aU3H5n1zNUcX6TM94b3QxOY=
283-
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 h1:IUA9nvMmnKWcj5jl84xn+T5MnlZKThmUW1TdblaLVAc=
284-
sigs.k8s.io/structured-merge-diff/v4 v4.6.0/go.mod h1:dDy58f92j70zLsuZVuUX5Wp9vtxXpaZnkPGWeqDfCps=
283+
sigs.k8s.io/structured-merge-diff/v4 v4.7.0 h1:qPeWmscJcXP0snki5IYF79Z8xrl8ETFxgMd7wez1XkI=
284+
sigs.k8s.io/structured-merge-diff/v4 v4.7.0/go.mod h1:dDy58f92j70zLsuZVuUX5Wp9vtxXpaZnkPGWeqDfCps=
285+
sigs.k8s.io/structured-merge-diff/v6 v6.2.0 h1:msyqjP8Nyd5sF3QSmJouFSzcBIdwq4ct8d1/7VSBHIQ=
286+
sigs.k8s.io/structured-merge-diff/v6 v6.2.0/go.mod h1:M3W8sfWvn2HhQDIbGWj3S099YozAsymCo/wrT5ohRUE=
285287
sigs.k8s.io/yaml v1.4.0/go.mod h1:Ejl7/uTz7PSA4eKMyQCUTnhZYNmLIl+5c2lQPGR2BPY=
286288
sigs.k8s.io/yaml v1.6.0 h1:G8fkbMSAFqgEFgh4b1wmtzDnioxFCUgTZhlbj5P9QYs=
287289
sigs.k8s.io/yaml v1.6.0/go.mod h1:796bPqUfzR/0jLAl6XjHl3Ck7MiyVv8dbTdyT3/pMf4=

bindata/crds/crds.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13410,7 +13410,7 @@ spec:
1341013410
rabbitmq:
1341113411
properties:
1341213412
additionalConfig:
13413-
maxLength: 2000
13413+
maxLength: 100000
1341413414
type: string
1341513415
additionalPlugins:
1341613416
items:
@@ -13522,6 +13522,10 @@ spec:
1352213522
- PreferDualStack
1352313523
- RequireDualStack
1352413524
type: string
13525+
labels:
13526+
additionalProperties:
13527+
type: string
13528+
type: object
1352513529
type:
1352613530
default: ClusterIP
1352713531
enum:

bindata/crds/instanceha.openstack.org_instancehas.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ spec:
5353
bundle file
5454
type: string
5555
containerImage:
56-
description: ContainerImage for the the InstanceHa container (will
57-
be set to environmental default if empty)
56+
description: ContainerImage for the InstanceHa container (will be
57+
set to environmental default if empty)
5858
type: string
5959
fencingSecret:
6060
default: fencing-secret

0 commit comments

Comments
 (0)