I am trying to deploy a mongo db
deployment together with service, as follows:
apiVersion: apps/v1
kind: Deployment
metadata:
name: mongo-deployment
labels:
app: mongo
spec:
replicas: 1
selector:
matchLabels:
app: mongo
template:
metadata:
labels:
app: mongo
spec:
containers:
- name: mongo
image: mongo:5.0
ports:
- containerPort: 27017
env:
- name: MONGO_INITDB_ROOT_USERNAME
valueFrom:
secretKeyRef:
name: mongo-secret
key: mongo-user
- name: MONGO_INITDB_ROOT_PASSWORD
valueFrom:
secretKeyRef:
name: mongo-secret
key: mongo-password
---
apiVersion: v1
kind: Service
metadata:
name: mongo-service
spec:
selector:
app: mongo
ports:
- protocol: TCP
port: 27017
targetPort: 27017
Even though everything seems to be configured right and deployed, it gets to a CrashLoopBackOff
state instead of Running
, using a kubectl logs <deployment-name>
I get the following error:
MongoDB 5.0+ requires a CPU with AVX support, and your current system does not appear to have that!
Does anybody know what to do?
3
Answers
To solve this issue I had to run an older
mongo-db
docker image version (4.4.6), as follows:Reference:
Mongo 5.0.0 crashes but 4.4.6 works #485
If you use Windows+VirtualBox this will resolve the issue:
perhaps host reboot required.
The latest version that can work WITHOUT
AVX
isbut if you are using it on a VPS, its worth a shot to contact their support, mine said that they changed the CPU type and that fixed the problem.