Merge pull request #1061 from MatthiasWerning/bugfix/controller-init

Fix configmaps key in ResourceMap leading to controllers not being able to mark themselves as initialized
This commit is contained in:
Muhammad Safwan Karim
2025-12-10 15:35:31 +05:00
committed by GitHub
+2 -2
View File
@@ -7,7 +7,7 @@ import (
// ResourceMap are resources from where changes are going to be detected
var ResourceMap = map[string]runtime.Object{
"configMaps": &v1.ConfigMap{},
"configmaps": &v1.ConfigMap{},
"secrets": &v1.Secret{},
"namespaces": &v1.Namespace{},
"namespaces": &v1.Namespace{},
}