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.

36 lines
1021 B

4 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. ## Before deploy
  5. Currently if you want use persistent volume you need to create persistent volume and persistent volume claim
  6. ## Installing the chart
  7. `$ helm install --name my-release peertube`
  8. Specify each parameter using the --set key=value[,key=value] argument to helm install. For example,
  9. ```
  10. $ helm install --name my-release \
  11. --set environment.hostname=new.domain.tld,\
  12. postgresql.postgresPassword=secretpassword \
  13. peertube
  14. ```
  15. Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
  16. `$ helm install --name my-release -f values.yaml peertube`
  17. ## Status : WIP
  18. - [x] Run
  19. - [x] Persist perrtube data (redis and postgresql to)
  20. - [ ] Improve readme for deployment
  21. ## Source
  22. Originated from https://github.com/MikaXII/helm-charts
  23. Thanks!