Adds victoria-metrics-single, grafana, kube-state-metrics, and node-exporter to the cluster. Enables metrics endpoints on traefik, argocd, and cert-manager for scraping. Grafana available at grafana.tr1ceracop.de with VictoriaMetrics as default datasource. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
31 lines
714 B
YAML
31 lines
714 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
annotations:
|
|
a8r.io/repository: ssh://git@git.tr1ceracop.de:222/gitea_admin/k8s-and-chill.git
|
|
labels:
|
|
app.kubernetes.io/instance: traefik-traefik
|
|
app.kubernetes.io/managed-by: Helm
|
|
app.kubernetes.io/name: traefik
|
|
helm.sh/chart: traefik-39.0.5
|
|
name: traefik
|
|
namespace: traefik
|
|
spec:
|
|
ports:
|
|
- name: metrics
|
|
port: 9100
|
|
protocol: TCP
|
|
targetPort: metrics
|
|
- name: web
|
|
port: 80
|
|
protocol: TCP
|
|
targetPort: web
|
|
- name: websecure
|
|
port: 443
|
|
protocol: TCP
|
|
targetPort: websecure
|
|
selector:
|
|
app.kubernetes.io/instance: traefik-traefik
|
|
app.kubernetes.io/name: traefik
|
|
type: ClusterIP
|