33 lines
718 B
YAML
33 lines
718 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: williamtpeebles-com-ingress
|
|
labels:
|
|
name: williamtpeebles-com-ingress
|
|
spec:
|
|
rules:
|
|
- host: williamtpeebles.com
|
|
http:
|
|
paths:
|
|
- pathType: Prefix
|
|
path: "/"
|
|
backend:
|
|
service:
|
|
name: williamtpeebles-com-svc
|
|
port:
|
|
number: 80
|
|
- host: www.williamtpeebles.com
|
|
http:
|
|
paths:
|
|
- pathType: Prefix
|
|
path: "/"
|
|
backend:
|
|
service:
|
|
name: williamtpeebles-com-svc
|
|
port:
|
|
number: 80
|
|
tls:
|
|
- hosts:
|
|
- williamtpeebles.com
|
|
- www.williamtpeebles.com
|
|
secretName: cert-williamtpeebles-com |