Compare commits
3 Commits
c7255cdaf1
...
858581c554
Author | SHA1 | Date | |
---|---|---|---|
858581c554 | |||
c9a99c1062 | |||
bad060f0dd |
@ -1,5 +1,5 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: 0.107.57
|
appVersion: 0.107.59
|
||||||
description: DNS proxy as ad-blocker for local network
|
description: DNS proxy as ad-blocker for local network
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/adguard-home
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/adguard-home
|
||||||
icon: https://avatars3.githubusercontent.com/u/8361145?s=200&v=4?sanitize=true
|
icon: https://avatars3.githubusercontent.com/u/8361145?s=200&v=4?sanitize=true
|
||||||
@ -12,4 +12,4 @@ maintainers:
|
|||||||
name: adguard-home
|
name: adguard-home
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/AdguardTeam/AdGuardHome
|
- https://github.com/AdguardTeam/AdGuardHome
|
||||||
version: 2.3.30
|
version: 2.3.31
|
||||||
|
@ -4,7 +4,7 @@ strategyType: Recreate
|
|||||||
image:
|
image:
|
||||||
repository: adguard/adguardhome
|
repository: adguard/adguardhome
|
||||||
# Image tag is set via charts appVersion. If you want to override the tag, specify it here
|
# Image tag is set via charts appVersion. If you want to override the tag, specify it here
|
||||||
tag: v0.107.57
|
tag: v0.107.59
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
nameOverride: ""
|
nameOverride: ""
|
||||||
|
@ -11,5 +11,5 @@ dependencies:
|
|||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
version: 20.6.0
|
version: 20.6.0
|
||||||
type: application
|
type: application
|
||||||
version: 0.4.1
|
version: 0.4.2
|
||||||
appVersion: 7.0.1
|
appVersion: 7.1.0
|
||||||
|
@ -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: "v7.0.1-bookworm"
|
tag: "v7.1.0-bookworm"
|
||||||
|
|
||||||
imagePullSecrets: []
|
imagePullSecrets: []
|
||||||
nameOverride: ""
|
nameOverride: ""
|
||||||
@ -155,6 +155,9 @@ configAsCode:
|
|||||||
# Can be enabled/disabled by URL option
|
# Can be enabled/disabled by URL option
|
||||||
embed:
|
embed:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
player:
|
||||||
|
# By default, playback starts automatically when opening a video
|
||||||
|
auto_play: true
|
||||||
# From the project root directory
|
# From the project root directory
|
||||||
storage:
|
storage:
|
||||||
tmp: '/var/www/peertube/storage/tmp/' # Use to download data (imports etc), store uploaded files before and during processing...
|
tmp: '/var/www/peertube/storage/tmp/' # Use to download data (imports etc), store uploaded files before and during processing...
|
||||||
@ -244,6 +247,11 @@ configAsCode:
|
|||||||
bucket_name: 'original-video-files'
|
bucket_name: 'original-video-files'
|
||||||
prefix: ''
|
prefix: ''
|
||||||
base_url: ''
|
base_url: ''
|
||||||
|
# Video captions
|
||||||
|
captions:
|
||||||
|
bucket_name: 'captions'
|
||||||
|
prefix: ''
|
||||||
|
base_url: ''
|
||||||
log:
|
log:
|
||||||
level: 'info' # 'debug' | 'info' | 'warn' | 'error'
|
level: 'info' # 'debug' | 'info' | 'warn' | 'error'
|
||||||
rotation:
|
rotation:
|
||||||
@ -313,9 +321,12 @@ configAsCode:
|
|||||||
# Other instances that duplicate your content
|
# Other instances that duplicate your content
|
||||||
remote_redundancy:
|
remote_redundancy:
|
||||||
videos:
|
videos:
|
||||||
# 'nobody': Do not accept remote redundancies
|
# PeerTube doesn't remove existing redundancies when you change this setting
|
||||||
# 'anybody': Accept remote redundancies from anybody
|
# You can remove them in the web interface: https://docs.joinpeertube.org/admin/following-instances#instances-redundancy
|
||||||
# 'followings': Accept redundancies from instance followings
|
# Available values:
|
||||||
|
# * nobody: Do not accept remote redundancies
|
||||||
|
# * followings: Accept redundancies from instance followings
|
||||||
|
# * anybody: Accept remote redundancies from anybody
|
||||||
accept_from: 'followings'
|
accept_from: 'followings'
|
||||||
csp:
|
csp:
|
||||||
enabled: false
|
enabled: false
|
||||||
@ -818,6 +829,20 @@ configAsCode:
|
|||||||
# By default, `do_not_list` or `blur` or `display` NSFW videos
|
# By default, `do_not_list` or `blur` or `display` NSFW videos
|
||||||
# Could be overridden per user with a setting
|
# Could be overridden per user with a setting
|
||||||
default_nsfw_policy: 'display'
|
default_nsfw_policy: 'display'
|
||||||
|
# PeerTube uses this setting to explain to your users which law they must follow in the "About" instance pages
|
||||||
|
server_country: '' # Example: "France", "United States", "España"
|
||||||
|
support:
|
||||||
|
# Explain to your users how to support your instance
|
||||||
|
# If set, PeerTube will display a "Support" button in "About" instance pages
|
||||||
|
text: '' # Supports Markdown
|
||||||
|
# If set, PeerTube will display buttons in "About" instance pages
|
||||||
|
social:
|
||||||
|
# Link to your main website
|
||||||
|
external_link: ''
|
||||||
|
# Mastodon
|
||||||
|
mastodon_link: ''
|
||||||
|
# Bluesky
|
||||||
|
bluesky_link: ''
|
||||||
customizations:
|
customizations:
|
||||||
javascript: '' # Directly your JavaScript code (without <script> tags). Will be eval at runtime
|
javascript: '' # Directly your JavaScript code (without <script> tags). Will be eval at runtime
|
||||||
css: '' # Directly your CSS code (without <style> tags). Will be injected at runtime
|
css: '' # Directly your CSS code (without <style> tags). Will be injected at runtime
|
||||||
@ -878,11 +903,12 @@ configAsCode:
|
|||||||
# instead of loading the video locally
|
# instead of loading the video locally
|
||||||
search_index:
|
search_index:
|
||||||
enabled: false
|
enabled: false
|
||||||
# URL of the search index, that should use the same search API and routes
|
# URL of the search index, which should use the same search API and routes
|
||||||
# than PeerTube: https://docs.joinpeertube.org/api-rest-reference.html
|
# as PeerTube: https://docs.joinpeertube.org/api-rest-reference.html
|
||||||
# You should deploy your own with https://framagit.org/framasoft/peertube/search-index,
|
# You can deploy your own with https://framagit.org/framasoft/peertube/search-index,
|
||||||
# and can use https://search.joinpeertube.org/ for tests, but keep in mind the latter is an unmoderated search index
|
# or you can use the official one: https://sepiasearch.org.
|
||||||
url: ''
|
# But keep in mind it is an unmoderated search index
|
||||||
|
url: 'https://sepiasearch.org'
|
||||||
# You can disable local search in the client, so users only use the search index
|
# You can disable local search in the client, so users only use the search index
|
||||||
disable_local_search: false
|
disable_local_search: false
|
||||||
# If you did not disable local search in the client, you can decide to use the search index by default
|
# If you did not disable local search in the client, you can decide to use the search index by default
|
||||||
@ -897,12 +923,32 @@ configAsCode:
|
|||||||
# Max size of upload chunks, e.g. '90MB'
|
# Max size of upload chunks, e.g. '90MB'
|
||||||
# If null, it will be calculated based on network speed
|
# If null, it will be calculated based on network speed
|
||||||
max_chunk_size: null
|
max_chunk_size: null
|
||||||
|
|
||||||
menu:
|
menu:
|
||||||
login:
|
login:
|
||||||
# If you enable only one external auth plugin
|
# If you enable only one external auth plugin
|
||||||
# You can automatically redirect your users on this external platform when they click on the login button
|
# You can automatically redirect your users on this external platform when they click on the login button
|
||||||
redirect_on_single_external_auth: false
|
redirect_on_single_external_auth: false
|
||||||
|
open_in_app:
|
||||||
|
android:
|
||||||
|
# Use an intent URL: https://developer.chrome.com/docs/android/intents
|
||||||
|
intent:
|
||||||
|
enabled: true
|
||||||
|
# Host registered by the mobile app
|
||||||
|
host: 'joinpeertube.org'
|
||||||
|
# Scheme registered by the mobile app
|
||||||
|
scheme: 'peertube'
|
||||||
|
# If not having the app on the mobile device, open this page
|
||||||
|
# F-Droid alternative: https://f-droid.org/packages/org.framasoft.peertube/
|
||||||
|
fallback_url: 'https://play.google.com/store/apps/details?id=org.framasoft.peertube'
|
||||||
|
ios:
|
||||||
|
# We use a timeout for iOS: if the app is not opened after a few seconds, open the fallback URL
|
||||||
|
enabled: true
|
||||||
|
# Host registered by the mobile app
|
||||||
|
host: 'joinpeertube.org'
|
||||||
|
# Scheme registered by the mobile app
|
||||||
|
scheme: 'peertube'
|
||||||
|
# If not having the app on the mobile device, open this page
|
||||||
|
fallback_url: 'https://apps.apple.com/fr/app/peertube/id6737834858'
|
||||||
storyboards:
|
storyboards:
|
||||||
# Generate storyboards of local videos using ffmpeg so users can see the video preview in the player while scrubbing the video
|
# Generate storyboards of local videos using ffmpeg so users can see the video preview in the player while scrubbing the video
|
||||||
enabled: true
|
enabled: true
|
||||||
|
@ -2,10 +2,10 @@ apiVersion: v2
|
|||||||
name: wikijs
|
name: wikijs
|
||||||
# This is the chart version. This version number should be incremented each time you make changes
|
# This is the chart version. This version number should be incremented each time you make changes
|
||||||
# to the chart and its templates, including the app version.
|
# to the chart and its templates, including the app version.
|
||||||
version: 2.3.18
|
version: 2.3.19
|
||||||
# This is the version number of the application being deployed. This version number should be
|
# This is the version number of the application being deployed. This version number should be
|
||||||
# incremented each time you make changes to the application.
|
# incremented each time you make changes to the application.
|
||||||
appVersion: 2.5.306
|
appVersion: 2.5.307
|
||||||
description: The most powerful and extensible open source Wiki software.
|
description: The most powerful and extensible open source Wiki software.
|
||||||
keywords:
|
keywords:
|
||||||
- wiki
|
- wiki
|
||||||
|
@ -6,7 +6,7 @@ replicaCount: 1
|
|||||||
|
|
||||||
image:
|
image:
|
||||||
repository: requarks/wiki
|
repository: requarks/wiki
|
||||||
tag: 2.5.306
|
tag: 2.5.307
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
imagePullSecrets: []
|
imagePullSecrets: []
|
||||||
|
Loading…
x
Reference in New Issue
Block a user