add qvs.distrust.co domain

This commit is contained in:
Ryan Heywood 2025-03-25 01:47:25 -04:00
parent 2707ece971
commit 98865551e7
Signed by: ryan
GPG Key ID: 8E401478A3FBEF72
2 changed files with 59 additions and 0 deletions

View File

@ -30,3 +30,36 @@ spec:
targetPort: 8080
selector:
app: docs
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: docs-qvs
spec:
replicas: 2
selector:
matchLabels:
app: docs-qvs
template:
metadata:
labels:
app: docs-qvs
spec:
containers:
- name: docs-qvs
image: git.distrust.co/public/docs-qvs
imagePullPolicy: Always
ports:
- containerPort: 8080
---
apiVersion: v1
kind: Service
metadata:
name: docs-qvs
spec:
ports:
- name: http
port: 80
targetPort: 8080
selector:
app: docs-qvs

View File

@ -70,3 +70,29 @@ spec:
- hosts:
- docs.distrust.co
secretName: docs-tls
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: docs-qvs
annotations:
cert-manager.io/cluster-issuer: letsencrypt
external-dns.alpha.kubernetes.io/hostname: qvs.distrust.co
nginx.ingress.kubernetes.io/enable-cors: "true"
spec:
ingressClassName: nginx
rules:
- host: qvs.distrust.co
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: docs-qvs
port:
number: 80
tls:
- hosts:
- qvs.distrust.co
secretName: docs-qvs-tls