Skip to content
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
6 changes: 6 additions & 0 deletions helm/kagent-tools/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,12 @@ spec:
volumeMounts:
- name: tmp
mountPath: /tmp
{{- with .Values.extraVolumeMounts }}
{{- toYaml . | nindent 12 }}
{{- end }}
volumes:
- name: tmp
emptyDir: {}
{{- with .Values.extraVolumes }}
{{- toYaml . | nindent 8 }}
{{- end }}
12 changes: 12 additions & 0 deletions helm/kagent-tools/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -131,3 +131,15 @@ otel:
endpoint: http://host.docker.internal:4317
timeout: 15
insecure: true

# Additional volumes and volumeMounts on the tools container. Useful for mounting a
# kubeconfig (e.g. to point kubectl at an authenticating proxy for per-user RBAC),
# extra CAs, etc. Standard Kubernetes volume / volumeMount objects.
extraVolumes: []
# - name: my-kubeconfig
# configMap:
# name: my-kubeconfig
extraVolumeMounts: []
# - name: my-kubeconfig
# mountPath: /etc/kubeconfig
# readOnly: true
Loading