Skip to content

Commit

Permalink
Merge pull request #86 from cgonzalez509/main
Browse files Browse the repository at this point in the history
Error in the definition of the ingress-core.yaml solved
  • Loading branch information
dwendland authored May 22, 2024
2 parents 4539a3f + bc4ee90 commit aa06802
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
14 changes: 7 additions & 7 deletions charts/vcwaltid/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
apiVersion: v1
name: vcwaltid
version: 0.0.18
version: 0.0.19
appVersion: 0.0.1
home: https://github.com/hesusruiz/vcwaltid
description: A Helm chart for running the i4Trust DSBA vcwaltid.
keywords:
- i4Trust
- experimentation framework
- proof of concept
- verifiable credentials
- i4Trust
- experimentation framework
- proof of concept
- verifiable credentials
maintainers:
- name: wistefan
email: stefan.wiedemann@fiware.org
- name: wistefan
email: stefan.wiedemann@fiware.org
16 changes: 8 additions & 8 deletions charts/vcwaltid/templates/ingress-core.yaml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{{- if .Values.api.auditor.ingress.enabled -}}
{{- if .Values.api.core.ingress.enabled -}}
{{- $fullName := include "vcwaltid.fullname" . -}}
{{- $servicePort := .Values.api.auditor.port -}}
{{- $servicePort := .Values.api.core.port -}}
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ include "vcwaltid.fullname" . }}-auditor
name: {{ include "vcwaltid.fullname" . }}-core
labels:
{{ include "vcwaltid.labels" . | nindent 4 }}
{{- if .Values.api.auditor.ingress.annotations }}
{{- if .Values.api.core.ingress.annotations }}
annotations:
{{- with .Values.api.auditor.ingress.annotations }}
{{- with .Values.api.core.ingress.annotations }}
{{- toYaml . | nindent 4 }}
{{- end }}
{{- end }}
spec:
{{- if .Values.api.auditor.ingress.tls }}
{{- if .Values.api.core.ingress.tls }}
tls:
{{- range .Values.api.auditor.ingress.tls }}
{{- range .Values.api.core.ingress.tls }}
- hosts:
{{- range .hosts }}
- {{ . | quote }}
Expand All @@ -25,7 +25,7 @@ spec:
{{- end }}
{{- end }}
rules:
{{- range .Values.api.auditor.ingress.hosts }}
{{- range .Values.api.core.ingress.hosts }}
- host: {{ .host | quote }}
http:
paths:
Expand Down

0 comments on commit aa06802

Please sign in to comment.