mirror of
https://github.com/TeamPiped/Piped-Kubernetes.git
synced 2024-08-14 23:57:15 +00:00
Fix values linting
This commit is contained in:
parent
09541b7f9c
commit
729fecd90d
1 changed files with 28 additions and 31 deletions
|
|
@ -5,9 +5,9 @@ global:
|
||||||
# -- Set the entire name definition
|
# -- Set the entire name definition
|
||||||
fullnameOverride:
|
fullnameOverride:
|
||||||
# -- Set additional global labels. Helm templates can be used.
|
# -- Set additional global labels. Helm templates can be used.
|
||||||
labels: { }
|
labels: {}
|
||||||
# -- Set additional global annotations. Helm templates can be used.
|
# -- Set additional global annotations. Helm templates can be used.
|
||||||
annotations: { }
|
annotations: {}
|
||||||
|
|
||||||
controller:
|
controller:
|
||||||
# -- enable the controller.
|
# -- enable the controller.
|
||||||
|
|
@ -40,7 +40,7 @@ frontend:
|
||||||
# -- image pull policy
|
# -- image pull policy
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
#env:
|
# env:
|
||||||
# BACKEND_HOSTNAME: pipedapi.example.org
|
# BACKEND_HOSTNAME: pipedapi.example.org
|
||||||
|
|
||||||
command: "/bin/ash"
|
command: "/bin/ash"
|
||||||
|
|
@ -48,7 +48,7 @@ frontend:
|
||||||
- -c
|
- -c
|
||||||
- "sed -i s/pipedapi.kavin.rocks/$BACKEND_HOSTNAME/g /usr/share/nginx/html/assets/* && /docker-entrypoint.sh && nginx -g 'daemon off;'"
|
- "sed -i s/pipedapi.kavin.rocks/$BACKEND_HOSTNAME/g /usr/share/nginx/html/assets/* && /docker-entrypoint.sh && nginx -g 'daemon off;'"
|
||||||
|
|
||||||
#resources:
|
# resources:
|
||||||
# requests:
|
# requests:
|
||||||
# memory: 32Mi
|
# memory: 32Mi
|
||||||
# limits:
|
# limits:
|
||||||
|
|
@ -68,30 +68,30 @@ backend:
|
||||||
port: 8080
|
port: 8080
|
||||||
protocol: HTTP
|
protocol: HTTP
|
||||||
|
|
||||||
# command: "/bin/sh"
|
# command: "/bin/sh"
|
||||||
# args:
|
# args:
|
||||||
# - -c
|
# - -c
|
||||||
# - sleep infinity
|
# - sleep infinity
|
||||||
|
|
||||||
# If the hostnames are not set for backend, proxy and API, they will be automatically fetched from their ingresses.
|
# If the hostnames are not set for backend, proxy and API, they will be automatically fetched from their ingresses.
|
||||||
config:
|
config:
|
||||||
PORT: 8080
|
PORT: 8080
|
||||||
HTTP_WORKERS: 2
|
HTTP_WORKERS: 2
|
||||||
#PROXY_PART: https://PROXY_HOSTNAME
|
# PROXY_PART: https://PROXY_HOSTNAME
|
||||||
# Outgoing HTTP Proxy - eg: 127.0.0.1:8118
|
# Outgoing HTTP Proxy - eg: 127.0.0.1:8118
|
||||||
#HTTP_PROXY: 127.0.0.1:8118
|
# HTTP_PROXY: 127.0.0.1:8118
|
||||||
# Captcha Parameters
|
# Captcha Parameters
|
||||||
#CAPTCHA_BASE_URL: https://api.capmonster.cloud/
|
# CAPTCHA_BASE_URL: https://api.capmonster.cloud/
|
||||||
#CAPTCHA_API_KEY: INSERT_HERE
|
# CAPTCHA_API_KEY: INSERT_HERE
|
||||||
#API_URL: https://BACKEND_HOSTNAME
|
# API_URL: https://BACKEND_HOSTNAME
|
||||||
#FRONTEND_URL: https://FRONTEND_HOSTNAME
|
# FRONTEND_URL: https://FRONTEND_HOSTNAME
|
||||||
# Enable haveibeenpwned compromised password API
|
# Enable haveibeenpwned compromised password API
|
||||||
#COMPROMISED_PASSWORD_CHECK: true
|
# COMPROMISED_PASSWORD_CHECK: true
|
||||||
# Disable Registration
|
# Disable Registration
|
||||||
#DISABLE_REGISTRATION: false
|
# DISABLE_REGISTRATION: false
|
||||||
# Feed Retention Time in Days
|
# Feed Retention Time in Days
|
||||||
#FEED_RETENTION: 30
|
# FEED_RETENTION: 30
|
||||||
#database:
|
# database:
|
||||||
# connection_url: jdbc:postgresql://postgres:5432/piped
|
# connection_url: jdbc:postgresql://postgres:5432/piped
|
||||||
# driver_class: org.postgresql.Driver
|
# driver_class: org.postgresql.Driver
|
||||||
# dialect: org.hibernate.dialect.PostgreSQLDialect
|
# dialect: org.hibernate.dialect.PostgreSQLDialect
|
||||||
|
|
@ -111,7 +111,7 @@ backend:
|
||||||
# -- image pull policy
|
# -- image pull policy
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
#resources:
|
# resources:
|
||||||
# requests:
|
# requests:
|
||||||
# memory: 500Mi
|
# memory: 500Mi
|
||||||
# limits:
|
# limits:
|
||||||
|
|
@ -143,7 +143,7 @@ ytproxy:
|
||||||
# -- image pull policy
|
# -- image pull policy
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
#resources:
|
# resources:
|
||||||
# requests:
|
# requests:
|
||||||
# memory: 32Mi
|
# memory: 32Mi
|
||||||
# limits:
|
# limits:
|
||||||
|
|
@ -157,7 +157,7 @@ ingress:
|
||||||
- host: piped.video
|
- host: piped.video
|
||||||
paths:
|
paths:
|
||||||
- path: "/"
|
- path: "/"
|
||||||
tls: []
|
tls: [ ]
|
||||||
|
|
||||||
backend:
|
backend:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
@ -244,6 +244,3 @@ probes:
|
||||||
|
|
||||||
termination:
|
termination:
|
||||||
gracePeriodSeconds:
|
gracePeriodSeconds:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue