Skip to content
This repository was archived by the owner on May 27, 2026. It is now read-only.
Open
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 codefresh-tunnel-server/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: codefresh-tunnel-server
description: Codefresh tunnel server for ingressless operation of runtimes
type: application
version: 0.2.0
version: 0.2.1
appVersion: 0.2.0
dependencies:
- name: redis
Expand Down
6 changes: 5 additions & 1 deletion codefresh-tunnel-server/templates/tunnel-server-ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ include "codefresh-tunnel-server.name" . }}
annotations:
{{- with .Values.ingress.annotations }}
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
ingressClassName: {{ .Values.ingress.ingressClassName}}
rules:
Expand All @@ -22,4 +26,4 @@ spec:
- {{ .Values.ingress.host }}
secretName: {{ include "codefresh-tunnel-server.tlsSecretName" . }}
{{- end }}
{{- end }}
{{- end }}
6 changes: 5 additions & 1 deletion codefresh-tunnel-server/templates/tunnels-ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ include "codefresh-tunnel-server.name" . }}-tunnels
annotations:
{{- with .Values.tunnels.ingress.annotations }}
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
ingressClassName: {{ .Values.tunnels.ingress.ingressClassName}}
rules:
Expand All @@ -22,4 +26,4 @@ spec:
- {{ include "codefresh-tunnel-server.tunnels-ingress-host" . }}
secretName: {{ include "codefresh-tunnel-server.tunnels.tlsSecretName" . }}
{{- end }}
{{- end }}
{{- end }}