Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(change) add breaking finalizer change info #1555

Merged
merged 1 commit into from
Jul 15, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,17 @@

## [2.0.0-alpha.3] - TBD

#### Breaking changes

- Removed finalizers from resources due to challenges with the Kubernetes
side of their implementation and lack of a need for them in the controller
reconcilers. Because of the way Kubernetes handles finalizers, you will need
to either manually edit resources to remove "configuration.konghq.com/ingress"
from their finalizer list or use `kubectl delete --force` to remove them.
Kubernetes will prevent deletion of resources with finalizers, and alpha.3
will not automatically remove the finalizers previously added by alpha.2.
[#1522](https://github.com/Kong/kubernetes-ingress-controller/pull/1522)

#### Added

- Implemented Ingress status updates in 2.x.
Expand Down