You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit modifies the suggested format for finalizers
from <finalizer-name>.<qualified-group> to <qualified-group>/<finalizer-name>,
which is the recommended format in k8s docs. This change is
not breaking because technically any name format is allowed
Signed-off-by: Eric Stroczynski <[email protected]>
Changed the suggested finalizer format to `<qualified-group>/<finalizer-name>`
4
+
kind: change
5
+
migration:
6
+
header: Change your operator's finalizer names
7
+
body: >
8
+
The finalizer name format suggested by [Kubernetes docs](https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/#finalizers)
9
+
is `<qualified-group>/<finalizer-name>`, while the format previously documented by Operator SDK docs was
10
+
`<finalizer-name>.<qualified-group>`. If your operator uses any finalizers with names matching the incorrect format,
11
+
change them to match the official format.
12
+
For example, `finalizer.cache.example.com` should be changed to `cache.example.com/finalizer`.
0 commit comments