golang-im聊天
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

36 строки
694 B

  1. # 为pod中的服务赋予发现服务和读取配置的权限
  2. apiVersion: rbac.authorization.k8s.io/v1
  3. kind: ClusterRole
  4. metadata:
  5. name: pod-role
  6. namespace: gim
  7. rules:
  8. - apiGroups:
  9. - ""
  10. resources:
  11. - pods
  12. - pods/status
  13. - services
  14. - services/status
  15. - endpoints
  16. - endpoints/status
  17. - configmaps
  18. - configmaps/status
  19. verbs:
  20. - get
  21. - list
  22. - watch
  23. ---
  24. apiVersion: rbac.authorization.k8s.io/v1
  25. kind: ClusterRoleBinding
  26. metadata:
  27. name: argo-namespaces-binding
  28. roleRef:
  29. apiGroup: rbac.authorization.k8s.io
  30. kind: ClusterRole
  31. name: pod-role
  32. subjects:
  33. - kind: ServiceAccount
  34. name: default
  35. namespace: gim