-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: David Young <[email protected]>
- Loading branch information
1 parent
c475918
commit d15976f
Showing
8 changed files
with
167 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
charts/other/myprecious/templates/configmaps/configmap-davio-env.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{{ if .Values.davio.enabled }} | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: davio-env | ||
data: | ||
TRUST_PROXY: "true" | ||
DATA_FOLDER: /config | ||
WELCOME_MESSAGE: | | ||
![](https://elfhosted.com/images/logo.png) | ||
This is a subscription instance of [Davio](https://github.com/arvida42/davio) for {{ .Release.Name }} - Enjoy! | ||
Possible interesting use-cases for Davio: | ||
* 📺 Stream your WebDAV-compatible Debrid content via Stremio | ||
* 🧠 Stream your ElfHosted-managed media from [ElfStorage](https://store.elfhosted.com/product/elfstorage) via Stremio | ||
* 🤯 [Mount any rclone-compatible storage](https://store.elfhosted.com/product-category/storage) (*Dropbox, Google Drive, SSH, SMB, etc*), expose it via [WebDAV](https://store.elfhosted.com/product/webdav-access-plus), and stream it with Stremio! | ||
ADDON_ID: {{ .Release.Name }}-davio.elfhosted.com | ||
ADDON_NAME: {{ .Release.Name }} ElfHosted Davio | | ||
ADDON_ICON: https://elfhosted.com/images/davio.png | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
charts/other/myprecious/templates/ingressroutes/ingressroute-davio.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{{ if .Values.davio.enabled }} | ||
apiVersion: traefik.io/v1alpha1 | ||
kind: IngressRoute | ||
metadata: | ||
name: {{ .Release.Name }}-davio.elfhosted.com | ||
spec: | ||
routes: | ||
- match: Host(`{{ .Release.Name }}-davio.elfhosted.com`) | ||
kind: Rule | ||
services: | ||
- name: davio | ||
kind: Service | ||
port: 4000 | ||
middlewares: | ||
- name: chain-hosted-stremio-addon | ||
namespace: traefik | ||
- match: Host(`{{ .Release.Name }}-davio.elfhosted.com`) && PathPrefix(`/configure/`) | ||
kind: Rule | ||
services: | ||
- name: davio | ||
kind: Service | ||
port: 4000 | ||
middlewares: | ||
- name: {{ .Release.Name }}-traefik-forward-auth | ||
- name: chain-hosted-stremio-addon | ||
namespace: traefik | ||
{{ end }} |
20 changes: 20 additions & 0 deletions
20
charts/other/myprecious/templates/services/service-davio.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{{ if .Values.davio.enabled }} | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: davio | ||
labels: | ||
app.kubernetes.io/name: davio | ||
app.kubernetes.io/instance: {{ .Release.Name }} | ||
annotations: | ||
spec: | ||
type: ClusterIP | ||
ports: | ||
- port: 4000 | ||
targetPort: 4000 | ||
protocol: TCP | ||
name: http | ||
selector: | ||
app.kubernetes.io/name: davio | ||
app.kubernetes.io/instance: {{ .Release.Name }} | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters