This commit is contained in:
subochev 2026-02-20 14:46:17 +03:00
parent 70fba31839
commit 9caf51d989

View File

@ -0,0 +1,17 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{$.Release.Name}}-{{$.Values.name}}
namespace: {{$.Release.Namespace}}
spec:
rules:
- host: {{tpl $.Values.ingress.host .}}
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: "{{ $.Release.Name }}-{{ $.Values.name }}"
port:
number: {{ $.Values.port }}