All checks were successful
Build and Deploy Docker Image / build (push) Successful in 18s
26 lines
591 B
YAML
26 lines
591 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
creationTimestamp: null
|
|
name: frontend-mentor
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt
|
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
|
spec:
|
|
tls:
|
|
- hosts:
|
|
- frontend-mentor.thecodedom.com
|
|
secretName: frontend-mentor-tls
|
|
rules:
|
|
- host: frontend-mentor.thecodedom.com
|
|
http:
|
|
paths:
|
|
- backend:
|
|
service:
|
|
name: frontend-mentor
|
|
port:
|
|
number: 80
|
|
path: /
|
|
pathType: Prefix
|
|
status:
|
|
loadBalancer: {}
|