Add mongodb

This commit is contained in:
Amarpreet Minhas 2023-07-17 16:50:24 +00:00
parent 5cd59b2504
commit d8c41ca21b
3 changed files with 27 additions and 0 deletions

View file

@ -60,6 +60,11 @@ helmApps:
repoURL: https://k8s-at-home.com/charts/
chart: wallabag
revision: 7.1.2
- app: mongodb
namespace: mongodb
repoURL: https://groundhog2k.github.io/helm-charts/
chart: mongodb
revision: 0.5.16
# - app: lemmy
# namespace: lemmy
# repoURL: https://ananace.gitlab.io/charts

10
argo/mongodb/values.yaml Normal file
View file

@ -0,0 +1,10 @@
---
serviceAccount:
create: true
name: "mongodb"
nodeSelector:
kubernetes.io/arch: arm64v8
storage:
persistentVolumeClaimName: mongodb

12
manifests/mongodb.yaml Normal file
View file

@ -0,0 +1,12 @@
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: mongodb
namespace: mongodb
spec:
accessModes:
- ReadWriteOnce
storageClassName: longhorn-retain
resources:
requests:
storage: 20Gi