This PR fixes an issue with storing namespaces. Since Set was used, deletion did not work because object used as key was different for delete event (object reference). As a result when namespace was deleted from the cluster, it was not propagated by synchronizer and outdated list of namespaces was used.
I changed it to Map to have namespace names as key.
This PR fixes an issue with storing namespaces. Since Set was used, deletion did not work because object used as key was different for delete event (object reference). As a result when namespace was deleted from the cluster, it was not propagated by synchronizer and outdated list of namespaces was used.
I changed it to Map to have namespace names as key.
Changes
Fixes
Checklist