Skip to content
Merged
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
1 change: 1 addition & 0 deletions charts/parca/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ helm repo add parca https://parca-dev.github.io/helm-charts
| agent.remoteStoreInsecureSkipVerify | bool | `true` | |
| agent.resources | object | `{}` | resource limits and requests |
| agent.securityContext | object | `{"privileged":true,"readOnlyRootFilesystem":true}` | Security context, needs to be prilileged for ful functionality |
| agent.service.annotations | object | `{}` | annotations to be added for the agent service |
| agent.service.port | int | `7071` | service port for agent |
| agent.service.type | string | `"ClusterIP"` | service type for agent |
| agent.serviceMonitor.enabled | bool | `false` | enables prometheus servicemonitor for agent |
Expand Down
6 changes: 5 additions & 1 deletion charts/parca/templates/agent-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ metadata:
name: {{ include "parca.fullname" . }}-agent
labels:
{{- include "parca.labels.agent" . | nindent 4 }}
{{- with .Values.agent.service.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
type: {{ .Values.agent.service.type }}
ports:
Expand All @@ -15,4 +19,4 @@ spec:
clusterIP: None
selector:
{{- include "parca.selectorLabels.agent" . | nindent 6 }}
{{- end }}
{{- end }}
2 changes: 2 additions & 0 deletions charts/parca/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ agent:
type: ClusterIP
# -- service port for agent
port: 7071
# -- annotations to be added for the agent service
annotations: {}
serviceMonitor:
# -- enables prometheus servicemonitor for agent
enabled: false
Expand Down
Loading