Compare commits
2 Commits
27a5916409
...
98865551e7
Author | SHA1 | Date |
---|---|---|
|
98865551e7 | |
|
2707ece971 |
|
@ -9,4 +9,4 @@ resources:
|
||||||
- webhook.yaml
|
- webhook.yaml
|
||||||
images:
|
images:
|
||||||
- name: registry.k8s.io/ingress-nginx/controller
|
- name: registry.k8s.io/ingress-nginx/controller
|
||||||
newTag: v1.7.1@sha256:7244b95ea47bddcb8267c1e625fb163fc183ef55448855e3ac52a7b260a60407
|
newTag: v1.12.1@sha256:d2fbc4ec70d8aa2050dd91a91506e998765e86c96f32cffb56c503c9c34eed5b
|
||||||
|
|
|
@ -30,3 +30,36 @@ spec:
|
||||||
targetPort: 8080
|
targetPort: 8080
|
||||||
selector:
|
selector:
|
||||||
app: docs
|
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
|
||||||
|
|
|
@ -70,3 +70,29 @@ spec:
|
||||||
- hosts:
|
- hosts:
|
||||||
- docs.distrust.co
|
- docs.distrust.co
|
||||||
secretName: docs-tls
|
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
|
||||||
|
|
Loading…
Reference in New Issue