File tree 4 files changed +19
-2
lines changed
4 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ apiVersion: v2
2
2
name : pyroscope
3
3
description : A Helm chart for Pyroscope
4
4
type : application
5
- version : 0.2.74
5
+ version : 0.2.75
6
6
appVersion : " 0.33.0"
Original file line number Diff line number Diff line change 1
1
# pyroscope
2
2
3
- ![ Version: 0.2.74 ] ( https://img.shields.io/badge/Version-0.2.74 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 0.33.0] ( https://img.shields.io/badge/AppVersion-0.33.0-informational?style=flat-square )
3
+ ![ Version: 0.2.75 ] ( https://img.shields.io/badge/Version-0.2.75 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 0.33.0] ( https://img.shields.io/badge/AppVersion-0.33.0-informational?style=flat-square )
4
4
5
5
A Helm chart for Pyroscope
6
6
@@ -67,6 +67,7 @@ Please refer to [the documentation](https://pyroscope.io/docs/server-configurati
67
67
| ingress.hosts | list | ` [{"host":"chart-example.local","paths":[{"path":"/","pathType":"Prefix"}]}] ` | Ingress accepted hostnames |
68
68
| ingress.rules | list | ` [] ` | Ingress custom rules. Take precedence over chart built-ins. |
69
69
| ingress.tls | list | ` [] ` | Ingress TLS configuration |
70
+ | initContainers | list | ` [] ` | |
70
71
| livenessProbe.enabled | bool | ` true ` | Enable Pyroscope server liveness |
71
72
| livenessProbe.failureThreshold | int | ` 3 ` | Pyroscope server liveness check failure threshold |
72
73
| livenessProbe.httpGet.path | string | ` "/healthz" ` | Pyroscope server liveness check path |
Original file line number Diff line number Diff line change 27
27
serviceAccountName : {{ include "pyroscope.serviceAccountName" . }}
28
28
securityContext :
29
29
{{- toYaml .Values.podSecurityContext | nindent 8 }}
30
+ {{- with .Values.initContainers }}
31
+ initContainers :
32
+ {{- toYaml . | nindent 8 }}
33
+ {{- end }}
30
34
containers :
31
35
- name : {{ .Chart.Name }}
32
36
args :
Original file line number Diff line number Diff line change @@ -122,6 +122,18 @@ ingress:
122
122
deploymentStrategy :
123
123
type : Recreate
124
124
125
+ initContainers : []
126
+ # - name: volume-mount-fix
127
+ # imagePullPolicy: Always
128
+ # command:
129
+ # image: busybox
130
+ # - sh
131
+ # - -c
132
+ # - chmod 777 /var/lib/pyroscope && chown -R 101:101 /var/lib/pyroscope
133
+ # volumeMounts:
134
+ # - name: storage
135
+ # mountPath: /var/lib/pyroscope
136
+
125
137
readinessProbe :
126
138
# -- Enable Pyroscope server readiness
127
139
enabled : true
You can’t perform that action at this time.
0 commit comments