我使用Istio在GKE上启用了istio。根据图片,Istio的版本是1.6。包含RequestAuthentication资源的应用程序的部署会导致以下错误:
admission webhook "pilot.validation.istio.io" denied the request:
unrecognized type RequestAuthenticationRequestAuthentication必须在1.6版本中可用。有什么办法检查兼容性吗?
更新:在我的前提安装,所有的工作与Istio 1.9。配置如下:
apiVersion: security.istio.io/v1beta1
kind: RequestAuthentication
metadata:
name: xxx-auth
spec:
selector:
matchLabels:
app: xxx-fe
jwtRules:
- issuer: "{{ .Values.idp.issuer }}"
jwksUri: "{{ .Values.idp.jwksUri }}"发布于 2021-08-30 07:45:55
https://stackoverflow.com/questions/68818678
复制相似问题