bump PeerTube to version 3.2.1

This commit is contained in:
ace 2021-06-28 23:45:48 +03:00
parent 2099915a60
commit 56e1706f1c
No known key found for this signature in database
GPG Key ID: 2E47CC17BA7F8CF0
2 changed files with 15 additions and 6 deletions

View File

@ -11,5 +11,5 @@ dependencies:
repository: https://charts.bitnami.com/bitnami repository: https://charts.bitnami.com/bitnami
version: 12.3.2 version: 12.3.2
type: application type: application
version: 0.1.2 version: 0.1.3
appVersion: 3.1.0 appVersion: 3.2.1

View File

@ -8,7 +8,7 @@ image:
repository: chocobozzz/peertube repository: chocobozzz/peertube
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion. # Overrides the image tag whose default is the chart appVersion.
tag: "v3.1.0-buster" tag: "v3.2.1-buster"
imagePullSecrets: [] imagePullSecrets: []
nameOverride: "" nameOverride: ""
@ -109,7 +109,7 @@ configAsCode:
# If not, peertube will fallback to the default fil # If not, peertube will fallback to the default fil
client_overrides: '/var/www/peertube/storage/client-overrides/' client_overrides: '/var/www/peertube/storage/client-overrides/'
log: log:
level: 'info' # debug/info/warning/error level: 'info' # 'debug' | 'info' | 'warn' | 'error'
rotation: rotation:
enabled : true # Enabled by default, if disabled make sure that 'storage.logs' is pointing to a folder handled by logrotate enabled : true # Enabled by default, if disabled make sure that 'storage.logs' is pointing to a folder handled by logrotate
maxFileSize: 12MB maxFileSize: 12MB
@ -161,6 +161,10 @@ configAsCode:
enabled: false enabled: false
report_only: true # CSP directives are still being tested, so disable the report only mode at your own risk! report_only: true # CSP directives are still being tested, so disable the report only mode at your own risk!
report_uri: report_uri:
security:
# Set the X-Frame-Options header to help to mitigate clickjacking attacks
frameguard:
enabled: true
tracker: tracker:
# If you disable the tracker, you disable the P2P aspect of PeerTube # If you disable the tracker, you disable the P2P aspect of PeerTube
enabled: true enabled: true
@ -200,7 +204,12 @@ configAsCode:
# This setting is opt-in because due to an old bug in PeerTube, remote rates sent by instance before PeerTube 3.0 will be deleted # This setting is opt-in because due to an old bug in PeerTube, remote rates sent by instance before PeerTube 3.0 will be deleted
# We still suggest you to enable this setting even if your users will loose most of their video's likes/dislikes # We still suggest you to enable this setting even if your users will loose most of their video's likes/dislikes
cleanup_remote_interactions: false cleanup_remote_interactions: false
peertube:
check_latest_version:
# Check and notify admins of new PeerTube versions
enabled: true
# You can use a custom URL if your want, that respect the format behind https://joinpeertube.org/api/v1/versions.json
url: 'https://joinpeertube.org/api/v1/versions.json'
############################################################################### ###############################################################################
# #
@ -278,7 +287,7 @@ configAsCode:
# If you also enabled the hls format, it will multiply videos storage by 2 # If you also enabled the hls format, it will multiply videos storage by 2
# If disabled, breaks federation with PeerTube instances < 2.1 # If disabled, breaks federation with PeerTube instances < 2.1
webtorrent: webtorrent:
enabled: true enabled: false
# /!\ Requires ffmpeg >= 4.1 # /!\ Requires ffmpeg >= 4.1
# Generate HLS playlists and fragmented MP4 files. Better playback than with WebTorrent: # Generate HLS playlists and fragmented MP4 files. Better playback than with WebTorrent:
# * Resolution change is smoother # * Resolution change is smoother