mirror of
https://github.com/KevinMidboe/kazan.git
synced 2025-10-29 17:50:15 +00:00
19 lines
366 B
YAML
19 lines
366 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: microbot-ingress
|
|
namespace: microbot
|
|
spec:
|
|
rules:
|
|
- host: microbot.kazan.schleppe
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: microbot-service
|
|
port:
|
|
number: 80
|
|
|