Skip to content
Open
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
20 changes: 10 additions & 10 deletions examples/starrocks/starrocks-fe-and-be.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ metadata:
spec:
starRocksFeSpec:
image: starrocks/fe-ubuntu:latest
replicas: 3
replicas: 2
# If you just want to start a running StarRocks cluster, you can set a smaller request/limit, such as 1 core and 2GB.
# See https://docs.starrocks.io/docs/deployment/plan_cluster/#cpu-and-memory for more information about how to configure CPU and memory in production.
limits:
cpu: 4
memory: 8Gi
cpu: 1
memory: 2Gi
requests:
cpu: 4
memory: 8Gi
cpu: 1
memory: 2Gi
# storageVolumes is optional. If you don't specify it, emptyDir will be used to store FE meta and log, and be aware
# that the files and directories written to the volume will be completely lost upon container restarting.
storageVolumes:
Expand All @@ -31,15 +31,15 @@ spec:
mountPath: /opt/starrocks/fe/log
starRocksBeSpec:
image: starrocks/be-ubuntu:latest
replicas: 3
replicas: 2
# If you just want to start a running StarRocks cluster, you can set a smaller request/limit, such as 1 core and 2GB.
# See https://docs.starrocks.io/docs/deployment/plan_cluster/#cpu-and-memory for more information about how to configure CPU and memory in production.
limits:
cpu: 4
memory: 8Gi
cpu: 1
memory: 2Gi
requests:
cpu: 4
memory: 8Gi
cpu: 1
memory: 2Gi
# storageVolumes is optional. If you don't specify it, emptyDir will be used to store BE data and log, and be aware
# that the files and directories written to the volume will be completely lost upon container restarting.
storageVolumes:
Expand Down