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
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 operations/phlare/helm/phlare/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: phlare
description: 🔥 horizontally-scalable, highly-available, multi-tenant continuous profiling aggregation system
type: application
version: 0.5.3
version: 0.5.4
appVersion: 0.5.1
dependencies:
- name: minio
Expand Down
2 changes: 1 addition & 1 deletion operations/phlare/helm/phlare/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# phlare

![Version: 0.5.3](https://img.shields.io/badge/Version-0.5.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.5.1](https://img.shields.io/badge/AppVersion-0.5.1-informational?style=flat-square)
![Version: 0.5.4](https://img.shields.io/badge/Version-0.5.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.5.1](https://img.shields.io/badge/AppVersion-0.5.1-informational?style=flat-square)

🔥 horizontally-scalable, highly-available, multi-tenant continuous profiling aggregation system

Expand Down
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 }}