存算分离集群升级时,提示 `/opt/starrocks/cn_entrypoint.sh: no such file or directory`

【详述】存算分离集群升级时,提示 /opt/starrocks/cn_entrypoint.sh: no such file or directory
【背景】执行了升级命令

kubectl -n starrocks patch starrockscluster starrockscluster-sample --type='merge' -p '{"spec":{"starRocksBeSpec":{"image":"starrocks/be-ubuntu:3.2.4"}}}'

【业务影响】
cn 节点的 pod 重新启动失败, 查看 kubectl describe 查看节点启动过程, 提示

container create failed: time="2024-04-18T08:21:46Z" level=error msg="runc
│ create failed: unable to start container process: exec: \"/opt/starrocks/cn_entrypoint.sh\": stat /opt/starrocks/cn_entrypoint.sh: no such file or
│  directory"

另外, 直接修改 yaml 中的 image 版本, 重新执行 kubectl -n starrocks -f xxx.yaml 可以正常升级

yaml 文件部分代码

apiVersion: starrocks.com/v1
kind: StarRocksCluster
metadata:
  name: starrocks-kp
  namespace: starrocks
spec:
  starRocksFeSpec:
    image: starrocks/be-ubuntu:3.2.4
    podLabels:
      app: starrocks-kp-fe
      cluster: starrocks-kp

【是否存算分离】是
【StarRocks版本】
3.1.10 升级到 3.2.4
starrocks-operator 版本为 1.9.5

【集群规模】3fe(1 follower+2observer)+ 6cn
【机器信息】FE:4C/8G/万兆, CN: 14C/62G/万兆
【联系方式】
StarRocks 3.0-存算分离用户群, 可以自然点嘛

【】: 执行

您好 跟您确认下 您升级的这个3.2版本的镜像是是官网提供的版本吗
然后麻烦确认下这个脚本的 cn_entrypoint.sh 权限是?

@yuchen1019
是官方版本, 没有设置过 cn_entrypoint.sh 的权限,
使用 kubectl -n starrocks -f xxx.yaml 方式升级成功后, 进入 cn 的 pod 中, 查看文件权限如下

root@starrocks-kp-cn-1:/opt/starrocks# ll
total 2072
drwxr-xr-x. 1 starrocks starrocks      16 Mar 11 13:55 ./
drwxr-xr-x. 1 root      root           23 Mar 11 13:54 ../
-rw-rw-r--. 1 starrocks starrocks   10234 Feb  2 10:47 LICENSE.txt
-rw-r--r--. 1 starrocks starrocks 2088768 Mar 11 12:38 NOTICE.txt
drwxr-xr-x. 1 starrocks starrocks      51 Apr 18 08:39 be/
-rwxrwxr-x. 1 starrocks starrocks    3269 Sep 25  2023 be_entrypoint.sh*
-rwxrwxr-x. 1 starrocks starrocks     154 Apr 14  2023 be_prestop.sh*
lrwxrwxrwx. 1 starrocks starrocks       2 Mar 11 13:55 cn -> be/
-rwxrwxr-x. 1 starrocks starrocks    5669 Mar 11 13:37 cn_entrypoint.sh*
-rwxrwxr-x. 1 starrocks starrocks     154 Apr 14  2023 cn_prestop.sh*
root@starrocks-kp-cn-1:/opt/starrocks#

可以稳定复现的吗?