mirror of
https://github.com/TeamPiped/Piped-Kubernetes.git
synced 2024-08-14 23:57:15 +00:00
Compare commits
4 commits
717baffcfb
...
079f99b26a
Author | SHA1 | Date | |
---|---|---|---|
|
079f99b26a | ||
|
36e3f45d58 | ||
|
1ee4d9b717 | ||
|
2f6b2a20c6 |
4 changed files with 23 additions and 4 deletions
2
.github/workflows/charts-release.yaml
vendored
2
.github/workflows/charts-release.yaml
vendored
|
@ -34,7 +34,7 @@ jobs:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Collect charts to release
|
- name: Collect charts to release
|
||||||
uses: bjw-s/helm-charts-actions/collect-charts@c93c6d64ed2dc4dfe05840808f670dbe05ee7a35
|
uses: bjw-s/helm-charts-actions/collect-charts@7056eacad4bd4fe67d6a93d38f11f27125312aae
|
||||||
id: collect-charts
|
id: collect-charts
|
||||||
with:
|
with:
|
||||||
repoConfigFile: ./.ci/repo-config.yaml
|
repoConfigFile: ./.ci/repo-config.yaml
|
||||||
|
|
|
@ -10,7 +10,7 @@ sources:
|
||||||
- https://github.com/TeamPiped/piped-proxy
|
- https://github.com/TeamPiped/piped-proxy
|
||||||
keywords:
|
keywords:
|
||||||
- streaming
|
- streaming
|
||||||
version: 5.2.0
|
version: 5.3.0
|
||||||
appVersion: latest
|
appVersion: latest
|
||||||
kubeVersion: ">=1.22.0-0"
|
kubeVersion: ">=1.22.0-0"
|
||||||
maintainers:
|
maintainers:
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# piped
|
# piped
|
||||||
|
|
||||||
![Version: 5.2.0](https://img.shields.io/badge/Version-5.2.0-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
|
![Version: 5.3.0](https://img.shields.io/badge/Version-5.3.0-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
|
||||||
|
|
||||||
Piped is an alternative privacy-friendly YouTube frontend which is efficient by design.
|
Piped is an alternative privacy-friendly YouTube frontend which is efficient by design.
|
||||||
|
|
||||||
|
|
|
@ -32,6 +32,19 @@ data:
|
||||||
{{- else }}
|
{{- else }}
|
||||||
{{- fail "PROXY_PART needs to be set in config values or ytproxy ingress must be enabled."}}
|
{{- fail "PROXY_PART needs to be set in config values or ytproxy ingress must be enabled."}}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
{{- if (and .Values.backend.config.REQWEST_PROXY .Values.backend.config.REQWEST_PROXY_USER .Values.backend.config.REQWEST_PROXY_PASS) }}
|
||||||
|
REQWEST_PROXY: {{ .Values.backend.config.REQWEST_PROXY }}
|
||||||
|
REQWEST_PROXY_USER: {{ .Values.backend.config.REQWEST_PROXY_USER }}
|
||||||
|
REQWEST_PROXY_PASS: {{ .Values.backend.config.REQWEST_PROXY_PASS }}
|
||||||
|
{{- else if and (not .Values.backend.config.REQWEST_PROXY_USER) (not .Values.backend.config.REQWEST_PROXY_PASS) (.Values.backend.config.REQWEST_PROXY) }}
|
||||||
|
REQWEST_PROXY: {{ .Values.backend.config.REQWEST_PROXY }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if .Values.backend.config.CAPTCHA_BASE_URL }}
|
||||||
|
CAPTCHA_BASE_URL: {{ .Values.backend.config.CAPTCHA_BASE_URL }}
|
||||||
|
{{- else if (and .Values.backend.config.CAPTCHA_BASE_URL .Values.backend.config.CAPTCHA_API_KEY) }}
|
||||||
|
CAPTCHA_BASE_URL: {{ .Values.backend.config.CAPTCHA_BASE_URL }}
|
||||||
|
CAPTCHA_API_KEY: {{ .Values.backend.config.CAPTCHA_API_KEY }}
|
||||||
|
{{- end}}
|
||||||
{{- if .Values.backend.config.API_URL }}
|
{{- if .Values.backend.config.API_URL }}
|
||||||
API_URL: {{ .Values.backend.config.API_URL }}
|
API_URL: {{ .Values.backend.config.API_URL }}
|
||||||
{{- else if (and .Values.ingress.backend.enabled .Values.ingress.backend.tls) }}
|
{{- else if (and .Values.ingress.backend.enabled .Values.ingress.backend.tls) }}
|
||||||
|
@ -72,7 +85,6 @@ data:
|
||||||
{{- else if .Values.postgresql.enabled }}
|
{{- else if .Values.postgresql.enabled }}
|
||||||
hibernate.connection.url: jdbc:postgresql://piped-postgresql/{{ .Values.postgresql.auth.database}}
|
hibernate.connection.url: jdbc:postgresql://piped-postgresql/{{ .Values.postgresql.auth.database}}
|
||||||
hibernate.connection.driver_class: org.postgresql.Driver
|
hibernate.connection.driver_class: org.postgresql.Driver
|
||||||
hibernate.dialect: org.hibernate.dialect.PostgreSQLDialect
|
|
||||||
hibernate.connection.username: {{.Values.postgresql.auth.username }}
|
hibernate.connection.username: {{.Values.postgresql.auth.username }}
|
||||||
hibernate.connection.password: {{.Values.postgresql.auth.password }}
|
hibernate.connection.password: {{.Values.postgresql.auth.password }}
|
||||||
{{- else }}
|
{{- else }}
|
||||||
|
@ -83,3 +95,10 @@ data:
|
||||||
{{- else }}
|
{{- else }}
|
||||||
SENTRY_DSN:
|
SENTRY_DSN:
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if (and .Values.backend.config.MATRIX_SERVER .Values.backend.config.MATRIX_TOKEN) }}
|
||||||
|
MATRIX_SERVER: {{.Values.backend.config.MATRIX_SERVER }}
|
||||||
|
MATRIX_TOKEN: {{ .Values.backend.config.MATRIX_TOKEN }}
|
||||||
|
{{- else if (not .Values.backend.config.MATRIX_TOKEN) }}
|
||||||
|
MATRIX_SERVER: https://matrix-client.matrix.org
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue