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
2 changes: 1 addition & 1 deletion charts/clickstack/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ annotations:
- name: Upstream Project
url: https://github.com/hyperdxio/hyperdx
type: application
version: 1.0.1
version: 1.0.2
appVersion: 2.8.0
5 changes: 4 additions & 1 deletion charts/clickstack/templates/hyperdx-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,10 @@ spec:
{{- else }}
{{- if .Values.hyperdx.defaultConnections }}
- name: DEFAULT_CONNECTIONS
value: {{ tpl .Values.hyperdx.defaultConnections . | quote }}
valueFrom:
secretKeyRef:
name: {{ include "clickstack.fullname" . }}-app-secrets
key: defaultConnections
{{- end }}
{{- if .Values.hyperdx.defaultSources }}
- name: DEFAULT_SOURCES
Expand Down
5 changes: 4 additions & 1 deletion charts/clickstack/templates/otel-collector-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,10 @@ spec:
- name: CLICKHOUSE_USER
value: {{ .Values.otel.clickhouseUser | default .Values.clickhouse.config.users.otelUserName }}
- name: CLICKHOUSE_PASSWORD
value: {{ .Values.otel.clickhousePassword | default .Values.clickhouse.config.users.otelUserPassword }}
valueFrom:
secretKeyRef:
name: {{ include "clickstack.fullname" . }}-clickhouse-secrets
key: otelUserPassword
{{- if .Values.otel.customConfig }}
- name: CUSTOM_OTELCOL_CONFIG_FILE
value: /etc/otelcol-contrib/custom.config.yaml
Expand Down
3 changes: 2 additions & 1 deletion charts/clickstack/templates/secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ metadata:
type: Opaque
data:
api-key: {{ .Values.hyperdx.apiKey | b64enc }}
defaultConnections: {{ .Values.hyperdx.defaultConnections | toString | b64enc }}
{{- if .Values.clickhouse.enabled }}
---
apiVersion: v1
Expand All @@ -19,4 +20,4 @@ type: Opaque
data:
appUserPassword: {{ .Values.clickhouse.config.users.appUserPassword | toString | b64enc }}
otelUserPassword: {{ .Values.clickhouse.config.users.otelUserPassword | toString | b64enc }}
{{- end }}
{{- end }}