zilliztech / milvus-operator

The Kubernetes Operator of Milvus.
https://milvus.io
Apache License 2.0
34 stars 20 forks source link

exec user process caused: exec format error #18

Closed lysShub closed 9 months ago

lysShub commented 9 months ago

kubectl apply -f https://raw.githubusercontent.com/zilliztech/milvus-operator/main/deploy/manifests/deployment.yaml

vecdb@pve-223-x86:~/milvus-install$ kubectl get pods -n milvus-operator
NAME                               READY   STATUS              RESTARTS   AGE
milvus-operator-68c6964984-vhn9w   0/1     ContainerCreating   0          5m14s
milvus-operator-checker-q2v87      0/1     CrashLoopBackOff    5          5m14s
vecdb@pve-223-x86:~/milvus-install$ kubectl logs milvus-operator-checker-q2v87 -n milvus-operator
standard_init_linux.go:228: exec user process caused: exec format error
vecdb@pve-223-x86:~/milvus-install$
lysShub commented 9 months ago

milvusdb/milvus-operator not support arm64 ?

lysShub commented 9 months ago

milvusdb/milvus-operator not support arm64 ?

https://milvus.io/docs/prerequisite-helm.md

gruberdev commented 9 months ago

milvusdb/milvus-operator not support arm64 ?

milvus.io/docs/prerequisite-helm.md

As far I am aware, the list of CPU instructions listed as requirements are all x86 exclusive:

  • SSE4.2
  • AVX
  • AVX2
  • AVX-512

This can be further observed on the list of supported architectures in the Docker hub image tag page.

lysShub commented 9 months ago

milvusdb/milvus-operator not support arm64 ?

milvus.io/docs/prerequisite-helm.md

As far I am aware, the list of CPU instructions listed as requirements are all x86 exclusive:

  • SSE4.2
  • AVX
  • AVX2
  • AVX-512

This can be further observed on the list of supported architectures in the Docker hub image tag page.

add nodeSelector to amd64 node

haorenfsa commented 9 months ago

@lysShub Hi, Arm image is in beta, if you want to try out, search for "arm" in milvus' dockerhub repo to find beta images.

image