Let's say we have many microservices running on k8s with deployments, services and ingresses accessible with kong ingress gateway on api.localhost.
Each microservice run on specific path, e.g.
api.localhost/foo
for foo microserviceapi.localhost/bar
for bar microservice
How to achieve this with Knative with Kong network layer? Something like this doesn't work:
apiVersion: serving.knative.dev/v1
kind: Service
metadata:
name: foo-api
labels:
networking.knative.dev/visibility: cluster-local
spec:
template:
spec:
containers:
- image: foo-image
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
annotations:
kubernetes.io/ingress.class: kong
konghq.com/strip-path: "true"
ingress.kubernetes.io/service-upstream: "true"
name: foo
spec:
rules:
- host: api.localhost
http:
paths:
- backend:
service:
name: foo-api
port:
number: 80
path: /foo
pathType: ImplementationSpecific
https://github.com/Kong/kubernetes-ingress-controller/issues/584 https://knative.dev/docs/serving/samples/knative-routing-go/
I found this solution
https://github.com/Kong/kubernetes-ingress-controller/issues/706
But I need the correct host header in my service in a matter of multi-tenancy.