Hi ,
I am looking to redirect the requests coming to my k8s cluster to external service .
I have traefik as the ingress controller in my google cloud cluster . I want to redirect the requests based on path to external service which is in google app engine .
My Ingress Route:
apiVersion: traefik.containo.us/v1alpha1
kind: IngressRoute
metadata:
name: test-svc-ingress
namespace: development
spec:
entryPoints:
- websecure
routes:
- match: Host(`test.domain.io`) && PathPrefix(`/test/prefix`)
kind: Rule
services:
- name: test-svc
port: 443
Service :
apiVersion: v1
kind: Service
metadata:
name: test-svc
namespace: development
spec:
type: ExternalName
externalName: external.domain.com