kube/etherpad
Lauri Võsandi 4686108f42 Switch to wildcard *.k-space.ee certificate 2022-10-14 14:32:36 +03:00
..
README.md Initial commit 2022-08-25 11:22:50 +03:00
application.yml Switch to wildcard *.k-space.ee certificate 2022-10-14 14:32:36 +03:00
networkpolicy-base.yml Initial commit 2022-08-25 11:22:50 +03:00

README.md

To apply changes:

kubectl apply -n etherpad -f application.yml -f networkpolicy-base.yml

Initialize MySQL secrets:

kubectl create secret generic -n etherpad mariadb-secrets \
     --from-literal=MYSQL_ROOT_PASSWORD=$(cat /dev/urandom | base64 | head -c 30) \
     --from-literal=MYSQL_PASSWORD=$(cat /dev/urandom | base64 | head -c 30)