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
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ spec:
password: {{ .Values.adminUser.password }}
{{- end }}
metaService:
{{- if .Values.msSpec.labels }}
labels:
{{- toYaml .Values.msSpec.labels | nindent 6 }}
{{- end }}
image: {{ .Values.msSpec.image.repository }}:{{ .Values.msSpec.image.tag }}
{{- if .Values.msSpec.imagePullSecrets }}
imagePullSecrets:
Expand All @@ -55,6 +59,10 @@ spec:
{{- toYaml .Values.msSpec.nodeSelector | nindent 6 }}
{{- end }}
feSpec:
{{- if .Values.feSpec.labels }}
labels:
{{- toYaml .Values.feSpec.labels | nindent 6 }}
{{- end }}
replicas: {{ .Values.feSpec.replicas }}
electionNumber: {{ include "fe.electionnumber" . }}
image: {{ .Values.feSpec.image.repository }}:{{ .Values.feSpec.image.tag }}
Expand All @@ -80,6 +88,10 @@ spec:
{{- $originalContext := . -}}
{{- range $index, $cgName := .Values.computeGroupNames }}
- uniqueId: {{ $cgName }}
{{- if $originalContext.Values.computeSpec.labels }}
labels:
{{- toYaml $originalContext.Values.computeSpec.labels | nindent 6 }}
{{- end }}
replicas: {{ $originalContext.Values.computeSpec.replicas }}
image: {{ $originalContext.Values.computeSpec.image.repository }}:{{ $originalContext.Values.computeSpec.image.tag }}
{{- if $originalContext.Values.computeSpec.imagePullSecrets }}
Expand Down
6 changes: 6 additions & 0 deletions helm-charts/doris-disaggregated/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ adminUser: {}

# describe the ms specification for deploying.
msSpec:
# labels to be added to the ms pod
labels: {}
# fdb is required config, the last is example to config, not available to use.
fdb:
# specify the fdb cluster deployed namespace.
Expand Down Expand Up @@ -59,6 +61,8 @@ msSpec:
feSpec:
# the electionNumber denotes the FE followers number.
electionNumber: 3
# labels to be added to the FE pod
labels: {}
# the number of fe, the number contains the number of follower and observer.
replicas: 3
image:
Expand Down Expand Up @@ -110,6 +114,8 @@ computeGroupNames:
# describe the compute group spec to deploy.
computeSpec:
replicas: 2
# labels to be added to the BE pod
labels: {}
image:
repository: apache/doris
tag: be-3.0.5
Expand Down
Loading