21 lines
583 B
YAML
21 lines
583 B
YAML
|
apiVersion: networking.k8s.io/v1
|
||
|
kind: Ingress
|
||
|
metadata:
|
||
|
name: {{ include "demo-chart.fullname" . }}
|
||
|
namespace: {{ .Values.ingressNamespace | default .Release.Namespace }}
|
||
|
annotations:
|
||
|
nginx.ingress.kubernetes.io/rewrite-target: /
|
||
|
kubernetes.io/ingress.class: nginx
|
||
|
spec:
|
||
|
rules:
|
||
|
- host: {{ .Values.host }}
|
||
|
http:
|
||
|
paths:
|
||
|
- path: /
|
||
|
pathType: Prefix
|
||
|
backend:
|
||
|
service:
|
||
|
name: {{ .Values.keda.httpAddOnProxy }}
|
||
|
port:
|
||
|
number: {{ .Values.keda.httpAddOnPort }}
|