Hi, I did set up a flink session cluster on K8s.
Now I added the ssl configuration as shown in the documentation: # Flink TLS security.ssl.internal.enabled: true security.ssl.internal.keystore: /config/internal-keystore/internal.keystore.jks security.ssl.internal.truststore: /config/internal-keystore/internal.keystore.jks security.ssl.internal.keystore-password: {{ .Values.keystore.password }} security.ssl.internal.truststore-password: {{ .Values.keystore.password }} security.ssl.internal.key-password: {{ .Values.keystore.password }} Now I get the problem that the task manager cannot connect to the job manager nor the resource manager: could not resolve ResourceManager address akka.ssl.tcp://flink@flink-sc-jobmanager:6123/user/rpc/resourcemanager_*, retrying in 10000 ms: Could not connect to rpc endpoint under address akka.ssl.tcp://flink@flink-sc-jobmanager:6123/user/rpc/resourcemanager_*. Do I need to change the job manager port to make this work? Any suggestions would be highly appreciated. Thanks. Patrick