Compare commits

...

2 Commits

Author SHA1 Message Date
Ryan Heywood 98865551e7
add qvs.distrust.co domain 2025-03-25 01:47:25 -04:00
Ryan Heywood 2707ece971
bump ingress-nginx 2025-03-25 01:47:04 -04:00
3 changed files with 60 additions and 1 deletions
kustomizations
ingress-nginx/controller
website

View File

@ -9,4 +9,4 @@ resources:
- webhook.yaml
images:
- name: registry.k8s.io/ingress-nginx/controller
newTag: v1.7.1@sha256:7244b95ea47bddcb8267c1e625fb163fc183ef55448855e3ac52a7b260a60407
newTag: v1.12.1@sha256:d2fbc4ec70d8aa2050dd91a91506e998765e86c96f32cffb56c503c9c34eed5b

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