hazelcast-platform-operator
hazelcast-platform-operator copied to clipboard
Default value for cache-local-entries should be false [CN-854]
Execute the following command:
k get crd [maps.hazelcast.com](http://maps.hazelcast.com/) -o yaml | grep "cacheLocalEntries" -A 4
Result:
"nearCache": {
"description": "InMemoryFormat specifies near cache configuration for map",
"type": "object",
"properties": {
"cacheLocalEntries": {
"description": "CacheLocalEntries specifies whether the local entries are cached",
"type": "boolean",
"default": true
},
Expected result:
The default value should be true to be consistent with the Hazelcast Platform default: https://docs.hazelcast.org/docs/5.3.0/javadoc/com/hazelcast/config/NearCacheConfig.html#setCacheLocalEntries-boolean-