mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 06:07:21 +01:00
29 lines
620 B
YAML
29 lines
620 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: mongodb
|
|
labels:
|
|
name: mongodb
|
|
spec:
|
|
containers:
|
|
- resources:
|
|
limits :
|
|
cpu: 0.5
|
|
image: mongo
|
|
name: mongodb
|
|
ports:
|
|
- containerPort: 27017
|
|
hostPort: 27017
|
|
name: mongo
|
|
volumeMounts:
|
|
# # name must match the volume name below
|
|
- name: mongo-persistent-storage
|
|
# # mount path within the container
|
|
mountPath: /data/db
|
|
volumes:
|
|
- name: mongo-persistent-storage
|
|
awsElasticBlockStore:
|
|
volumeID: aws://YOUR-REGION/YOUR-VOLNAME
|
|
fsType: ext3
|
|
|