ps/Modules/Alkami.DevOps.Minikube/Resources/ingress-dashboard.yaml
2023-05-30 22:51:22 -07:00

23 lines
510 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: kubernetes-dashboard-ingress
namespace: kubernetes-dashboard
annotations:
"helm.sh/resource-policy": keep
spec:
ingressClassName: nginx
tls:
- hosts:
- dashboard.localhost.dev.alkami.net
rules:
- host: dashboard.localhost.dev.alkami.net
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: kubernetes-dashboard
port:
number: 9090