Files
hello-world/k8s/ingress.yml
T

24 lines
457 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: hello-world
namespace: hello-world
spec:
ingressClassName: nginx
tls:
- hosts:
- hello-world.knapp-world.app.ariki.ai
secretName: hello-world-tls
rules:
- host: hello-world.knapp-world.app.ariki.ai
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: hello-world
port:
number: 80