Fix configmaps key in ResourceMap leading to controllers not being able to mark themselves as initialized

This commit is contained in:
Matthias Werning
2025-12-10 09:10:52 +01:00
parent d409b79a11
commit 27fb47ff52

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{},
}