8000 fix(ingress): support optional tls secretName and dynamic backend port in template by Gabriel-Ladzaretti · Pull Request #706 · mend/renovate-ce-ee · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix(ingress): support optional tls secretName and dynamic backend port in template #706

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion helm-charts/mend-renovate-ce/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: mend-renovate-ce
version: 9.10.0
version: 9.10.1
appVersion: 9.10.0
description: Mend Renovate Community Edition
home: https://github.com/mend/renovate-ce-ee
Expand Down
8 changes: 7 additions & 1 deletion helm-charts/mend-renovate-ce/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ spec:
{{- range .hosts }}
- {{ . | quote }}
{{- end }}
secretName: {{ .secretName }}
{{- if .secretName }}
secretName: {{ .secretName | quote }}
{{- end }}
{{- end }}
{{- end }}
rules:
Expand All @@ -40,7 +42,11 @@ spec:
service:
name: {{ $fullName }}
port:
{{- if $p.port }}
{{ toYaml $p.port | nindent 18 }}
{{- else }}
name: http
{{- end }}
{{- end -}}
{{- end }}
{{- end }}
2 changes: 1 addition & 1 deletion helm-charts/mend-renovate-ee/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: mend-renovate-enterprise-edition
version: 3.10.0
version: 3.10.1
appVersion: 9.10.0
description: Mend Renovate Enterprise Edition
home: https://github.com/mend/renovate-ce-ee
Expand Down
8 changes: 7 additions & 1 deletion helm-charts/mend-renovate-ee/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ spec:
{{- range .hosts }}
- {{ . | quote }}
{{- end }}
secretName: {{ .secretName }}
{{- if .secretName }}
secretName: {{ .secretName | quote }}
{{- end }}
{{- end }}
{{- end }}
rules:
Expand All @@ -40,7 +42,11 @@ spec:
service:
name: {{ $fullName }}-svc-server
port:
{{- if $p.port }}
{{ toYaml $p.port | nindent 18 }}
{{- else }}
name: http
{{- end }}
{{- end -}}
{{- end }}
{{- end }}
0