Skip to content

Commit

Permalink
adding draft for inv_sig_helper
Browse files Browse the repository at this point in the history
  • Loading branch information
g3rhard committed Sep 25, 2024
1 parent 7255146 commit 1f1e9cd
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: invidious
description: Invidious is an alternative front-end to YouTube
version: 1.1.3
version: 1.1.4
appVersion: 0.20.1
keywords:
- youtube
Expand Down
20 changes: 20 additions & 0 deletions templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,24 @@ spec:
port: 3000
path: /
initialDelaySeconds: 15
- name: inv_sig_helper
image: quay.io/invidious/inv-sig-helper:latest # TODO
command: ["--tcp", "0.0.0.0:12999"]
env:
- name: RUST_LOG
value: info
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
runAsNonRoot: true
resources:
limits:
cpu: "100m"
memory: "128Mi"
requests:
cpu: "50m"
memory: "64Mi"
restartPolicy: Always
1 change: 1 addition & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,4 @@ config:
full_refresh: false
https_only: false
domain:
signature_server: inv_sig_helper:12999

0 comments on commit 1f1e9cd

Please sign in to comment.