github.com/1aal/kubeblocks@v0.0.0-20231107070852-e1c03e598921/deploy/starrocks/values.yaml (about) 1 # Default values for starrocks. 2 # This is a YAML-formatted file. 3 4 nameOverride: "" 5 fullnameOverride: "" 6 clusterVersionOverride: "" 7 8 timezone: Asia/Shanghai 9 10 fe: 11 image: 12 registry: docker.io 13 repository: starrocks/fe-ubuntu 14 pullPolicy: IfNotPresent 15 tag: 2.5.4 16 config: | 17 LOG_DIR = ${STARROCKS_HOME}/log 18 DATE = "$(date +%Y%m%d-%H%M%S)" 19 JAVA_OPTS="-Dlog4j2.formatMsgNoLookups=true -Xmx8192m -XX:+UseMembar -XX:SurvivorRatio=8 -XX:MaxTenuringThreshold=7 -XX:+PrintGCDateStamps -XX:+PrintGCDetails -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:+CMSClassUnloadingEnabled -XX:-CMSParallelRemarkEnabled -XX:CMSInitiatingOccupancyFraction=80 -XX:SoftRefLRUPolicyMSPerMB=0 -Xloggc:${LOG_DIR}/fe.gc.log.$DATE" 20 JAVA_OPTS_FOR_JDK_9="-Dlog4j2.formatMsgNoLookups=true -Xmx8192m -XX:SurvivorRatio=8 -XX:MaxTenuringThreshold=7 -XX:+CMSClassUnloadingEnabled -XX:-CMSParallelRemarkEnabled -XX:CMSInitiatingOccupancyFraction=80 -XX:SoftRefLRUPolicyMSPerMB=0 -Xlog:gc*:${LOG_DIR}/fe.gc.log.$DATE:time" 21 http_port = 8030 22 rpc_port = 9020 23 query_port = 9030 24 edit_log_port = 9010 25 mysql_service_nio_enabled = true 26 sys_log_level = INFO 27 28 queryPort: 9030 29 probe: 30 # failureThreshold will be set in the helm template 31 httpGet: 32 path: /api/health 33 port: 8030 34 scheme: HTTP 35 periodSeconds: 5 36 successThreshold: 1 37 timeoutSeconds: 1 38 resources: 39 limits: 40 cpu: "8" 41 memory: 8Gi 42 requests: 43 cpu: 100m 44 memory: 100Mi 45 46 be: 47 image: 48 registry: docker.io 49 repository: starrocks/be-ubuntu 50 pullPolicy: IfNotPresent 51 tag: 2.5.4 52 config: | 53 be_port = 9060 54 webserver_port = 8040 55 heartbeat_service_port = 9050 56 brpc_port = 8060 57 sys_log_level = INFO 58 default_rowset_type = beta 59 probe: 60 # failureThreshold will be set in the helm template 61 httpGet: 62 path: /api/health 63 port: 8040 64 scheme: HTTP 65 periodSeconds: 5 66 successThreshold: 1 67 timeoutSeconds: 1 68 resources: 69 limits: 70 cpu: "8" 71 memory: 8Gi 72 requests: 73 cpu: 100m 74 memory: 100Mi