I create an input resource (tls enabled) using the following configurations:
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: my-app-apis
spec:
tls:
- secretName: tls-secret
backend:
serviceName: my-web-service
servicePort: 80
A new static IP address is provided each time. Is it possible to reuse an existing one?
(I am using Kubernetes running on GKE)
source
share