[BUG] Pull pre==0.26.0a20231225 Image failed on K8S cluster
- Dominant language
- C++
- Stars
- 3.6k
- Forks
- 468
- Avg merge
- 29m
- Merged PRs (30d)
- 1
Description
**Describe the bug**
Pull pre Image failed on K8S cluster
**To Reproduce**
Steps to reproduce the behavior:
1. install graphscope pre
```
pip3 install -U graphscope-client --pre -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com
```
launch k8s
```
import graphscope
graphscope.set_option(log_level='DEBUG')
graphscope.set_option(show_log=True)
# Create GraphScope client session, the 'cluster_type' is k8s by default.
session = graphscope.session(
k8s_coordinator_cpu=1,
k8s_coordinator_mem="1Gi",
k8s_vineyard_cpu=0.2,
k8s_vineyard_mem="1Gi",
vineyard_shared_mem="1Gi",
k8s_engine_cpu=0.2,
k8s_namespace='gs-new-orc-jacky',
k8s_engine_mem="1Gi",
num_workers=1,
enabled_engines="analytical,interactive",
k8s_client_config='~/.kube/config')
print('========= Session created. ==========')
```
See error
```
2023-12-26 23:23:18,290 [INFO][cluster:235]: Launching coordinator...
2023-12-26 23:23:20,345 [INFO][utils:187]: coordinator-bnqhtw-7965c79b88-tgg7k: Successfully assigned gs-new-orc-jacky/coordinator-bnqhtw-7965c79b88-tgg7k to hwy-hn1-riskmgt-hdp-rs5-prd-06.myhll.cn
2023-12-26 23:23:20,346 [INFO][utils:187]: coordinator-bnqhtw-7965c79b88-tgg7k: Pulling image "registry.cn-hongkong.aliyuncs.com/graphscope/coordinator:0.26.0a20231225"
2023-12-26 23:23:20,346 [INFO][utils:187]: coordinator-bnqhtw-7965c79b88-tgg7k: Failed to pull image "registry.cn-hongkong.aliyuncs.com/graphscope/coordinator:0.26.0a20231225": rpc error: code = Unknown desc = Error response from daemon: manifest for registry.cn-hongkong.aliyuncs.com/graphscope/coordinator:0.26.0a20231225 not found: manifest unknown: manifest unknown
2023-12-26 23:23:20,346 [INFO][utils:187]: coordinator-bnqhtw-7965c79b88-tgg7k: Error: ErrImagePull
2023-12-26 23:23:20,347 [INFO][utils:187]: coordinator-bnqhtw-7965c79b88-tgg7k: Back-off pulling image "registry.cn-hongkong.aliyuncs.com/graphscope/coordinator:0.26.0a20231225"
2023-12-26 23:23:20,347 [INFO][utils:187]: coordinator-bnqhtw-7965c79b88-tgg7k: Error: ImagePullBackOff
coordinator-bnqhtw-7965c79b88-tgg7k: Successfully assigned gs-new-orc-jacky/coordinator-bnqhtw-7965c79b88-tgg7k to hwy-hn1-riskmgt-hdp-rs5-prd-06.myhll.cn
coordinator-bnqhtw-7965c79b88-tgg7k: Pulling image "registry.cn-hongkong.aliyuncs.com/graphscope/coordinator:0.26.0a20231225"
coordinator-bnqhtw-7965c79b88-tgg7k: Failed to pull image "registry.cn-hongkong.aliyuncs.com/graphscope/coordinator:0.26.0a20231225": rpc error: code = Unknown desc = Error response from daemon: manifest for registry.cn-hongkong.aliyuncs.com/graphscope/coordinator:0.26.0a20231225 not found: manifest unknown: manifest unknown
coordinator-bnqhtw-7965c79b88-tgg7k: Error: ErrImagePull
coordinator-bnqhtw-7965c79b88-tgg7k: Back-off pulling image "registry.cn-hongkong.aliyuncs.com/graphscope/coordinator:0.26.0a20231225"
coordinator-bnqhtw-7965c79b88-tgg7k: Error: ImagePullBackOff
```
**Environment (please complete the following information):**
- GraphScope version: 0.26.0a20231225
- OS: linux centos
- Kubernetes Version 1.23
ref:
#3364
Contributor guide
Assessment
This issue has not been assessed yet.