mirror of
https://github.com/zoriya/snow.git
synced 2026-08-08 07:19:19 +00:00
25 lines
485 B
YAML
25 lines
485 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: proxy
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt
|
|
acme.cert-manager.io/http01-edit-in-place: "true"
|
|
spec:
|
|
ingressClassName: cilium
|
|
rules:
|
|
- host: proxy.sdg.moe
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: proxy
|
|
port:
|
|
name: http
|
|
tls:
|
|
- hosts:
|
|
- proxy.sdg.moe
|
|
secretName: proxy-ssl
|