apps
adguard
finance
homarr
homeassistant
immich
media
monitoring
grafana.ingress.yaml
grafana.pvc.yaml
grafana.values.yaml
influxdb.pvc.yaml
influxdb.values.yaml
kustomization.yaml
namespace.yaml
prometheus.yaml
telegraf-speedtest.values.yaml
nextcloud
ntfy
rss
syncthing
whoami
infrastructure
kluster-deployments
.gitignore
README.md
renovate.json
71 lines
1.3 KiB
YAML
71 lines
1.3 KiB
YAML
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: prometheus
|
|
---
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: ClusterRole
|
|
metadata:
|
|
name: prometheus
|
|
rules:
|
|
- apiGroups: [""]
|
|
resources:
|
|
- nodes
|
|
- nodes/metrics
|
|
- services
|
|
- endpoints
|
|
- pods
|
|
verbs: ["get", "list", "watch"]
|
|
- apiGroups: [""]
|
|
resources:
|
|
- configmaps
|
|
verbs: ["get"]
|
|
- apiGroups:
|
|
- networking.k8s.io
|
|
resources:
|
|
- ingresses
|
|
verbs: ["get", "list", "watch"]
|
|
- nonResourceURLs: ["/metrics"]
|
|
verbs: ["get"]
|
|
---
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: ClusterRoleBinding
|
|
metadata:
|
|
name: prometheus
|
|
roleRef:
|
|
apiGroup: rbac.authorization.k8s.io
|
|
kind: ClusterRole
|
|
name: prometheus
|
|
subjects:
|
|
- kind: ServiceAccount
|
|
name: prometheus
|
|
# namespace: default
|
|
---
|
|
apiVersion: monitoring.coreos.com/v1
|
|
kind: Prometheus
|
|
metadata:
|
|
name: prometheus
|
|
spec:
|
|
serviceAccountName: prometheus
|
|
serviceMonitorSelector: # match all service monitors by default
|
|
matchLabels: {}
|
|
serviceMonitorNamespaceSelector: # match all namespaces by default
|
|
matchLabels: {}
|
|
resources:
|
|
requests:
|
|
memory: 400Mi
|
|
enableAdminAPI: false
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: prometheus
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- port: 9090
|
|
targetPort: 9090
|
|
protocol: TCP
|
|
selector:
|
|
prometheus: prometheus
|