gpt4 book ai didi

mongodb - 创建 mongodb 副本集时出错 - 显示无法识别的选项 '--smallfiles'

转载 作者:行者123 更新时间:2023-12-02 11:31:00 26 4
gpt4 key购买 nike

我正在创建下面的 mongodb statefulset,它创建了 3 个副本,但是当我运行代码时,我收到以下错误并且所有 pod 都处于 CrashLoopBackOff 状态。

这是我尝试 kubectl create -f 时得到的错误

Error parsing command line: unrecognised option '--smallfiles' 
apiVersion: apps/v1beta1
kind: StatefulSet
metadata:
name: mongo
namespace: microservice1
spec:
serviceName: "mongo"
replicas: 3
template:
metadata:
labels:
role: mongo
environment: test
spec:
terminationGracePeriodSeconds: 10
containers:
- name: mongo
image: mongo
command:
- mongod
- "--replSet"
- rs0
- "--smallfiles"
- "--noprealloc"
ports:
- containerPort: 27017
volumeMounts:
- name: mongo-persistent-storage
mountPath: /data/db
- name: mongo-sidecar
image: cvallance/mongo-k8s-sidecar
env:
- name: MONGO_SIDECAR_POD_LABELS
value: "role=mongo,environment=test"
volumes:
- name: mongo-persistent-storage
flexVolume:
driver: rook.io/rook
fsType: ceph
options:
fsName: myfs # name of the filesystem specified in the filesystem CRD.
clusterNamespace: rook # namespace where the Rook cluster is deployed
clusterName: rook

最佳答案

--smallfiles最新的 mongo (4.2) 不支持,您可以在 doc 中查看它,您没有指定最新的图像标签 latest在这种情况下是拉 mongo 4.2。

如果您设置 image: mongo:4.0你的配置应该是正确的。

关于mongodb - 创建 mongodb 副本集时出错 - 显示无法识别的选项 '--smallfiles',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57492145/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com