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
17 changes: 16 additions & 1 deletion helm-charts/doris/templates/doriscluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,10 @@ spec:
hostAliases:
{{- toYaml .Values.feSpec.hostAliases | nindent 4 }}
{{- end }}
{{- if .Values.feSpec.secrets }}
secrets:
{{- toYaml .Values.feSpec.secrets | nindent 4 }}
{{- end }}
{{- if .Values.feSpec.persistentVolumeClaim }}
persistentVolumes:
{{- template "doriscluster.fe.pvc" . }}
Expand Down Expand Up @@ -201,6 +205,10 @@ spec:
hostAliases:
{{- toYaml .Values.beSpec.hostAliases | nindent 4 }}
{{- end }}
{{- if .Values.beSpec.secrets }}
secrets:
{{- toYaml .Values.beSpec.secrets | nindent 4 }}
{{- end }}
{{- if .Values.beSpec.persistentVolumeClaim }}
persistentVolumes:
{{- template "doriscluster.be.pvc" . }}
Expand Down Expand Up @@ -289,7 +297,10 @@ spec:
hostAliases:
{{- toYaml .Values.cnSpec.hostAliases | nindent 4 }}
{{- end }}

{{- if .Values.cnSpec.secrets }}
secrets:
{{- toYaml .Values.cnSpec.secrets | nindent 4 }}
{{- end }}
{{- if .Values.cnSpec.persistentVolumeClaim }}
persistentVolumes:
{{- template "doriscluster.cn.pvc" . }}
Expand Down Expand Up @@ -371,6 +382,10 @@ spec:
hostAliases:
{{- toYaml .Values.brokerSpec.hostAliases | nindent 4 }}
{{- end }}
{{- if .Values.brokerSpec.secrets }}
secrets:
{{- toYaml .Values.brokerSpec.secrets | nindent 4 }}
{{- end }}
{{- if .Values.brokerSpec.persistentVolumeClaim }}
persistentVolumes:
{{- template "doriscluster.broker.pvc" . }}
Expand Down
28 changes: 28 additions & 0 deletions helm-charts/doris/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,13 @@ feSpec:
# - ip: "127.0.0.2"
# hostnames:
# - "hostname2"

# secrets allows mounting Kubernetes secrets into the pods
# Each secret must have a secretName (name of the secret in Kubernetes) and optionally a mountPath
secrets: []
# - secretName: my-secret
# mountPath: /etc/doris

persistentVolumeClaim: {}
# meta volume, mountPath is /opt/apache-doris/fe/doris-meta
# metaPersistentVolume:
Expand Down Expand Up @@ -369,6 +376,13 @@ beSpec:
# - ip: "127.0.0.2"
# hostnames:
# - "hostname2"

# secrets allows mounting Kubernetes secrets into the pods
# Each secret must have a secretName (name of the secret in Kubernetes) and optionally a mountPath
secrets: []
# - secretName: my-secret
# mountPath: /etc/doris

persistentVolumeClaim: {}
# data volume, mountPath is /opt/apache-doris/be/storage
# dataPersistentVolume:
Expand Down Expand Up @@ -537,6 +551,13 @@ cnSpec:
# - ip: "127.0.0.2"
# hostnames:
# - "hostname2"

# secrets allows mounting Kubernetes secrets into the pods
# Each secret must have a secretName (name of the secret in Kubernetes) and optionally a mountPath
secrets: []
# - secretName: my-secret
# mountPath: /etc/doris

persistentVolumeClaim: {}
# data volume, mountPath is /opt/apache-doris/be/storage
# dataPersistentVolume:
Expand Down Expand Up @@ -698,6 +719,13 @@ brokerSpec:
# - ip: "127.0.0.2"
# hostnames:
# - "hostname2"

# secrets allows mounting Kubernetes secrets into the pods
# Each secret must have a secretName (name of the secret in Kubernetes) and optionally a mountPath
secrets: []
# - secretName: my-secret
# mountPath: /etc/doris

persistentVolumeClaim: {}
# logs volume, mountPath is /opt/apache-doris/apache_hdfs_broker/log
# logsPersistentVolume:
Expand Down