'Mongo DB deployment not working in kubernetes because processor doesn't have AVX support
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?
Solution 1:[1]
To solve this issue I had to run an older mongo-db
docker image version (4.4.6), as follows:
image: mongo:4.4.6
Reference:
Solution 2:[2]
If you use Windows+VirtualBox this will resolve the issue:
bcdedit /set hypervisorlaunchtype off
DISM /Online /Disable-Feature:Microsoft-Hyper-V
perhaps host reboot required.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | pedro_bb7 |
Solution 2 | SeventhSon |