Files
ced-k3s-homelab/manifests/ingress/prometheus-ingress.yaml
T

20 lines
441 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: prometheus-ingress
namespace: monitoring
annotations:
kubernetes.io/ingress.class: "nginx"
spec:
rules:
- host: prometheus.local
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: ceds-noc-kube-prometheus-s-prometheus
port:
number: 9090