diff --git a/index.yaml b/index.yaml index 6ca78e8..62afa47 100644 --- a/index.yaml +++ b/index.yaml @@ -3,12 +3,12 @@ entries: tatort: - apiVersion: v2 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 - digest: b4209350cfbce50c940e9ea8f1cc37ac5e7ddbbff08c2a3c162b535a6da0caf2 + digest: 57a51457ddda1903a07c90ceae423ce76b9c07282766fbe0ab88f8e2942ccfa1 name: tatort type: application urls: - https://gitea.innohub.local:3000/innohub/charts/raw/main/tatort-0.1.0.tgz version: 0.1.0 -generated: "2025-03-05T17:58:32.943407+01:00" +generated: "2025-03-05T21:21:55.143551+01:00" diff --git a/tatort-0.1.0.tgz b/tatort-0.1.0.tgz index 288fc21..a85e940 100644 Binary files a/tatort-0.1.0.tgz and b/tatort-0.1.0.tgz differ diff --git a/tatort/templates/ingress.yaml b/tatort/templates/ingress.yaml index 2017a6a..d472a2a 100644 --- a/tatort/templates/ingress.yaml +++ b/tatort/templates/ingress.yaml @@ -9,12 +9,11 @@ spec: ingressClassName: {{ .Values.ingress.className }} rules: {{- range .Values.ingress.hosts }} - - host: {{ .host }} + - host: {{ . }} http: paths: - {{- range .paths }} - - path: {{ .path }} - pathType: {{ .pathType }} + - path: {{ $.Values.ingress.path }} + pathType: {{ $.Values.ingress.pathType }} backend: service: name: {{ $fullName }} @@ -26,4 +25,3 @@ spec: tls: {{- toYaml .Values.ingress.tls | nindent 4 }} {{- end }} -{{- end }} diff --git a/tatort/values.yaml b/tatort/values.yaml index 7e00a9e..0a860ff 100644 --- a/tatort/values.yaml +++ b/tatort/values.yaml @@ -15,7 +15,7 @@ replicaCount: 1 service: type: ClusterIP - port: 80 + port: 4173 annotations: {} endpoint: tatort.local @@ -27,12 +27,12 @@ ingress: # kubernetes.io/tls-acme: "true" path: / pathtype: ImplementationSpecific -# hosts: [ tatort.local ] - hosts: - - host: tatort.local - paths: - - path: / - pathType: ImplementationSpecific + hosts: [ tatort.local ] +# hosts: +# - host: tatort.local +# paths: +# - path: / +# pathType: ImplementationSpecific tls: []