Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Enhancement] Support to customize resources for starrocks helm chart #496

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
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{{- range .Values.resources }}
{{- toYaml . | nindent 0 }}
---
{{- end }}
Original file line number Diff line number Diff line change
Expand Up @@ -726,6 +726,14 @@ configMaps: []
# this is the content of the configmap
# when mounted, key will be the name of the file

# If you needs to deploy other resources, e.g. serviceAccount, you can add them here.
resources: []
# - apiVersion: v1
# kind: ServiceAccount
# metadata:
# name: sa-for-starrocks
# namespace: starrocks

# specify the fe proxy deploy or not.
starrocksFeProxySpec:
# specify the fe proxy deploy or not.
Expand Down
8 changes: 8 additions & 0 deletions helm-charts/charts/kube-starrocks/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -823,6 +823,14 @@ starrocks:
# this is the content of the configmap
# when mounted, key will be the name of the file

# If you needs to deploy other resources, e.g. serviceAccount, you can add them here.
resources: []
# - apiVersion: v1
# kind: ServiceAccount
# metadata:
# name: sa-for-starrocks
# namespace: starrocks

# specify the fe proxy deploy or not.
starrocksFeProxySpec:
# specify the fe proxy deploy or not.
Expand Down
Loading