Compare commits

..

No commits in common. "b657037848a2df2c951034d7699b65f903432d3a" and "6de3bc638081f7fe2fa683c2eeae1d70c982e354" have entirely different histories.

4 changed files with 24 additions and 34 deletions

View File

@ -1,18 +1,16 @@
apiVersion: networking.k8s.io/v1 apiVersion: traefik.containo.us/v1alpha1
kind: Ingress kind: IngressRoute
metadata: metadata:
name: grafana-ingress name: grafana-ingress
namespace: monitoring namespace: monitoring
annotations:
kubernetes.io/ingress.class: "traefik-inter"
spec: spec:
ingressClassName: nginx-internal entryPoints:
rules: - websecure
- host: grafana.entos routes:
http: - kind: Rule
paths: match: Host(`grafana.entos`)
- path: / services:
pathType: Prefix - name: grafana-svc
backend: port: 80
service:
name: grafana-svc
port:
number: 80

View File

@ -3,9 +3,6 @@ kind: PersistentVolumeClaim
metadata: metadata:
name: grafana-pvc name: grafana-pvc
namespace: monitoring namespace: monitoring
labels:
recurring-job.longhorn.io/source: enabled
recurring-job-group.longhorn.io/standard-pvc: enabled
spec: spec:
accessModes: accessModes:
- ReadWriteOnce - ReadWriteOnce

View File

@ -3,9 +3,6 @@ kind: PersistentVolumeClaim
metadata: metadata:
name: loki-pvc name: loki-pvc
namespace: monitoring namespace: monitoring
labels:
recurring-job.longhorn.io/source: enabled
recurring-job-group.longhorn.io/standard-pvc: enabled
spec: spec:
accessModes: accessModes:
- ReadWriteOnce - ReadWriteOnce

View File

@ -1,18 +1,16 @@
apiVersion: networking.k8s.io/v1 apiVersion: traefik.containo.us/v1alpha1
kind: Ingress kind: IngressRoute
metadata: metadata:
name: prometheus-ingress name: prometheus-ingress
namespace: monitoring namespace: monitoring
annotations:
kubernetes.io/ingress.class: "traefik-inter"
spec: spec:
ingressClassName: nginx-internal entryPoints:
rules: - websecure
- host: prometheus.entos routes:
http: - kind: Rule
paths: match: Host(`prometheus.entos`)
- path: / services:
pathType: Prefix - name: prometheus-svc
backend: port: 9090
service:
name: prometheus-svc
port:
number: 9090