Rumit Jain
11/20/2025, 4:31 AMmetrics:
serviceMonitor:
# Whether to expose metrics to Prometheus by ServiceMonitor.
# Note: make sure the prometheus operator is installed in your cluster.
# If prometheus is not installed by operator, you can add annotations on k8s service to expose metrics.
# See <https://github.com/StarRocks/starrocks-kubernetes-operator/blob/main/doc/integration/integration-prometheus-grafana.md#51-turn-on-the-prometheus-metrics-scrape-by-adding-annotations> for more details.
enabled: true
starrocksCluster:
# the namespace of starrockscluster cluster, if not set, the release namespace will be used.
namespace: "dockprivileged"
# specify the BE/CN deployment or not.
enabledBe: true
enabledCn: false
initPassword:
enabled: true
passwordSecret: starrocks-root-pass
starrocksFeProxySpec:
enabled: true
service:
type: LoadBalancer
starrocksFESpec:
service:
type: LoadBalancer
ports:
- name: query
port: 9030
- name: http
port: 8030
# number of replicas to deploy for a FE statefulset.
replicas: 1
image:
# image sliced by "repository:tag"
repository: starrocks/fe-ubuntu
tag: ""
imagePullPolicy: IfNotPresent
resources:
requests:
cpu: 1
memory: 2Gi
# If you want to remove one resource limit, e.g., cpu, you can set it to cpu: "unlimited".
limits:
cpu: 1
memory: 2Gi
starrocksBeSpec:
# number of replicas to deploy for a BE statefulset.
replicas: 1
image:
# image sliced by "repository:tag"
repository: starrocks/be-ubuntu
tag: ""
imagePullPolicy: IfNotPresent
resources:
requests:
cpu: 1
memory: 2Gi
# If you want to remove one resource limit, e.g., cpu, you can set it to cpu: "unlimited".
limits:
cpu: 1
memory: 2Gi
starrocksCnSpec:
# number of replicas to deploy for a BE statefulset.
replicas: 1
image:
# image sliced by "repository:tag"
repository: starrocks/cn-ubuntu
tag: ""
imagePullPolicy: IfNotPresent
resources:
requests:
cpu: 1
memory: 2Gi
# If you want to remove one resource limit, e.g., cpu, you can set it to cpu: "unlimited".
limits:
cpu: 1
memory: 2Giahn heesuk
11/20/2025, 1:11 PM