Hi all, I’m using minikube 1.29.0 on my Mac machine and enabled on it istio and istio-provisioner addons.
Then I created a namespace and added to it the label istio-injection=enabled.
Then I created an helm chart to install an app and I would like to add it also the resource
apiVersion: security.istio.io/v1beta1
kind: PeerAuthentication
metadata:
name: test
spec:
selector:
matchLabels:
app: testapp
mtls:
mode: STRICT
portLevelMtls:
61616:
mode: DISABLE
but I got this error
Error: INSTALLATION FAILED: unable to build kubernetes objects from release manifest: resource mapping not found for name: "mqtt-broker" namespace: "" from "": no matches for kind "PeerAuthentication" in version "security.istio.io/v1beta1"
ensure CRDs are installed first
I would have expected that enabling istio addons by default installed also the istio crd. What I’m doing wrong?