Hello,
I am using Istio v1.1.5 on GKE.
I deployed manually Istio using the helm chart and I am trying to setup the RBAC (https://istio.io/docs/reference/config/authorization/istio.rbac.v1alpha1/).
I have created the ClusterRbacConfig
apiVersion: "rbac.istio.io/v1alpha1"
kind: ClusterRbacConfig
metadata:
name: default
spec:
mode: 'ON'
However I can still access all my services.
I already tried to follow many suggestions:
- enable MTLS
- create destination rule with ISTIO_MUTUAL (got a code 56 error)
- etc.
I am not yet working on ServiceRole
/ServiceRoleBinding
, what I would like as the moment is to get the Access Denied
error if I call any of my services.
Thanks for your help.