ingress.yaml

This commit is contained in:
titver968
2025-03-05 21:22:15 +01:00
parent 9d9c22ea14
commit 87eb02781d
4 changed files with 13 additions and 15 deletions

View File

@@ -3,12 +3,12 @@ entries:
tatort: tatort:
- apiVersion: v2 - apiVersion: v2
appVersion: 0.0.1 appVersion: 0.0.1
created: "2025-03-05T17:58:32.94375+01:00" created: "2025-03-05T21:21:55.143891+01:00"
description: A Helm chart for Kubernetes description: A Helm chart for Kubernetes
digest: b4209350cfbce50c940e9ea8f1cc37ac5e7ddbbff08c2a3c162b535a6da0caf2 digest: 57a51457ddda1903a07c90ceae423ce76b9c07282766fbe0ab88f8e2942ccfa1
name: tatort name: tatort
type: application type: application
urls: urls:
- https://gitea.innohub.local:3000/innohub/charts/raw/main/tatort-0.1.0.tgz - https://gitea.innohub.local:3000/innohub/charts/raw/main/tatort-0.1.0.tgz
version: 0.1.0 version: 0.1.0
generated: "2025-03-05T17:58:32.943407+01:00" generated: "2025-03-05T21:21:55.143551+01:00"

Binary file not shown.

View File

@@ -9,12 +9,11 @@ spec:
ingressClassName: {{ .Values.ingress.className }} ingressClassName: {{ .Values.ingress.className }}
rules: rules:
{{- range .Values.ingress.hosts }} {{- range .Values.ingress.hosts }}
- host: {{ .host }} - host: {{ . }}
http: http:
paths: paths:
{{- range .paths }} - path: {{ $.Values.ingress.path }}
- path: {{ .path }} pathType: {{ $.Values.ingress.pathType }}
pathType: {{ .pathType }}
backend: backend:
service: service:
name: {{ $fullName }} name: {{ $fullName }}
@@ -26,4 +25,3 @@ spec:
tls: tls:
{{- toYaml .Values.ingress.tls | nindent 4 }} {{- toYaml .Values.ingress.tls | nindent 4 }}
{{- end }} {{- end }}
{{- end }}

View File

@@ -15,7 +15,7 @@ replicaCount: 1
service: service:
type: ClusterIP type: ClusterIP
port: 80 port: 4173
annotations: {} annotations: {}
endpoint: tatort.local endpoint: tatort.local
@@ -27,12 +27,12 @@ ingress:
# kubernetes.io/tls-acme: "true" # kubernetes.io/tls-acme: "true"
path: / path: /
pathtype: ImplementationSpecific pathtype: ImplementationSpecific
# hosts: [ tatort.local ] hosts: [ tatort.local ]
hosts: # hosts:
- host: tatort.local # - host: tatort.local
paths: # paths:
- path: / # - path: /
pathType: ImplementationSpecific # pathType: ImplementationSpecific
tls: [] tls: []