I have a gateway, with TLS termination at the gateway using mode SIMPLE (see below snippet)
spec:
selector:
istio: ingressgateway # use Istio's default ingress gateway
servers:
- port:
name: https
number: 443
protocol: https
tls:
mode: SIMPLE
serverCertificate: /etc/istio/ingressgateway-certs/tls.crt
privateKey: /etc/istio/ingressgateway-certs/tls.key
minProtocolVersion: TLSV1_2
maxProtocolVersion: TLSV1_3
hosts:
- "*"
- port:
name: http
number: 80
protocol: http
tls:
httpsRedirect: true
minProtocolVersion: TLSV1_2
maxProtocolVersion: TLSV1_3
hosts:
- "*"
I have a requirement where I need to be able to trust a specific root along with all the others I already am trusting (part of the list of ca-certificates of istio gateway). Keeping in mind, I cannot change the mode here to MUTUAL, is it possible to add the trusted root?