k8s 单机版mongodb
2021/7/31 2:06:04
本文主要是介绍k8s 单机版mongodb,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
cat <<END>demon.yaml kind: Deployment apiVersion: apps/v1 metadata: labels: k8s-app: test-mongo name: test-mongo #namespace: devops spec: replicas: 1 selector: matchLabels: k8s-app: test-mongo template: metadata: labels: k8s-app: test-mongo name: test-mongo spec: containers: - name: test-mongo image: mongo:latest imagePullPolicy: IfNotPresent ports: - containerPort: 27017 name: web protocol: TCP resources: limits: cpu: 8 memory: 8Gi requests: cpu: 1 memory: 1000Mi env: - name: MONGO_INITDB_ROOT_USERNAME value: root - name: MONGO_INITDB_ROOT_PASSWORD value: 'klvu9chen123' #securityContext: #privileged: true #runAsUser: 0 volumeMounts: - mountPath: /data/db name: data - mountPath: /etc/localtime name: times volumes: - name: data persistentVolumeClaim: claimName: mongo - name: times hostPath: path: /usr/share/zoneinfo/Asia/Shanghai --- kind: Service apiVersion: v1 metadata: labels: k8s-app: test-mongo name: test-mongo #namespace: devops spec: type: NodePort ports: - name: web port: 27017 targetPort: 27017 nodePort: 31177 selector: k8s-app: test-mongo END
mongodb 简单操作
# 可以通过 kubectl -n klvhcen exec -it POD_NAME /bin/bash 进入容器 # 进入 mongodb 客户端 mongo admin # 认证 db.auth('root','klvu9chen123') # mongodb 创建 test 数据库,创建用户和密码 use test db.createUser( { user: "test", pwd: "test123", roles: [ { role: "readWrite", db: "test" } ] } ) # 备份,会在当前目录下默认创建名为 dump 的备份文件夹 mongodump --host 127.0.0.1 --port 27017 -u test --authenticationDatabase test # 恢复 mongorestore --host 127.0.0.1 --port 27017 -u test --authenticationDatabase recommend dump
这篇关于k8s 单机版mongodb的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-20/kubernetes 1.32版本更新解读:新特性和变化一目了然
- 2024-12-19拒绝 Helm? 如何在 K8s 上部署 KRaft 模式 Kafka 集群?
- 2024-12-16云原生周刊:Kubernetes v1.32 正式发布
- 2024-12-13Kubernetes上运行Minecraft:打造开发者平台的例子
- 2024-12-12深入 Kubernetes 的健康奥秘:探针(Probe)究竟有多强?
- 2024-12-10运维实战:K8s 上的 Doris 高可用集群最佳实践
- 2024-12-022024年最好用的十大Kubernetes工具
- 2024-12-02OPA守门人:Kubernetes集群策略编写指南
- 2024-11-26云原生周刊:K8s 严重漏洞
- 2024-11-15在Kubernetes (k8s) 中搭建三台 Nginx 服务器怎么实现?-icode9专业技术文章分享