Skip to content

Commit b007725

Browse files
authored
fix: expect KonnectGatewayControlPlane CRD in version v1alpha2 (#2393) (#2396)
1 parent 4bbb01d commit b007725

File tree

2 files changed

+29
-3
lines changed

2 files changed

+29
-3
lines changed

CHANGELOG.md

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
## Table of Contents
44

5+
- [v2.0.4](#v204)
56
- [v2.0.3](#v203)
7+
- [v2.0.2](#v202)
68
- [v2.0.1](#v201)
79
- [v2.0.0](#v200)
810
- [v1.6.2](#v162)
@@ -32,6 +34,15 @@
3234
- [v0.1.1](#v011)
3335
- [v0.1.0](#v010)
3436

37+
## [v2.0.4]
38+
39+
> Release date: 2025-10-03
40+
41+
### Fixes
42+
43+
- Fix problem with starting operator when Konnect is enabled and conversion webhook disabled.
44+
[#2392](https://github.com/Kong/kong-operator/issues/2392)
45+
3546
## [v2.0.3]
3647

3748
> Release date: 2025-09-30
@@ -50,6 +61,19 @@
5061
is mirrored from an existing control plane in Konnect.
5162
[#2343](https://github.com/Kong/kong-operator/pull/2343)
5263

64+
## [v2.0.2]
65+
66+
> Release date: 2025-09-22
67+
68+
### Fixes
69+
70+
- Cleanup old objects when new `ControlPlane` is ready.
71+
Remove old finalizers from `ControlPlane` when cleanup is done.
72+
[#2317](https://github.com/Kong/kong-operator/pull/2317)
73+
- Mark `Gateway`'s listeners as Programmed when `DataPlane` and its `Services` are ready.
74+
This prevents downtime during KGO -> KO upgrades and in upgrades between KO versions.
75+
[#2317](https://github.com/Kong/kong-operator/pull/2317)
76+
5377
## [v2.0.1]
5478

5579
> Release date: 2025-09-17
@@ -1354,7 +1378,9 @@ leftovers from previous operator deployments in the cluster. The user needs to d
13541378
(clusterrole, clusterrolebinding, validatingWebhookConfiguration) before
13551379
re-installing the operator through the bundle.
13561380

1357-
[v2.0.3]: https://github.com/Kong/kong-operator/compare/v2.0.1..v2.0.3
1381+
[v2.0.4]: https://github.com/Kong/kong-operator/compare/v2.0.3..v2.0.4
1382+
[v2.0.3]: https://github.com/Kong/kong-operator/compare/v2.0.2..v2.0.3
1383+
[v2.0.2]: https://github.com/Kong/kong-operator/compare/v2.0.1..v2.0.2
13581384
[v2.0.1]: https://github.com/Kong/kong-operator/compare/v2.0.0..v2.0.1
13591385
[v2.0.0]: https://github.com/Kong/kong-operator/compare/v1.6.2..v2.0.0
13601386
[v1.6.2]: https://github.com/Kong/kong-operator/compare/v1.6.1..v1.6.2

modules/manager/controller_setup.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,8 @@ func SetupControllers(mgr manager.Manager, c *Config, cpsMgr *multiinstance.Mana
206206
Resource: "konnectextensions",
207207
},
208208
{
209-
Group: konnectv1alpha1.SchemeGroupVersion.Group,
210-
Version: konnectv1alpha1.SchemeGroupVersion.Version,
209+
Group: konnectv1alpha2.SchemeGroupVersion.Group,
210+
Version: konnectv1alpha2.SchemeGroupVersion.Version,
211211
Resource: "konnectgatewaycontrolplanes",
212212
},
213213
{

0 commit comments

Comments
 (0)