This message was deleted.
# general
m
This message was deleted.
f
I run kratos + oathkeeper + istio. It works 🙂
a
How is tariff flow & how you integrated ory(ykratos + oath keeper) & istio. What practice you are following @faint-insurance-61054
f
there is actually nothing special. I have istio virtual services for the public services
Copy code
apiVersion: <http://networking.istio.io/v1alpha3|networking.istio.io/v1alpha3>
kind: VirtualService
metadata:
  name: {{ .Chart.Name }}-public
  labels:
    app: {{ .Chart.Name }}
spec:
  hosts:
  - auth.{{ .Values.domain }}
  gateways:
  - istio-ingress/http-gateway
  http:
  - name: kratos-public
    route:
    - destination:
        host: {{ include "kratos.name" . }}-public
        port:
          number: {{ .Values.service.public.port }}
this is a HELM template
I use istio gateway for ingress and virtual services. That’s all.
👍 1