blog/deploy/k8s/ingress.yaml
Peter Kurfer 72007957e3
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone Build is passing
feat: deploy blog with kustomize
2023-07-17 15:39:00 +00:00

21 lines
421 B
YAML

---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: blog
namespace: blog
labels:
app.kubernetes.io/name: blog
spec:
ingressClassName: traefik
rules:
- host: www.icb4dc0.de
http:
paths:
- path: /
pathType: ImplementationSpecific
backend:
service:
name: blog
port:
number: 3000