33 lines
832 B
YAML
33 lines
832 B
YAML
---
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: darkchestofwonders.us
|
|
labels:
|
|
app.kubernetes.io/name: darkchestofwonders.us
|
|
app.kubernetes.io/component: darkchestofwonders.us
|
|
app.kubernetes.io/part-of: darkchestofwonders.us
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: zerossl
|
|
cert-manager.io/private-key-algorithm: ECDSA
|
|
nginx.ingress.kubernetes.io/ssl-redirect: "false"
|
|
nginx.ingress.kubernetes.io/proxy-body-size: 100m
|
|
spec:
|
|
ingressClassName: nginx
|
|
tls:
|
|
- hosts:
|
|
- '*.darkchestofwonders.us'
|
|
- darkchestofwonders.us
|
|
secretName: dcow-cert
|
|
rules:
|
|
- host: darkchestofwonders.us
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: darkchestofwonders
|
|
port:
|
|
name: http
|