Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 569 Bytes

bookstack.md

File metadata and controls

36 lines (27 loc) · 569 Bytes

Bookstack

Helm

Install

#
kubectl create ns bookstack

#
export KUBERNETES_IP='<kubernetes-ip>'
export DOMAIN="${KUBERNETES_IP}.nip.io"

#
helm install bookstack stable/bookstack \
  --namespace bookstack \
  --set podSecurityPolicy.enabled=true \
  --set ingress.enabled=true \
  --set ingress.hosts={bookstack.${K8S_DOMAIN}}
Login Password
admin@admin.com password

Delete

helm uninstall bookstack \
  -n bookstack

kubectl delete ns bookstack \
  --grace-period=0 \
  --force