Skip to content
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
2 changes: 1 addition & 1 deletion doc/automatic_scaling_for_cn_nodes_howto.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Add the following snippets to `values.yaml` to configure the automatic scaling p
starrocksCnSpec:
image:
repository: starrocks/cn-ubuntu
tag: 3.3-latest
tag: 3.5-latest
resources:
requests:
cpu: 4
Expand Down
4 changes: 2 additions & 2 deletions doc/integration/integration-prometheus-grafana.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ spec:
configMapInfo:
configMapName: kube-starrocks-be-cm
resolveKey: be.conf
image: starrocks/be-ubuntu:3.3-latest
image: starrocks/be-ubuntu:3.5-latest
limits:
cpu: 4
memory: 4Gi
Expand All @@ -128,7 +128,7 @@ spec:
configMapInfo:
configMapName: kube-starrocks-fe-cm
resolveKey: fe.conf
image: starrocks/fe-ubuntu:3.3-latest
image: starrocks/fe-ubuntu:3.5-latest
limits:
cpu: 4
memory: 4Gi
Expand Down
8 changes: 4 additions & 4 deletions doc/mount_persistent_volume_howto.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ metadata:
cluster: kube-starrocks
spec:
starRocksFeSpec:
image: "starrocks/fe-ubuntu:3.3-latest"
image: "starrocks/fe-ubuntu:3.5-latest"
replicas: 1
storageVolumes:
- name: fe-meta
Expand All @@ -41,7 +41,7 @@ spec:
storageSize: 5Gi
mountPath: /opt/starrocks/fe/log
starRocksBeSpec:
image: "starrocks/be-ubuntu:3.3-latest"
image: "starrocks/be-ubuntu:3.5-latest"
replicas: 3
storageVolumes:
- name: be-data
Expand Down Expand Up @@ -107,7 +107,7 @@ starrocks:
starrocksFESpec:
image:
repository: starrocks/fe-ubuntu
tag: 3.3-latest
tag: 3.5-latest
storageSpec:
name: fe-data
storageClassName: standard-rwo # standard-rwo is the default storageClassName in GKE.
Expand All @@ -116,7 +116,7 @@ starrocks:
starrocksBeSpec:
image:
repository: starrocks/be-ubuntu
tag: 3.3-latest
tag: 3.5-latest
replicas: 3
storageSpec:
name: be-storage
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ metadata:
app.kubernetes.io/managed-by: Helm
spec:
starRocksFeSpec:
image: "starrocks/fe-ubuntu:3.3-latest"
image: "starrocks/fe-ubuntu:3.5-latest"
replicas: 1
limits:
cpu: 8
Expand All @@ -30,7 +30,7 @@ spec:
configMapName: kube-starrocks-fe-cm
resolveKey: fe.conf
starRocksBeSpec:
image: "starrocks/be-ubuntu:3.3-latest"
image: "starrocks/be-ubuntu:3.5-latest"
replicas: 1
limits:
cpu: 8
Expand Down
2 changes: 1 addition & 1 deletion helm-charts/charts/kube-starrocks/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ version: 1.10.2
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: 3.3-latest
appVersion: 3.5-latest

kubeVersion: ">=1.18.3-0"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ version: 1.10.2
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: 3.3-latest
appVersion: 3.5-latest

kubeVersion: ">=1.18.3-0"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ starrocksCluster:
# 2. the values in their own spec will replace all the values in this field, not merge.
componentValues:
image:
tag: "3.3-latest"
tag: "3.5-latest"
# hostAliases allows adding entries to /etc/hosts inside the containers.
hostAliases: []
# - ip: "127.0.0.1"
Expand Down
2 changes: 1 addition & 1 deletion helm-charts/charts/kube-starrocks/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ starrocks:
# 2. the values in their own spec will replace all the values in this field, not merge.
componentValues:
image:
tag: "3.3-latest"
tag: "3.5-latest"
# hostAliases allows adding entries to /etc/hosts inside the containers.
hostAliases: []
# - ip: "127.0.0.1"
Expand Down
2 changes: 1 addition & 1 deletion helm-charts/charts/warehouse/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ version: 1.10.2
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: 3.3-latest
appVersion: 3.5-latest

kubeVersion: ">=1.18.3-0"

Expand Down
2 changes: 1 addition & 1 deletion helm-charts/charts/warehouse/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ spec:
# image sliced by "repository:tag"
repository: starrocks/cn-ubuntu
# Note: the image tag must be greater than or equal to 3.2.0
tag: 3.3-latest
tag: 3.5-latest
# serviceAccount for pod access cloud service.
serviceAccount: ""
# add annotations for pods. example, if you want to config monitor for datadog, you can config the annotations.
Expand Down
Loading