- 0.9.0 changes the API group used for the Kong CRD to
charts.konghq.com
. This is necessary to comply with new requirements for*.k8s.io
groups enforced by Kubernetes 1.22 and newer. Because of this change, you cannot upgrade to 0.9.0 from previous releases of the operator, and must manually copy configuration from your existing kongs.charts.helm.k8s.io CRs into new kongs.charts.konghq.com CRs. See the "Upgrading from previous versions" section below for detailed instructions. - Chart 2.4 updates the default version of KIC to 2.0. If you do not override your KIC version to an older 1.x version and you use a database, you should temporarily disable KIC before upgrading it to 2.0 to avoid database inconsistency.
- ServiceAccount configuration has a new location inside Kong custom resources to support configurations that require a ServiceAccount but do not use the ingress controller.
- Various resources now use updated API versions
for compatibility with newer Kubernetes releases. These versions require
Kubernetes 1.16 or newer. Note that the upgraded Ingress resources now use
the
ingressClassName
field: you should removeingress.class
annotations and set their value iningressClassName
to account for changes to the Ingress spec. - The Pod disruption budget default has changed
to allow support for the
minUnavailable
setting. You may wish to restore the older default if you are upgrading from a previous version.
0.9.0 changes the CRD API group used by this operator. The new
kongs.charts.konghq.com
CRD and old kongs.charts.helm.k8s.io
CRD have
identical specs, but you must manually copy data into new CRs to migrate your
configuration. We recommend backing up your cluster prior to migrating.
Because the old CRD is not compatible with Kubernetes 1.22, you must complete these steps on Kubernetes 1.21 or older. To migrate your configuration:
- Install the new CRD:
kubectl create -f https://raw.githubusercontent.com/Kong/kong-operator/v0.9.0/deploy/crds/charts_v1alpha1_kong_crd.yaml
- Using jq, create new CRs from your
existing CRs:
kubectl get kongs.charts.helm.k8s.io --all-namespaces -o json | jq ".items[] | del(.metadata.uid, .metadata.creationTimestamp, .metadata.generation, .metadata.resourceVersion) | .apiVersion=\"charts.konghq.com/v1alpha1\"" | kubectl create -f -
- Plan an outage window where you will upgrade to Kubernetes 1.22 and install the new operator. Because you will uninstall previous versions of the operator, there will be a period when your Kong instances will not be available.
- Begin your outage window. Delete existing Kong instances and remove the
operator CRD:
This will stop all running Kong instances.
kubectl delete kongs --all-namespaces --all
- Uninstall the Kong operator
and run
kubectl delete crds kongs.charts.helm.k8s.io
to remove the old CRD. - Install Kong operator 0.9.0 by creating a new subscription
with
startingCSV: kong.v0.9.0
. - Check the status of your Kong instances with
kubectl get deploy
in namespaces you've installed Kong. 0.9.0 should detect the new CRs and start Kong instances automatically.
- Upgraded to chart 2.4. See the chart changelog for full details.
- Upgraded the Kong CRD API version to
apiextensions.k8s.io/v1
for compatibility with Kubernetes 1.22 and newer.
- Chart 2.1 includes 2.0 changes. 2.0 ends support for Helm 2 and removes support for all deprecated configuration in 1.14. Please review the 2.0 upgrade guide for details.
- Bintray, the Docker registry previously used for several Kong images, is
discontinuing service. Affected images have moved to Docker Hub. The latest
defaults reflect this, but existing your existing Kong custom resources may
still reference the old repositories. Review your CRs to see if they contain
bintray.io
, and if so, replace those repositories with the repositories in the 2.1 values.yaml.
- Updated Helm chart to 2.1.
- Updated existing OLM CSVs to use the Docker Hub repo for the operator image.
- Chart 1.14 introduces breaking changes to proxy Ingress configuration and readiness/liveness monitors. Please see the 1.14 upgrade instructions for further details.
- Updated Helm chart to 1.14.
- Updated Helm chart to 1.12.
- Chart 1.11 introduces a number of breaking changes, both in the chart itself and in its dependencies. Please read through the upgrade instructions for chart 1.9, chart 1.10, and chart 1.11 for details.
- In particular, if you use a Postgres-backed deployment, review the chart 1.9 instructions for the new Postgres readiness check script. These changes require that you perform an initial upgrade without changing the Kong image version with migrations disabled before re-enabling migrations and setting a new Kong image.
- Updated Helm chart to 1.11.
- Updated Helm chart to 1.8.
- Updated Helm chart to 1.7.
- Added parallel fork/certified branch for the certified version of the Kong Operator.
- Added CHANGELOG.md with historical changes through 0.2.6.
- Updated Helm chart to 1.5.
- Reworked ALM examples.
- Provided
replaces
metadata for moving from 0.1.0 to 0.2.6.