Secure Model Endpoints
Learn how to secure model endpoints in Seldon Core, including authentication, authorization, and TLS configuration.
Securing Endpoints with Istio
apiVersion: security.istio.io/v1beta1
kind: RequestAuthentication
metadata:
name: ingress-jwt-auth
namespace: istio-system # This is the namespace where Istio Ingress Gateway usually resides
spec:
selector:
matchLabels:
istio: istio-ingressgateway # Apply to Istio Ingress Gateway pods
jwtRules:
- issuer: <OIDC_TOKEN_ISSUER>
jwksUri: <OIDC_TOKEN_ISSUER_JWKS>Last updated
Was this helpful?

