is it possible to change quarkus.hazelcast-client.cluster-members=hazelcast:5701 to 127.0.0.1 but in kubernetes (not in application.properties)? For example in ConfigMap?
My configmap looks like this:
hazelcast.yaml: |-
hazelcast:
network:
join:
multicast:
enabled: false
kubernetes:
enabled: true
namespace: dev-1
service-port: 5701
And I'm using hazelcast as sidecar container for my application.
For Hazelcast configuration, you can override properties in different ways:
However, your question relates to Quarkus and not Hazelcast. Quarkus also offers a couple of configuration override techniques:
$PWD/config/application.properties
application.properties
in classpathIn this regard, @Turing85 comment is correct.