Add mongodb
This commit is contained in:
parent
5cd59b2504
commit
d8c41ca21b
3 changed files with 27 additions and 0 deletions
|
@ -60,6 +60,11 @@ helmApps:
|
||||||
repoURL: https://k8s-at-home.com/charts/
|
repoURL: https://k8s-at-home.com/charts/
|
||||||
chart: wallabag
|
chart: wallabag
|
||||||
revision: 7.1.2
|
revision: 7.1.2
|
||||||
|
- app: mongodb
|
||||||
|
namespace: mongodb
|
||||||
|
repoURL: https://groundhog2k.github.io/helm-charts/
|
||||||
|
chart: mongodb
|
||||||
|
revision: 0.5.16
|
||||||
# - app: lemmy
|
# - app: lemmy
|
||||||
# namespace: lemmy
|
# namespace: lemmy
|
||||||
# repoURL: https://ananace.gitlab.io/charts
|
# repoURL: https://ananace.gitlab.io/charts
|
||||||
|
|
10
argo/mongodb/values.yaml
Normal file
10
argo/mongodb/values.yaml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
---
|
||||||
|
serviceAccount:
|
||||||
|
create: true
|
||||||
|
name: "mongodb"
|
||||||
|
|
||||||
|
nodeSelector:
|
||||||
|
kubernetes.io/arch: arm64v8
|
||||||
|
|
||||||
|
storage:
|
||||||
|
persistentVolumeClaimName: mongodb
|
12
manifests/mongodb.yaml
Normal file
12
manifests/mongodb.yaml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
apiVersion: v1
|
||||||
|
kind: PersistentVolumeClaim
|
||||||
|
metadata:
|
||||||
|
name: mongodb
|
||||||
|
namespace: mongodb
|
||||||
|
spec:
|
||||||
|
accessModes:
|
||||||
|
- ReadWriteOnce
|
||||||
|
storageClassName: longhorn-retain
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: 20Gi
|
Loading…
Reference in a new issue