feat(portfolio): add staging environment
This commit is contained in:
parent
0dda9f282d
commit
13ea8de355
11 changed files with 339 additions and 0 deletions
31
apps/portfolio/overlays/prod-sites/ingress.yaml
Normal file
31
apps/portfolio/overlays/prod-sites/ingress.yaml
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: portfolio
|
||||
labels:
|
||||
app.kubernetes.io/name: portfolio
|
||||
annotations:
|
||||
cert-manager.io/cluster-issuer: letsencrypt-issuer
|
||||
nginx.ingress.kubernetes.io/whitelist-source-range: 192.168.1.1/16
|
||||
|
||||
gethomepage.dev/enabled: "true"
|
||||
gethomepage.dev/name: Portfolio
|
||||
gethomepage.dev/group: Sites
|
||||
gethomepage.dev/href: https://portfolio-test.int.nc.landry.land
|
||||
# gethomepage.dev/description:
|
||||
# gethomepage.dev/icon: syncthing
|
||||
spec:
|
||||
tls:
|
||||
- hosts:
|
||||
- "portfolio-test.int.nc.landry.land"
|
||||
rules:
|
||||
- host: "portfolio-test.int.nc.landry.land"
|
||||
http:
|
||||
paths:
|
||||
- path: "/"
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: portfolio
|
||||
port:
|
||||
name: http
|
||||
Loading…
Add table
Add a link
Reference in a new issue