fp/infrastructure/controllers/kube-prometheus-stack.yaml

72 lines
1.8 KiB
YAML
Raw Normal View History

2024-06-21 01:20:33 +00:00
## We use this chisel exit node to save money.
## The exit node is a VPS which cost $5 a month and can handle ingress for multiple services.
## If we used VKE ingress, it would be $10 a month and it's only good for one service.
## chisel on this budget VPS is only useful for low-traffic admin tools.
## For visitor facing production workloads, we pay for the good stuff.
---
apiVersion: chisel-operator.io/v1
kind: ExitNode
metadata:
name: grafana-exit-node
namespace: futureporn
spec:
2024-06-21 01:32:22 +00:00
host: "155.138.254.201"
2024-06-21 01:20:33 +00:00
port: 9090
auth: chisel
2024-06-21 00:56:36 +00:00
---
apiVersion: source.toolkit.fluxcd.io/v1
kind: HelmRepository
metadata:
name: prometheus-community
namespace: futureporn
spec:
interval: 24h
url: https://prometheus-community.github.io/helm-charts
---
apiVersion: helm.toolkit.fluxcd.io/v2
kind: HelmRelease
metadata:
name: prometheus
namespace: futureporn
spec:
interval: 30m
chart:
spec:
chart: kube-prometheus-stack
version: "60.3.0"
sourceRef:
kind: HelmRepository
name: prometheus-community
namespace: futureporn
interval: 12h
values:
prometheus:
prometheusSpec:
storageSpec:
volumeClaimTemplate:
spec:
2024-06-21 01:09:30 +00:00
storageClassName: vultr-block-storage-hdd
2024-06-21 00:56:36 +00:00
resources:
requests:
2024-06-21 01:09:30 +00:00
storage: 40Gi
2024-06-21 00:56:36 +00:00
grafana:
2024-06-21 01:20:33 +00:00
service:
metadata:
annotations:
chisel-operator.io/exit-node-name: "grafana-exit-node"
2024-06-21 01:02:07 +00:00
admin:
existingSecret: grafana
2024-06-21 00:56:36 +00:00
sidecar:
dashboards:
enabled: true
defaultFolderName: "General"
label: grafana_dashboard
labelValue: "1"
folderAnnotation: grafana_folder
searchNamespace: ALL
provider:
foldersFromFilesStructure: true