Compare commits

...

4 Commits

Author SHA1 Message Date
270b62be53 add tubearchivist to jellyfin 2024-04-04 23:22:14 -06:00
0984e40cc8 remove workflow path 2024-04-04 14:53:35 -06:00
4e26a7c727 remove commands from bridges 2024-04-04 14:47:35 -06:00
17d146a444 add archive folder 2024-04-04 13:47:48 -06:00
7 changed files with 31 additions and 11 deletions

View File

@@ -1,6 +1,6 @@
apiVersion: v2
name: mautrix-discord
version: 0.0.1
version: 0.0.2
description: Chart for Matrix Discord Bridge
keywords:
- matrix

View File

@@ -30,7 +30,6 @@ spec:
- name: mautrix-discord
image: "{{ .Values.deployment.image.repository }}:{{ .Values.deployment.image.tag }}"
imagePullPolicy: {{ .Values.deployment.image.imagePullPolicy }}
command: ["--no-update"]
ports:
- name: http
containerPort: {{ .Values.service.port }}

View File

@@ -1,6 +1,6 @@
apiVersion: v2
name: mautrix-whatsapp
version: 0.0.1
version: 0.0.2
description: Chart for Matrix Whatsapp Bridge
keywords:
- matrix

View File

@@ -30,7 +30,6 @@ spec:
- name: mautrix-whatsapp
image: "{{ .Values.deployment.image.repository }}:{{ .Values.deployment.image.tag }}"
imagePullPolicy: {{ .Values.deployment.image.imagePullPolicy }}
command: ["--no-update"]
ports:
- name: http
containerPort: {{ .Values.service.port }}

View File

@@ -1,6 +1,6 @@
apiVersion: v2
name: tubearchivist-to-jellyfin
version: 0.0.3
version: 0.0.4
description: Import library from tubearchivist to jellyfin
keywords:
- tubearchivist

View File

@@ -24,10 +24,23 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }}
command: ["python"]
args: ["main.py"]
{{- with .Values.envFrom }}
envFrom:
{{- toYaml . | nindent 16 }}
{{- end }}
env:
- name: TA_URL
value: "{{ .Values.config.tubearchivistUrl }}"
- name: TA_TOKEN
valueFrom:
secretKeyRef:
name: "{{ .Values.secrets.tubearchivistToken.existingSecretName }}"
key: "{{ .Values.secrets.tubearchivistToken.existingSecretKey }}"
- name: JF_URL
value: "{{ .Values.config.jellyfinUrl }}"
- name: JF_TOKEN
valueFrom:
secretKeyRef:
name: "{{ .Values.secrets.jellyfinToken.existingSecretName }}"
key: "{{ .Values.secrets.jellyfinToken.existingSecretKey }}"
- name: LISTEN_PORT
value: "8001"
volumeMounts:
- name: tubearchivist-youtube
mountPath: /youtube

View File

@@ -4,7 +4,16 @@ image:
repository: bbilly1/tubearchivist-jf
tag: v0.1.2
pullPolicy: IfNotPresent
envFrom:
persistence:
youtube:
claimName:
claimName: ""
config:
tubearchivistUrl: ""
jellyfinUrl: ""
secrets:
tubearchivistToken:
existingSecretName: ""
existingSecretKey: token
jellyfinToken:
existingSecretName: ""
existingSecretKey: token