Files
bluejay-infra/apps-gx10/fc-system/clusterrole-php-web.json
2026-06-17 13:47:40 -05:00

114 lines
1.8 KiB
JSON

{
"apiVersion": "rbac.authorization.k8s.io/v1",
"kind": "ClusterRole",
"metadata": {
"name": "php-web"
},
"rules": [
{
"apiGroups": [
""
],
"resources": [
"namespaces",
"pods",
"services",
"secrets",
"configmaps",
"persistentvolumeclaims"
],
"verbs": [
"get",
"list",
"watch",
"create",
"update",
"patch",
"delete"
]
},
{
"apiGroups": [
"apps"
],
"resources": [
"deployments"
],
"verbs": [
"get",
"list",
"watch",
"create",
"update",
"patch",
"delete"
]
},
{
"apiGroups": [
""
],
"resources": [
"pods/log",
"pods/exec"
],
"verbs": [
"get",
"create"
]
},
{
"apiGroups": [
"traefik.io"
],
"resources": [
"ingressroutes",
"middlewares"
],
"verbs": [
"get",
"list",
"watch",
"create",
"update",
"patch",
"delete"
]
},
{
"apiGroups": [
"cert-manager.io"
],
"resources": [
"certificates"
],
"verbs": [
"get",
"list",
"watch",
"create",
"update",
"patch",
"delete"
]
},
{
"apiGroups": [
"flowercore.io"
],
"resources": [
"phpapplicationcrds"
],
"verbs": [
"get",
"list",
"watch",
"create",
"update",
"patch",
"delete"
]
}
]
}