49 lines
1.4 KiB
YAML
49 lines
1.4 KiB
YAML
# services/comms/atlasbot-rbac.yaml
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: atlasbot
|
|
namespace: ai
|
|
imagePullSecrets:
|
|
- name: harbor-regcred
|
|
---
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: ClusterRole
|
|
metadata:
|
|
name: atlasbot-readonly
|
|
rules:
|
|
- apiGroups: [""]
|
|
resources: ["namespaces", "nodes", "pods", "services", "endpoints", "events"]
|
|
verbs: ["get", "list", "watch"]
|
|
- apiGroups: ["apps"]
|
|
resources: ["deployments", "statefulsets", "daemonsets", "replicasets"]
|
|
verbs: ["get", "list", "watch"]
|
|
- apiGroups: ["networking.k8s.io"]
|
|
resources: ["ingresses"]
|
|
verbs: ["get", "list", "watch"]
|
|
- apiGroups: ["traefik.io"]
|
|
resources: ["ingressroutes", "middlewares", "serverstransports"]
|
|
verbs: ["get", "list", "watch"]
|
|
- apiGroups: ["kustomize.toolkit.fluxcd.io"]
|
|
resources: ["kustomizations"]
|
|
verbs: ["get", "list", "watch"]
|
|
- apiGroups: ["helm.toolkit.fluxcd.io"]
|
|
resources: ["helmreleases"]
|
|
verbs: ["get", "list", "watch"]
|
|
- apiGroups: ["source.toolkit.fluxcd.io"]
|
|
resources: ["gitrepositories", "helmrepositories", "buckets"]
|
|
verbs: ["get", "list", "watch"]
|
|
---
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: ClusterRoleBinding
|
|
metadata:
|
|
name: atlasbot-readonly
|
|
roleRef:
|
|
apiGroup: rbac.authorization.k8s.io
|
|
kind: ClusterRole
|
|
name: atlasbot-readonly
|
|
subjects:
|
|
- kind: ServiceAccount
|
|
name: atlasbot
|
|
namespace: ai
|