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
2 changes: 1 addition & 1 deletion charts/retool/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: retool
description: A Helm chart for Kubernetes
type: application
version: 6.4.3
version: 6.4.4
maintainers:
- name: Retool Engineering
email: [email protected]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,6 @@ telemetry:
foo.com/bar: baz
extraPodSpec:
hostname: bleepbloop
extraVolumes:
- name: varlog
hostPath:
path: "/var/log"
extraVolumeMounts:
- name: varlog
mountPath: "/hostvarlog"
readOnly: true
extraPorts:
- containerPort: 9999
name: yaaaaa
Expand Down
28 changes: 0 additions & 28 deletions charts/retool/templates/deployment_telemetry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,6 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: PROCFS_ROOT
value: "/host/proc"
- name: SYSFS_ROOT
value: "/host/sys"
{{- if include "shouldIncludeConfigSecretsEnvVars" . }}
- name: LICENSE_KEY
valueFrom:
Expand Down Expand Up @@ -110,18 +106,6 @@ spec:
subPath: "grafana-agent-custom.river"
readOnly: true
{{- end }}
- name: var-log
mountPath: "/var/log/"
readOnly: true
- name: var-lib
mountPath: "/var/lib"
readOnly: true
- name: procfs
mountPath: "/host/proc"
readOnly: true
- name: sysfs
mountPath: "/host/sys"
readOnly: true
{{- if .Values.telemetry.extraVolumeMounts }}
{{- .Values.telemetry.extraVolumeMounts | toYaml | nindent 10 }}
{{- end }}
Expand All @@ -147,18 +131,6 @@ spec:
configMap:
name: {{ include "retool.fullname" . }}-telemetry
{{- end }}
- name: var-log
hostPath:
path: "/var/log/"
- name: var-lib
hostPath:
path: "/var/lib/"
- name: procfs
hostPath:
path: "/proc"
- name: sysfs
hostPath:
path: "/sys"
{{- if .Values.telemetry.extraVolumes }}
{{- .Values.telemetry.extraVolumes | toYaml | nindent 8 }}
{{- end }}
Expand Down
Loading