Skip to content

Commit

Permalink
Helm chart: enable profile_port (#1272)
Browse files Browse the repository at this point in the history
  • Loading branch information
mariomac authored Oct 29, 2024
1 parent cb700f8 commit 4f7e880
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/beyla/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: beyla
version: 1.4.3
appVersion: 1.8.4
version: 1.4.4
appVersion: 1.8.6
description: eBPF-based autoinstrumentation HTTP, HTTP2 and gRPC services, as well as network metrics.
home: https://grafana.com/oss/beyla-ebpf/
icon: https://grafana.com/static/img/logos/beyla-logo.svg
Expand Down
2 changes: 1 addition & 1 deletion charts/beyla/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# beyla

![Version: 1.4.3](https://img.shields.io/badge/Version-1.4.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.8.4](https://img.shields.io/badge/AppVersion-1.8.4-informational?style=flat-square)
![Version: 1.4.4](https://img.shields.io/badge/Version-1.4.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.8.6](https://img.shields.io/badge/AppVersion-1.8.6-informational?style=flat-square)

eBPF-based autoinstrumentation HTTP, HTTP2 and gRPC services, as well as network metrics.

Expand Down
5 changes: 5 additions & 0 deletions charts/beyla/templates/daemon-set.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,11 @@ spec:
containerPort: {{ .Values.service.internalMetrics.targetPort | default .Values.config.data.internal_metrics.prometheus.port }}
protocol: TCP
{{- end }}
{{- if .Values.config.data.profile_port }}
- name: profile
containerPort: {{ .Values.config.data.profile_port }}
protocol: TCP
{{- end }}
{{- with .Values.resources }}
resources:
{{- toYaml . | nindent 12 }}
Expand Down
1 change: 1 addition & 0 deletions charts/beyla/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ config:
name: ""
# -- default value of beyla configuration
data:
# profile_port: 6060
# open_port: 8443
# routes:
# unmatched: heuristic
Expand Down

0 comments on commit 4f7e880

Please sign in to comment.