Skip to content
This repository has been archived by the owner on Jul 19, 2023. It is now read-only.

ingress tls support #680

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Changes from 2 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
12 changes: 11 additions & 1 deletion operations/phlare/helm/phlare/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@ metadata:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
tls:
{{- range .Values.ingress.tls }}
- hosts:
{{- range .hosts }}
- {{ . | quote }}
{{- end }}
{{- with .secretName }}
secretName: {{ . }}
{{- end }}
{{- end }}
rules:
{{- range $.Values.ingress.hosts }}
- host: {{ . | quote }}
Expand Down Expand Up @@ -38,4 +48,4 @@ spec:
path: /push.v1.PusherService/
Copy link
Collaborator

@cyriltovena cyriltovena May 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unrelated to this PR: We need to add the new pyroscope path I think.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pathType: Prefix
{{- end }}
{{- end }}
{{- end }}
Loading