chore: update certs, remove test service

This commit is contained in:
Rob Watson 2025-04-29 08:52:20 +02:00
parent fa916f1772
commit 2b96782f8e
4 changed files with 4 additions and 43 deletions

View File

@ -8,9 +8,9 @@ spec:
issuerRef:
name: prod-letsencrypt
kind: ClusterIssuer
commonName: k3s.netflux.io
commonName: netflux.io
dnsNames:
- k3s.netflux.io
- netflux.io
- git.netflux.io
- grafana.netflux.io
- netflux.io

View File

@ -7,16 +7,9 @@ metadata:
spec:
rules:
- host: k3s.netflux.io
- host: netflux.io
http:
paths:
- path: /test
pathType: Prefix
backend:
service:
name: whoami
port:
number: 5678
- path: /
pathType: Prefix
backend:
@ -66,7 +59,7 @@ spec:
name: http
tls:
- hosts:
- k3s.netflux.io
- netflux.io
- grafana.netflux.io
- git.netflux.io
- caldav.netflux.io

View File

@ -1,20 +0,0 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: whoami
spec:
selector:
matchLabels:
app: whoami
replicas: 1
template:
metadata:
labels:
app: whoami
spec:
containers:
- name: whoami
image: traefik/whoami:v1.9.0
ports:
- containerPort: 80

View File

@ -1,12 +0,0 @@
apiVersion: v1
kind: Service
metadata:
name: whoami
spec:
type: ClusterIP
ports:
- port: 5678
targetPort: 80
selector:
app: whoami