hazelcast-platform-operator icon indicating copy to clipboard operation
hazelcast-platform-operator copied to clipboard

Default value for cache-local-entries should be false [CN-854]

Open SeriyBg opened this issue 2 years ago • 0 comments

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-

SeriyBg avatar Sep 26 '23 09:09 SeriyBg