We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33e72a5 commit e277602Copy full SHA for e277602
cmd/memberagent/main.go
@@ -177,6 +177,12 @@ func main() {
177
DefaultNamespaces: map[string]cache.Config{
178
mcNamespace: {},
179
},
180
+ // Strip managed fields from the objects to reduce memory usage.
181
+ //
182
+ // Note (chenyu1): the work applier does read the managedFields field,
183
+ // however, it concerns only objects from the member cluster side, which
184
+ // are not managed by this cache.
185
+ DefaultTransform: cache.TransformStripManagedFields(),
186
187
}
188
0 commit comments