init commit

This commit is contained in:
2025-09-29 07:07:02 +02:00
commit 842b408526
11 changed files with 317 additions and 0 deletions

25
README.md Normal file
View File

@@ -0,0 +1,25 @@
# MongoDB
## Basic stuff
### Install
```shell
helm install mongo ./helm --namespace mongo --create-namespace
```
### Update
```shell
helm -n mongo upgrade mongo .\helm
```
### Check
```shell
kubectl -n mongo get secret,cm,pvc,pod,svc
```
### Delete
```shell
kubectl delete ns mongo
```