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/influxdb3-enterprise/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: influxdb3-enterprise
description: A Helm chart for deploying InfluxDB 3 Enterprise on Kubernetes
type: application
version: 0.1.1
version: 0.1.2
appVersion: "3.6.0"
keywords:
- influxdb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ spec:
{{- toYaml .Values.compactor.podSecurityContext | nindent 8 }}
containers:
- name: influxdb3
{{- with .Values.compactor.securityContext }}
securityContext:
{{- toYaml . | nindent 12 }}
{{- end }}
image: {{ include "influxdb3-enterprise.image" . }}
imagePullPolicy: {{ .Values.image.pullPolicy }}
command:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ spec:
{{- toYaml .Values.ingester.podSecurityContext | nindent 8 }}
containers:
- name: influxdb3
{{- with .Values.ingester.securityContext }}
securityContext:
{{- toYaml . | nindent 12 }}
{{- end }}
image: {{ include "influxdb3-enterprise.image" . }}
imagePullPolicy: {{ .Values.image.pullPolicy }}
command:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ spec:
{{- toYaml .Values.querier.podSecurityContext | nindent 8 }}
containers:
- name: influxdb3
{{- with .Values.querier.securityContext }}
securityContext:
{{- toYaml . | nindent 12 }}
{{- end }}
image: {{ include "influxdb3-enterprise.image" . }}
imagePullPolicy: {{ .Values.image.pullPolicy }}
command:
Expand Down
9 changes: 9 additions & 0 deletions charts/influxdb3-enterprise/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,9 @@ ingester:
runAsUser: 1500 # Run as influxdb3 user
runAsGroup: 1500 # Run as influxdb3 group

# Container-level security context (optional override)
securityContext: {}

# Service configuration
service:
type: ClusterIP
Expand Down Expand Up @@ -306,6 +309,9 @@ querier:
runAsUser: 1500 # Run as influxdb3 user
runAsGroup: 1500 # Run as influxdb3 group

# Container-level security context (optional override)
securityContext: {}

# Service configuration
service:
type: ClusterIP
Expand Down Expand Up @@ -389,6 +395,9 @@ compactor:
runAsUser: 1500 # Run as influxdb3 user
runAsGroup: 1500 # Run as influxdb3 group

# Container-level security context (optional override)
securityContext: {}

# Service configuration (for metrics only)
service:
type: ClusterIP
Expand Down