new ports and proxies

This commit is contained in:
2025-03-06 19:40:19 -07:00
parent 072fc4e57e
commit eb5c89576e
5 changed files with 140 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: grafana-ingress
namespace: projects
annotations:
cert-manager.io/cluster-issuer: cloudflare-issuer
spec:
ingressClassName: nginx
tls:
- hosts:
- grafana.alexmickelson.guru
secretName: grafana-tls-cert
rules:
- host: grafana.alexmickelson.guru
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: grafana-service
port:
number: 3000
---
apiVersion: v1
kind: Service
metadata:
name: grafana-service
namespace: projects
spec:
type: ExternalName
externalName: 100.122.128.107