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

[Documentation] Add more comment about configyaml #586

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
Expand Up @@ -323,6 +323,8 @@ starrocksFESpec:
sys_log_level = INFO
# A map object for setting the config. When configyaml is set, to non-empty, the configs in configyaml will take
# precedence and values in config field will be discarded.
# Note: When using configyaml, the number needs to be quoted to avoid being converted to scientific notiation.
# e.g. brpc_socket_max_unwritten_bytes: "10737418240"
configyaml: {}
# mount secrets if necessary.
# see https://kubernetes.io/docs/concepts/storage/volumes/#using-subpath for more details about subPath.
Expand Down Expand Up @@ -638,6 +640,8 @@ starrocksCnSpec:
brpc_port = 8060
# A map object for setting the config. When configyaml is set, to non-empty, the configs in configyaml will take
# precedence and values in config field will be discarded.
# Note: When using configyaml, the number needs to be quoted to avoid being converted to scientific notiation.
# e.g. brpc_socket_max_unwritten_bytes: "10737418240"
configyaml: {}
# mount secrets if necessary.
# see https://kubernetes.io/docs/concepts/storage/volumes/#using-subpath for more details about subPath.
Expand Down Expand Up @@ -918,6 +922,8 @@ starrocksBeSpec:
default_rowset_type = beta
# A map object for setting the config. When configyaml is set, to non-empty, the configs in configyaml will take
# precedence and values in config field will be discarded.
# Note: When using configyaml, the number needs to be quoted to avoid being converted to scientific notiation.
# e.g. brpc_socket_max_unwritten_bytes: "10737418240"
configyaml: {}
# mount secrets if necessary.
# see https://kubernetes.io/docs/concepts/storage/volumes/#using-subpath for more details about subPath.
Expand Down
6 changes: 6 additions & 0 deletions helm-charts/charts/kube-starrocks/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,8 @@ starrocks:
sys_log_level = INFO
# A map object for setting the config. When configyaml is set, to non-empty, the configs in configyaml will take
# precedence and values in config field will be discarded.
# Note: When using configyaml, the number needs to be quoted to avoid being converted to scientific notiation.
# e.g. brpc_socket_max_unwritten_bytes: "10737418240"
configyaml: {}
# mount secrets if necessary.
# see https://kubernetes.io/docs/concepts/storage/volumes/#using-subpath for more details about subPath.
Expand Down Expand Up @@ -746,6 +748,8 @@ starrocks:
brpc_port = 8060
# A map object for setting the config. When configyaml is set, to non-empty, the configs in configyaml will take
# precedence and values in config field will be discarded.
# Note: When using configyaml, the number needs to be quoted to avoid being converted to scientific notiation.
# e.g. brpc_socket_max_unwritten_bytes: "10737418240"
configyaml: {}
# mount secrets if necessary.
# see https://kubernetes.io/docs/concepts/storage/volumes/#using-subpath for more details about subPath.
Expand Down Expand Up @@ -1026,6 +1030,8 @@ starrocks:
default_rowset_type = beta
# A map object for setting the config. When configyaml is set, to non-empty, the configs in configyaml will take
# precedence and values in config field will be discarded.
# Note: When using configyaml, the number needs to be quoted to avoid being converted to scientific notiation.
# e.g. brpc_socket_max_unwritten_bytes: "10737418240"
configyaml: {}
# mount secrets if necessary.
# see https://kubernetes.io/docs/concepts/storage/volumes/#using-subpath for more details about subPath.
Expand Down
Loading