frontendmentor/devops/ingress.yaml
Mike Smith 38b2719e61
All checks were successful
Build and Deploy Docker Image / build (push) Successful in 18s
tls shit
2025-01-03 11:06:34 -05:00

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: {}