Skip to content

Commit 0d6b265

Browse files
authoredApr 1, 2024··
[Enhancement] Support to customize resources for starrocks helm chart (#496)
Signed-off-by: yandongxiao <[email protected]>
1 parent 5101ed9 commit 0d6b265

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{{- range .Values.resources }}
2+
{{- toYaml . | nindent 0 }}
3+
---
4+
{{- end }}

‎helm-charts/charts/kube-starrocks/charts/starrocks/values.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -726,6 +726,14 @@ configMaps: []
726726
# this is the content of the configmap
727727
# when mounted, key will be the name of the file
728728

729+
# If you needs to deploy other resources, e.g. serviceAccount, you can add them here.
730+
resources: []
731+
# - apiVersion: v1
732+
# kind: ServiceAccount
733+
# metadata:
734+
# name: sa-for-starrocks
735+
# namespace: starrocks
736+
729737
# specify the fe proxy deploy or not.
730738
starrocksFeProxySpec:
731739
# specify the fe proxy deploy or not.

‎helm-charts/charts/kube-starrocks/values.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -823,6 +823,14 @@ starrocks:
823823
# this is the content of the configmap
824824
# when mounted, key will be the name of the file
825825

826+
# If you needs to deploy other resources, e.g. serviceAccount, you can add them here.
827+
resources: []
828+
# - apiVersion: v1
829+
# kind: ServiceAccount
830+
# metadata:
831+
# name: sa-for-starrocks
832+
# namespace: starrocks
833+
826834
# specify the fe proxy deploy or not.
827835
starrocksFeProxySpec:
828836
# specify the fe proxy deploy or not.

0 commit comments

Comments
 (0)
Please sign in to comment.