Migrate to HTTPRoute with *.api.inouter.com domain
All checks were successful
Build and Push Docker Image / build (push) Successful in 53s

This commit is contained in:
kappa
2026-03-26 13:35:43 +09:00
parent 8b539e804e
commit d8e306b30f

View File

@@ -1,21 +1,18 @@
apiVersion: networking.k8s.io/v1 apiVersion: gateway.networking.k8s.io/v1
kind: Ingress kind: HTTPRoute
metadata: metadata:
name: namecheap-api name: namecheap-api
spec: spec:
ingressClassName: traefik hostnames:
tls: - namecheap.api.inouter.com
- secretName: wildcard-anvil-it-com-tls parentRefs:
hosts: - name: traefik-gateway
- namecheap-api.anvil.it.com namespace: kube-system
rules: rules:
- host: namecheap-api.anvil.it.com - matches:
http: - path:
paths: type: PathPrefix
- backend: value: /
service: backendRefs:
name: namecheap-api - name: namecheap-api
port: port: 80
number: 80
path: /
pathType: Prefix