Skip to content

[BUG] Upgrade KubeBlocks from 1.0 to 1.1, create redis cluster using 1.0 addon all instances primary #10460

Description

@JashBook

Describe the bug

helm get notes --namespace kb-system kb-addon-redis
    
NOTES:
Release Information:
  Commit ID: "bd8981541525f4bc41114eee9b8190a15dafa3c5"
  Commit Time: "2026-06-15 16:49:19 +0800"
  Release Branch: "release-1.0"
  Release Time:  "2026-06-15 16:54:35 +0800"
  Enterprise: "false"

kbcli version 
Kubernetes: v1.34.6-vke.8
KubeBlocks: 1.1.0-beta.7
kbcli: 1.0.2

To Reproduce
Steps to reproduce the behavior:

  1. create cluster
apiVersion: apps.kubeblocks.io/v1
kind: Cluster
metadata:
  name: rediscl-ztsrwx
  namespace: default
spec:
  clusterDef: redis
  topology: cluster
  terminationPolicy: Delete
  services:
  - componentSelector: shard
    name: secondary
    serviceName:  shard-secondary
    roleSelector: secondary
    spec:
      ports:
        - name: redis-cluster
          port: 6379
          protocol: TCP
          targetPort: redis-cluster
  shardings:
  - name: shard
    shards: 3
    shardingDef: redis-cluster
    template:
      name: redis
      componentDef: redis-cluster-7-1.0.4
      serviceVersion: 7.4.2
      replicas: 2
      services:
      - name: redis-advertised
        serviceType: NodePort
        podService: true
      systemAccounts:
      - disabled: false
        name: default
        secretRef:
          name: rediscl-ztsrwx-shard-default
          namespace: default
          password: password
      resources:
        limits:
          cpu: 100m
          memory: 0.5Gi
        requests:
          cpu: 100m
          memory: 0.5Gi
      persistentVolumeClaimRetentionPolicy:
        whenDeleted: Delete
      volumeClaimTemplates:
        - name: data
          spec:
            storageClassName: 
            accessModes:
              - ReadWriteOnce
            resources:
               requests:
                 storage: 20Gi
  1. See error
kubectl get cluster rediscl-ztsrwx 
NAME             CLUSTER-DEFINITION   TERMINATION-POLICY   STATUS     AGE
rediscl-ztsrwx   redis                Delete               Creating   7m28s
➜  ~ 
➜  ~ kbcli cluster list-instances rediscl-ztsrwx
NAME                         NAMESPACE   CLUSTER          COMPONENT          STATUS    ROLE      ACCESSMODE   AZ               CPU(REQUEST/LIMIT)   MEMORY(REQUEST/LIMIT)   STORAGE     NODE                              CREATED-TIME                 
rediscl-ztsrwx-shard-2fs-0   default     rediscl-ztsrwx   shard(shard-2fs)   Running   primary                cn-guangzhou-b   100m / 100m          512Mi / 512Mi           data:20Gi   192.168.169.167/192.168.169.167   Jun 26,2026 09:56 UTC+0800   
rediscl-ztsrwx-shard-2fs-1   default     rediscl-ztsrwx   shard(shard-2fs)   Running   primary                cn-guangzhou-b   100m / 100m          512Mi / 512Mi           data:20Gi   192.168.169.167/192.168.169.167   Jun 26,2026 09:57 UTC+0800   
rediscl-ztsrwx-shard-47f-0   default     rediscl-ztsrwx   shard(shard-47f)   Running   primary                cn-guangzhou-b   100m / 100m          512Mi / 512Mi           data:20Gi   192.168.169.167/192.168.169.167   Jun 26,2026 09:56 UTC+0800   
rediscl-ztsrwx-shard-47f-1   default     rediscl-ztsrwx   shard(shard-47f)   Running   primary                cn-guangzhou-b   100m / 100m          512Mi / 512Mi           data:20Gi   192.168.169.167/192.168.169.167   Jun 26,2026 09:57 UTC+0800   
rediscl-ztsrwx-shard-9sw-0   default     rediscl-ztsrwx   shard(shard-9sw)   Running   primary                cn-guangzhou-b   100m / 100m          512Mi / 512Mi           data:20Gi   192.168.169.167/192.168.169.167   Jun 26,2026 09:56 UTC+0800   
rediscl-ztsrwx-shard-9sw-1   default     rediscl-ztsrwx   shard(shard-9sw)   Running   primary                cn-guangzhou-b   100m / 100m          512Mi / 512Mi           data:20Gi   192.168.169.167/192.168.169.167   Jun 26,2026 09:57 UTC+0800   
kubectl logs rediscl-ztsrwx-shard-2fs-0  kbagent 
2026-06-26T01:57:17Z	INFO	create service Action	{"actions": "postProvision,preTerminate,switchover,memberJoin,memberLeave,roleProbe"}
2026-06-26T01:57:17Z	INFO	create service Probe	{"probes": "roleProbe"}
2026-06-26T01:57:17Z	INFO	create service Streaming	{"actions": ""}
2026-06-26T01:57:17Z	INFO	service Action started...
2026-06-26T01:57:17Z	INFO	service Probe started...
2026-06-26T01:57:17Z	INFO	service Streaming started...
2026-06-26T01:57:17Z	INFO	starting the HTTP server
2026-06-26T01:57:17Z	INFO	register service to server	{"service": "Action", "method": "POST", "uri": "/v1.0/action"}
2026-06-26T01:57:17Z	INFO	register service to server	{"service": "Probe", "method": "POST", "uri": "/v1.0/probe"}
2026-06-26T01:57:17Z	INFO	register service to server	{"service": "Streaming", "method": "POST", "uri": "/v1.0/streaming"}
2026-06-26T01:57:17Z	INFO	starting the streaming server
2026-06-26T01:57:17Z	INFO	probe started	{"probe": "roleProbe", "config": {"instance":"rediscl-ztsrwx-shard-2fs","action":"roleProbe","periodSeconds":1,"reportPeriodSeconds":15,"reportOnFileChange":["/etc/kubeblocks/pod-metadata"]}}
2026-06-26T01:57:17Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": false, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T01:57:18Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": false, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T01:57:32Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T01:57:47Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T01:58:02Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T01:58:12Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T01:58:12Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 1005}
2026-06-26T01:58:17Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T01:58:18Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T01:58:18Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 1008}
2026-06-26T01:58:30Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T01:58:30Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 7005}
2026-06-26T01:58:32Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T01:58:39Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T01:58:39Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 4005}
2026-06-26T01:58:47Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T01:59:02Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T01:59:17Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T01:59:31Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T01:59:31Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 1005}
2026-06-26T01:59:32Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T01:59:44Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T01:59:44Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 8005}
2026-06-26T01:59:47Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T01:59:54Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T01:59:54Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 4006}
2026-06-26T02:00:02Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:00:04Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:00:04Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 5007}
2026-06-26T02:00:12Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:00:12Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 3005}
2026-06-26T02:00:17Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:00:32Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:00:42Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:00:42Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 5005}
2026-06-26T02:00:47Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:00:52Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:00:52Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 5005}
2026-06-26T02:01:02Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:01:02Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:01:02Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 5005}
2026-06-26T02:01:17Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:01:22Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:01:22Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 6005}
2026-06-26T02:01:32Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:01:32Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 4005}
2026-06-26T02:01:32Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:01:47Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:02:02Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:02:17Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:02:27Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:02:27Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 1005}
2026-06-26T02:02:32Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:02:47Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:02:49Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:02:49Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 4006}
2026-06-26T02:02:58Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:02:58Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 4006}
2026-06-26T02:03:02Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:03:17Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:03:25Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:03:25Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 2005}
2026-06-26T02:03:32Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:03:47Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:03:52Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:03:52Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 8005}
2026-06-26T02:04:00Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:04:00Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 2006}
2026-06-26T02:04:02Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:04:10Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:04:10Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 5005}
2026-06-26T02:04:17Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:04:17Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:04:17Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 2005}
➜  ~ 
➜  ~ kubectl logs rediscl-ztsrwx-shard-2fs-1  kbagent
2026-06-26T01:57:50Z	INFO	create service Action	{"actions": "postProvision,preTerminate,switchover,memberJoin,memberLeave,roleProbe"}
2026-06-26T01:57:50Z	INFO	create service Probe	{"probes": "roleProbe"}
2026-06-26T01:57:50Z	INFO	create service Streaming	{"actions": ""}
2026-06-26T01:57:50Z	INFO	service Action started...
2026-06-26T01:57:50Z	INFO	service Probe started...
2026-06-26T01:57:50Z	INFO	service Streaming started...
2026-06-26T01:57:50Z	INFO	starting the HTTP server
2026-06-26T01:57:50Z	INFO	register service to server	{"service": "Action", "method": "POST", "uri": "/v1.0/action"}
2026-06-26T01:57:50Z	INFO	register service to server	{"service": "Probe", "method": "POST", "uri": "/v1.0/probe"}
2026-06-26T01:57:50Z	INFO	register service to server	{"service": "Streaming", "method": "POST", "uri": "/v1.0/streaming"}
2026-06-26T01:57:50Z	INFO	starting the streaming server
2026-06-26T01:57:50Z	INFO	probe started	{"probe": "roleProbe", "config": {"instance":"rediscl-ztsrwx-shard-2fs","action":"roleProbe","periodSeconds":1,"reportPeriodSeconds":15,"reportOnFileChange":["/etc/kubeblocks/pod-metadata"]}}
2026-06-26T01:57:50Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": false, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T01:57:51Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": false, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T01:58:05Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T01:58:20Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T01:58:35Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T01:58:47Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T01:58:47Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 3005}
2026-06-26T01:58:50Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T01:59:01Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T01:59:01Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 8005}
2026-06-26T01:59:05Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T01:59:15Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T01:59:15Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 9007}
2026-06-26T01:59:20Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T01:59:25Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T01:59:25Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 5005}
2026-06-26T01:59:35Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T01:59:50Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:00:05Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:00:18Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:00:18Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 1005}
2026-06-26T02:00:20Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:00:31Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:00:31Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 8005}
2026-06-26T02:00:35Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:00:50Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:01:05Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:01:11Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:01:11Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 4005}
2026-06-26T02:01:20Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:01:35Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:01:46Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:01:46Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 9008}
2026-06-26T02:01:50Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:01:58Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:01:58Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 7006}
2026-06-26T02:02:05Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:02:13Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:02:13Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 10005}
2026-06-26T02:02:20Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:02:20Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:02:20Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 2005}
2026-06-26T02:02:34Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:02:34Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 2006}
2026-06-26T02:02:35Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:02:40Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:02:40Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 1005}
2026-06-26T02:02:50Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:03:05Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:03:09Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:03:09Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 5006}
2026-06-26T02:03:18Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:03:18Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 4007}
2026-06-26T02:03:20Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:03:35Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:03:39Z	INFO	Action Executed	{"action": "postProvision", "result": "exit code: 1: failed"}
2026-06-26T02:03:39Z	INFO	HTTP API Called	{"user-agent": "Go-http-client/1.1", "method": "POST", "path": "/v1.0/action", "status code": 200, "cost": 9005}
2026-06-26T02:03:50Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:04:05Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}
2026-06-26T02:04:20Z	INFO	succeed to send the probe event	{"probe": "roleProbe", "retry": false, "periodically": true, "probe": "roleProbe", "code": 0, "output": "primary", "message": ""}

Expected behavior
A clear and concise description of what you expected to happen.

Screenshots
If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

  • OS: [e.g. iOS]
  • Browser [e.g. chrome, safari]
  • Version [e.g. 22]

Additional context
Add any other context about the problem here.

Metadata

Metadata

Assignees

Labels

kind/bugSomething isn't working

Type

No type

Projects

No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions