Kubernetes version: 1.28
I have a service (dovecot) and want port 110 it to be exposed.
I tried Service type LoadBalancer - worked - I could connect to the external IP port 110
But if I delete the service and recrate it - I get the next IP from the external-pool.
Defining an IP with loadBalancerIP is ignored - externalIPs adds the wanted IP to the external IPs but gets no connection.
is this normal?
apiVersion: v1
kind: Service
metadata:
name: mda-srv-ext
namespace: mail
spec:
type: LoadBalancer
selector:
app: mda
ports:
- name: pop3
protocol: TCP
port: 110
targetPort: 110
Regards … Kim