我已经尝试了很多次,在Azure devops中设置此管道,我想在其中部署AKS群集并将istio放在顶部。
使用Terraform部署AKS效果很好。
此后,我尝试使用头盔安装istio,但是我使用的命令给出了禁止的错误。
helm.exe install --namespace istio-system --name istio-init --wait C:\Istio\install\kubernetes\helm\istio
我使用了本地路径,因为这是我可以找到头盔上找到我在构建代理上拥有的istio图表的唯一好方法。
错误消息
Error: release istio-init failed: clusterroles.rbac.authorization.k8s.io "istio-galley-istio-system" is forbidden: attempt to grant extra privileges: [{[*] [admissionregistration.k8s.io] [validatingwebhookconfigurations] [] []} {[get] [config.istio.io] [*] [] []} {[list] [config.istio.io] [*] [] []} {[watch] [config.istio.io] [*] [] []} {[get] [*] [deployments] [istio-galley] []} {[get] [*] [endpoints] [istio-galley] []}] user=&{system:serviceaccount:kube-system:tillerserviceaccount 56632fa4-55e7-11e9-a4a1-9af49f3bf03a [system:serviceaccounts system:serviceaccounts:kube-system system:authenticated] map[]} ownerrules=[] ruleResolutionErrors=[[clusterroles.rbac.authorization.k8s.io "cluster-admin" not found, clusterroles.rbac.authorization.k8s.io "system:discovery" not found, clusterroles.rbac.authorization.k8s.io "cluster-admin" not found, clusterroles.rbac.authorization.k8s.io "system:discovery" not found, clusterroles.rbac.authorization.k8s.io "system:discovery" not found, clusterroles.rbac.authorization.k8s.io "cluster-admin" not found]]
我使用的serviceaccount(在错误消息中可以看到的system:serviceaccount:kube-system:tillerserviceaccount)是使用以下rbac config配置的:
apiVersion: v1
kind: ServiceAccount
metadata:
name: tillerserviceaccount
namespace: kube-system
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: tillerbinding
roleRef:
apiGroup: ""
kind: ClusterRole
name: cluster-admin
subjects:
- kind: ServiceAccount
name: tillerserviceaccount
namespace: kube-system
错误消息仍然显示在ruleResolutionErrors中,它寻找集群管理员,但找不到。
我什至尝试了极端,并将所有服务帐户设置为集群管理员来进行测试:
kubectl create clusterrolebinding serviceaccounts-admins --clusterrole=cluster-admin --group=system:serviceaccounts
但是即使在那之后,我仍然遇到相同的错误,并具有相同的ruleResolutionErrors。
我被困在任何可以做的事情上的帮助。
答案 0 :(得分:1)
这是我们在开发集群中使用的角色绑定:
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: tillerbinding
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: cluster-admin
subjects:
- kind: ServiceAccount
name: tillerserviceaccount
namespace: kube-system
编辑:在这种情况下,错误是由于创建了没有RBAC的AKS而引起的。