Helm chart for deploying Peertube on kubernetes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.2 KiB

5 years ago
  1. # [Peertube](https://github.com/Chocobozzz/PeerTube) on kubernetes
  2. Federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent.
  3. ---
  4. ## Status : WIP
  5. - [x] Run Peertube and Redis
  6. - [x] Use pvc to persist data
  7. - [ ] Improve readme for deployment
  8. ## Before deploy
  9. Currently if you want use persistent volume you need to create persistent volume and persistent volume claim
  10. You also need a postgresql server.
  11. If you know what you are doing and want to store postgres in Kubernetes, I suggest the excellent [stolon](https://github.com/helm/charts/tree/master/stable/stolon).
  12. ## Installing the chart
  13. `$ helm install --name my-release peertube`
  14. Specify each parameter using the --set key=value[,key=value] argument to helm install. For example,
  15. ```
  16. $ helm install --name my-release \
  17. --set environment.hostname=new.domain.tld,\
  18. postgresql.postgresPassword=secretpassword \
  19. peertube
  20. ```
  21. Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
  22. `$ helm install --name my-release -f values.yaml peertube`
  23. See the values.yml.sample for example of values to use
  24. ## Source
  25. Originated from https://github.com/MikaXII/helm-charts
  26. Thanks!