uptimekuma for kubernetes

This commit is contained in:
Tomás Limpinho
2026-04-30 14:55:25 +01:00
parent bdd082160f
commit 643959ea2f
26 changed files with 691 additions and 1 deletions

View File

@ -0,0 +1,27 @@
apiVersion: v1
kind: ServiceAccount
metadata:
name: uptime-kuma-sync
namespace: monitoring
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: uptime-kuma-sync
rules:
- apiGroups: [""]
resources: ["services"]
verbs: ["get", "list"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: uptime-kuma-sync
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: uptime-kuma-sync
subjects:
- kind: ServiceAccount
name: uptime-kuma-sync
namespace: monitoring