28 lines
615 B
YAML
28 lines
615 B
YAML
|
apiVersion: networking.k8s.io/v1
|
||
|
kind: Ingress
|
||
|
metadata:
|
||
|
name: cdn-deployment-ingress
|
||
|
namespace: misc
|
||
|
spec:
|
||
|
rules:
|
||
|
- host: "cdn.asraphiel.dev"
|
||
|
http:
|
||
|
paths:
|
||
|
- path: /
|
||
|
pathType: Prefix
|
||
|
backend:
|
||
|
service:
|
||
|
name: cdn-deployment-service
|
||
|
port:
|
||
|
number: 80
|
||
|
- host: "cdn.voidcorp.nl"
|
||
|
http:
|
||
|
paths:
|
||
|
- path: /
|
||
|
pathType: Prefix
|
||
|
backend:
|
||
|
service:
|
||
|
name: cdn-deployment-service
|
||
|
port:
|
||
|
number: 80
|