kube/camtiler/README.md

25 lines
890 B
Markdown
Raw Normal View History

2022-08-16 09:40:54 +00:00
To apply changes:
```
2022-12-12 18:37:03 +00:00
kubectl apply -n camtiler -f application.yml -f persistence.yml -f mongoexpress.yml -f mongodb-support.yml -f networkpolicy-base.yml
2022-08-16 09:40:54 +00:00
```
To deploy changes:
```
kubectl -n camtiler rollout restart deployment.apps/camtiler
```
To initialize secrets:
```
kubectl create secret generic -n camtiler mongodb-application-readwrite-password --from-literal="password=$(cat /dev/urandom | base64 | head -c 30)"
kubectl create secret generic -n camtiler mongodb-application-readonly-password --from-literal="password=$(cat /dev/urandom | base64 | head -c 30)"
2022-12-12 18:37:03 +00:00
kubectl create secret generic -n camtiler minio-secrets \
2022-08-16 09:40:54 +00:00
--from-literal="MINIO_ROOT_USER=root" \
2022-12-12 18:37:03 +00:00
--from-literal="MINIO_ROOT_PASSWORD=$(cat /dev/urandom | base64 | head -c 30)"
2022-08-16 09:40:54 +00:00
kubectl -n camtiler create secret generic camera-secrets \
--from-literal=username=... \
--from-literal=password=...
```