forked from k-space/kube
argocd
asterisk
bind
camtiler
.gitignore
README.md
application.yml
camera-tiler.yml
ingress.yml
logmower.yml
mongodb-support.yml
mongodb.yml
mongoexpress.yml
network-policies.yml
networkpolicy-base.yml
cert-manager
cnpg-system
drone
drone-execution
elastic-system
etherpad
freescout
gitea
grafana
hackerspace
harbor
kube-system
kubernetes-dashboard
local-path-storage
logging
logmower
longhorn-system
member-site
metallb-system
minio-clusters
mongodb-operator
monitoring
mysql-clusters
mysql-operator
nextcloud
nyancat
oidc-gateway
openebs
playground
postgres-clusters
postgres-operator
prometheus-operator
redis-clusters
reloader
ripe87
rosdump
shared
tigera-operator
traefik
wiki
wildduck
woodpecker
.drone.yml
.gitignore
CONTRIBUTORS.md
LICENSE.md
README.md
ansible-bind-primary.yml
ansible-doors.yml
ansible-kubernetes.yml
ansible.cfg
cluster-role-bindings.yml
inventory.yml
ssh_config
storage-class.yaml
To apply changes:
kubectl apply -n camtiler \
-f application.yml \
-f minio.yml \
-f mongoexpress.yml \
-f mongodb-support.yml \
-f camera-tiler.yml \
-f logmower.yml \
-f ingress.yml \
-f network-policies.yml \
-f networkpolicy-base.yml
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)"
kubectl create secret generic -n camtiler minio-secrets \
--from-literal="MINIO_ROOT_USER=root" \
--from-literal="MINIO_ROOT_PASSWORD=$(cat /dev/urandom | base64 | head -c 30)"
kubectl -n camtiler create secret generic camera-secrets \
--from-literal=username=... \
--from-literal=password=...
To restart all deployments:
for j in $(kubectl get deployments -n camtiler -o name); do kubectl rollout restart -n camtiler $j; done