- Install Prometheus + Grafana via kube-prometheus-stack (ClusterIP only, no public ingress) - Deploy Tailscale Operator for secure VPN access to internal services - Add CNPG/PostgreSQL monitoring dashboards - Add vLLM inference monitoring dashboards (tokens, latency, GPU) - Add Cilium networking dashboards (policy, traffic, drops) - Update infra-controllers staging kustomization to include all controllers - Add monitoring-configs Flux sync for dashboard deployment - Update README with monitoring architecture and access instructions - Remove broken stale monitoring files (Azure Key Vault refs, wrong domains) Access: kubectl port-forward or Tailscale VPN (replace auth key before deploy)
41 lines
1.2 KiB
YAML
41 lines
1.2 KiB
YAML
# ─── Kustomization ──────────────────────────────────────────────────────────
|
|
|
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
namespace: customer1
|
|
|
|
resources:
|
|
- secret.yaml
|
|
- deployment.yaml
|
|
|
|
configMapGenerator:
|
|
- name: vwap-monitor-config
|
|
envs:
|
|
- config.env
|
|
|
|
patches:
|
|
- patch: |-
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: vwap-monitor
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: scanner
|
|
envFrom:
|
|
- configMapRef:
|
|
name: vwap-monitor-config
|
|
env:
|
|
- name: TELEGRAM_BOT_TOKEN
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: vwap-monitor-secrets
|
|
key: telegram-bot-token
|
|
- name: TELEGRAM_CHAT_ID
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: vwap-monitor-secrets
|
|
key: telegram-chat-id
|