mirror of
https://gitlab.durp.info/durfy/homelab/gitops.git
synced 2026-05-09 16:51:31 -05:00
Update 8 files
- /invidious/values.yaml - /invidious/Chart.yaml - /invidious/templates/configmap.yaml - /invidious/templates/deployment.yaml - /invidious/templates/_helpers.tpl - /invidious/templates/hpa.yaml - /invidious/templates/service.yaml - /argocd/templates/invidious.yaml
This commit is contained in:
parent
7e0121d058
commit
61250f16d4
8 changed files with 231 additions and 0 deletions
63
invidious/values.yaml
Normal file
63
invidious/values.yaml
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
invidious:
|
||||
name: invidious
|
||||
|
||||
image:
|
||||
repository: registry.durp.info/invidious/invidious
|
||||
tag: latest
|
||||
pullPolicy: Always
|
||||
|
||||
replicaCount: 1
|
||||
|
||||
autoscaling:
|
||||
enabled: false
|
||||
minReplicas: 1
|
||||
maxReplicas: 16
|
||||
targetCPUUtilizationPercentage: 50
|
||||
|
||||
service:
|
||||
type: ClusterIP
|
||||
port: 3000
|
||||
#loadBalancerIP:
|
||||
|
||||
resources: {}
|
||||
#requests:
|
||||
# cpu: 100m
|
||||
# memory: 64Mi
|
||||
#limits:
|
||||
# cpu: 800m
|
||||
# memory: 512Mi
|
||||
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
runAsUser: 1000
|
||||
runAsGroup: 1000
|
||||
fsGroup: 1000
|
||||
|
||||
# See https://github.com/bitnami/charts/tree/master/bitnami/postgresql
|
||||
postgresql:
|
||||
image:
|
||||
tag: 13
|
||||
auth:
|
||||
username: kemal
|
||||
password: kemal
|
||||
database: invidious
|
||||
primary:
|
||||
initdb:
|
||||
username: kemal
|
||||
password: kemal
|
||||
scriptsConfigMap: invidious-postgresql-init
|
||||
|
||||
# Adapted from ../config/config.yml
|
||||
config:
|
||||
channel_threads: 1
|
||||
feed_threads: 1
|
||||
db:
|
||||
user: kemal
|
||||
password: kemal
|
||||
host: invidious-postgresql
|
||||
port: 5432
|
||||
dbname: invidious
|
||||
full_refresh: false
|
||||
https_only: false
|
||||
domain:
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue