I'm trying to create an internal ingress for inter-cluster communication with gke. The service that I'm trying to expose is headless and points to a kafka-broker on the cluster.
However when I try to load up the ingress, it says it cannot find the service?
Warning Sync 3m22s (x17 over 7m57s) loadbalancer-controller Error syncing to GCP: error running load balancer syncing routine: loadbalancer coilwp7v-redpanda-test-abc123-redpanda-japm3lph does not exist: googleapi: Error 400: Invalid value for field 'resource.target': 'https://www.googleapis.com/compute/v1/projects/abc-123/regions/europe-west2/targetHttpProxies/k8s2-tp-coilwp7v-redpanda-test-abc123-redpanda-japm3lph'. A reserved and active subnetwork is required in the same region and VPC as the forwarding rule., invalid
Ingress:
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: abc-redpanda
namespace: redpanda-test
annotations:
kubernetes.io/ingress.class: "gce-internal"
spec:
defaultBackend:
service:
name: redpanda-service
port:
number: 9092
Service:
apiVersion: v1
kind: Service
metadata:
name: redpanda-service
namespace: redpanda-test
annotations:
io.cilium/global-service: "true"
cloud.google.com/neg: '{"ingress": true}'
labels:
app: abc-panda
spec:
type: ExternalName
externalName: redpanda-cluster-0.redpanda-cluster.redpanda-test.svc.cluster.local
ports:
- port: 9092
targetPort: 9092
"A reserved and active subnetwork is required in the same region and VPC as the forwarding rule."
Did you follow all the required steps, described here ? – mario