Install Kong Operator (KO)
How do I install Kong Operator?
helm upgrade --install kong-operator kong/kong-operator -n kong-system --create-namespace \
--set env.ENABLE_CONTROLLER_KONNECT=true
Copied!
Optional: manage webhook certificates with cert-manager
If you want cert-manager to issue and rotate the admission and conversion webhook certificates, install cert-manager to your cluster and enable cert-manager integration when installing the chart:
helm upgrade --install kong-operator kong/kong-operator -n kong-system --create-namespace \
--set env.ENABLE_CONTROLLER_KONNECT=true \
--set global.webhooks.options.certManager.enabled=true
Copied!
If you do not enable this, the chart will generate and inject self-signed certificates automatically. This is fine for development; for production we recommend enabling cert-manager.