Skip to content

Releases: StarRocks/starrocks-kubernetes-operator

v1.11.1 🌈

01 Sep 06:02
5517516
Compare
Choose a tag to compare

Changes

This version includes an important BugFix. If users are using older versions of the BE/CN Image, data loss may occur if the container is restarted (for example, upgrading the container image or changing environment variables) during parallel data import. This error is caused by the graceful shutdown parameter -g added in stop_cn.sh or stop_be.sh. Therefore, we have modified the default preStop configuration.

The strategy is as follows:

For shared-data mode: versions lower than 3.3.17, 3.4.6, and 3.5.2.
For shared-nothing mode: versions lower than 3.3.19, 3.4.8, and 3.5.6.

When users use these older versions, the -g parameter will no longer be added to the default preStop parameters.

v1.11.0 🌈

04 Aug 02:44
599900c
Compare
Choose a tag to compare

Changes

v1.10.2 🌈

06 May 09:10
3948748
Compare
Choose a tag to compare

Changes

v1.10.1 🌈

03 Apr 07:35
c254633
Compare
Choose a tag to compare

Changes

v1.10.0 🌈

21 Feb 06:12
916e90b
Compare
Choose a tag to compare

Changes

  • [Enhancement] Support to delete statefulset for warehouse @yandongxiao (#623)
  • Feature/support disaster recovery @yandongxiao (#621)
  • [Enhancement] Introduce a new sidecarsMap configuration option to allow merge sidecarswhen using helm chart @yandongxiao (#620)
  • [Documentation] update comment in values.yaml @yandongxiao (#619)
  • [BugFix] Fix StatefulSet Update Strategy Handling @yandongxiao (#616)
  • [Bugfix] Do not create the default data storage volume when deploying be with multiple volumes @yandongxiao (#613)
  • [Documentation] update doc/use_multiple_volumes_how_to.md @yandongxiao (#614)
  • [Documentation] Add doc/use_multiple_volumes_how_to.md @yandongxiao (#612)

v1.9.10 🌈

08 Jan 06:02
004f594
Compare
Choose a tag to compare

Changes

🧰 Maintenance

v1.9.9 🌈

19 Nov 16:12
576e398
Compare
Choose a tag to compare

Changes

v1.9.8 🌈

29 Aug 08:39
b8b2d58
Compare
Choose a tag to compare

Release Notes for starrocks-kubernetes-operator v1.9.8

We are excited to announce the release of StarRocks Kubernetes Operator v1.9.8. This version has the following
enhancements:

  1. [Helm Chart] Support multiple data volumes on helm chart. #578.
  2. [Helm Chart] Use a reasonable volume size for logging for BE/CN. Because the logStorageSize field of the Helm Chart
    is modified. If the user uses the default value, the Operator will try to update the PVC part of the component's
    Statefulset. Statefulset does not allow this part of the configuration to be updated, so there is a case of tuning
    failure. The solution is to set it to the original default value, 1GB. #579.
  3. [Helm Chart] Support config override. #580.
  4. [Operator] Add update permission for starrocksclusters/finalizers resource for OpenShift. #484
  5. [Operator] Support to disable probe. #569

We thank our community for their contributions and feedback. For a detailed list of changes and updates, please refer to
the GitHub repository. Happy deploying!

v1.9.7 🌈

26 Jun 09:06
036fdd5
Compare
Choose a tag to compare

Release Notes for starrocks-kubernetes-operator v1.9.7

We are excited to announce the release of StarRocks Kubernetes Operator v1.9.7. This version has the following
enhancements and bug fixes:

  1. [Operator] Fix the problem that FE proxy will fail when FE external service is recreated #557.
  2. [Operator] Add loadBalancerSourceRanges field to support setting the source IP range for the load balancer #551.
  3. [Operator] Add topologySpreadConstraints field to support setting the topology spread constraints for pods #546.
  4. [Operator] Add CRD version information to CRD annotations #544
  5. [Operator] Make it easy to configure the hostPath volume #552
  6. [Chart] Add spill storage volume for BE and CN #547
  7. [Chart] Remove JAVA_OPTS_FOR_JDK_9 and JAVA_OPTS_FOR_JDK_11 env from fe config, this will cause the pods of FE to restart if you are using the default config of FE in values.yaml #542
  8. [Documentation] We have added or updated some documents to help users deploy and manage StarRocks clusters on Kubernetes. #524 #525 #527 #530 #531 #532 #536 #538.

We thank our community for their contributions and feedback. For a detailed list of changes and updates, please refer to
the GitHub repository. Happy deploying!

v1.9.6 🌈

09 May 07:29
3d1e402
Compare
Choose a tag to compare

Release Notes for starrocks-kubernetes-operator v1.9.6

We are excited to announce the release of StarRocks Kubernetes Operator v1.9.6. This version has the following enhancements:

  1. Support command and args(#516) in StarRocksCluster spec. You can easily customize the command and args if you are using helm chart.
    Below is a code snippet from values.yaml for your reference:
     entrypoint:
       script: |
         #! /bin/bash
         echo "do something before start cn"
         exec /opt/starrocks/cn_entrypoint.sh $FE_SERVICE_NAME
  2. Support ImagePullPolicy in StarRocksCluster spec(#514).
  3. Support to use namespaced scope permission to deploy warehouses(#513).