Some checks are pending
Extracted from oil project — business logic removed, auth/db/deploy infrastructure generalized with APP_NAME placeholders. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
24 lines
508 B
YAML
24 lines
508 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: APP_NAME
|
|
namespace: APP_NAME
|
|
annotations:
|
|
traefik.ingress.kubernetes.io/router.tls.certresolver: le
|
|
spec:
|
|
ingressClassName: traefik
|
|
rules:
|
|
- host: APP_NAME.oci.euphon.net
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: APP_NAME
|
|
port:
|
|
number: 80
|
|
tls:
|
|
- hosts:
|
|
- APP_NAME.oci.euphon.net
|