demo-chart/templates/ingress.yaml

20 lines
566 B
YAML
Raw Normal View History

2023-03-29 01:29:07 +00:00
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ include "demo-chart.fullname" . }}
namespace: {{ .Values.ingressNamespace | default .Release.Namespace }}
annotations:
kubernetes.io/ingress.class: nginx
spec:
rules:
2023-04-11 02:58:43 +00:00
- host: {{ .Values.host }}
2023-03-29 01:29:07 +00:00
http:
paths:
2023-04-12 02:09:30 +00:00
- path: {{ include "demo-chart.path" . }}/
2023-03-29 01:29:07 +00:00
pathType: Prefix
backend:
service:
name: {{ .Values.keda.httpAddOnProxy }}
port:
number: {{ .Values.keda.httpAddOnPort }}