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.

43 lines
1.4 KiB

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. ## Status : WIP
  5. - [x] Run Peertube and Redis
  6. - [x] Use pvc to persist data
  7. - [ ] Improve readme for deployment
  8. ## Before deploying
  9. Currently if you want use persistent volume you need to create persistent volume and persistent volume claim. You may use sample claims from `sample`:
  10. - change the storageclass from `ChangeMeStorageClass` to your correct class
  11. - apply the claim: `kubectl apply -f sample/claim.pvc-pt.yml`
  12. You also need a postgresql server.
  13. 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).
  14. ## Installing the chart
  15. `$ helm install --name my-release .`
  16. Specify each parameter using the --set key=value[,key=value] argument to helm install. For example,
  17. ```
  18. $ helm install --name my-release \
  19. --set environment.hostname=new.domain.tld,\
  20. postgresql.postgresPassword=secretpassword \
  21. .
  22. ```
  23. Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
  24. `$ helm install --name my-release -f values.yaml .`
  25. See the sample/values.yml for example of values to use
  26. ## Source
  27. Originated from https://github.com/MikaXII/helm-charts
  28. Thanks!