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
{{ message }}
This repository was archived by the owner on Mar 3, 2025. It is now read-only.
Currently the CatalogSource controller creates Package resources when reconciling a CatalogSource CR. It doesn't do any special naming logic to ensure uniqueness of Package resources being created which means that if multiple catalogs define a package of the same name (but are technically different), there will be a naming clash resulting in an error creating the corresponding Package resource.
We should evaluate what our options are to prevent this naming clash.
One suggestion is to see what options we have to specify the Package admission criteria on our custom apiserver. For more context see: #1 (comment)
Currently the
CatalogSourcecontroller createsPackageresources when reconciling aCatalogSourceCR. It doesn't do any special naming logic to ensure uniqueness ofPackageresources being created which means that if multiple catalogs define a package of the same name (but are technically different), there will be a naming clash resulting in an error creating the correspondingPackageresource.We should evaluate what our options are to prevent this naming clash.
One suggestion is to see what options we have to specify the
Packageadmission criteria on our custom apiserver. For more context see: #1 (comment)