Compare commits
6 Commits
mautrix-wh
...
home-assis
Author | SHA1 | Date | |
---|---|---|---|
|
0dfaebdb7f | ||
|
2f721343aa | ||
270b62be53 | |||
0984e40cc8 | |||
4e26a7c727 | |||
17d146a444 |
@@ -1,6 +1,6 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: home-assistant
|
name: home-assistant
|
||||||
version: 0.1.5
|
version: 0.1.7
|
||||||
description: Chart for Home Assistant
|
description: Chart for Home Assistant
|
||||||
keywords:
|
keywords:
|
||||||
- home-automation
|
- home-automation
|
||||||
@@ -9,4 +9,4 @@ sources:
|
|||||||
maintainers:
|
maintainers:
|
||||||
- name: alexlebens
|
- name: alexlebens
|
||||||
icon: https://avatars.githubusercontent.com/u/13844975?s=200&v=4
|
icon: https://avatars.githubusercontent.com/u/13844975?s=200&v=4
|
||||||
appVersion: v2024.4.0
|
appVersion: v2024.4.2
|
||||||
|
@@ -3,7 +3,7 @@ deployment:
|
|||||||
strategy: Recreate
|
strategy: Recreate
|
||||||
image:
|
image:
|
||||||
repository: homeassistant/home-assistant
|
repository: homeassistant/home-assistant
|
||||||
tag: 2024.4.0
|
tag: 2024.4.2
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
TZ: UTC
|
TZ: UTC
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: mautrix-discord
|
name: mautrix-discord
|
||||||
version: 0.0.1
|
version: 0.0.2
|
||||||
description: Chart for Matrix Discord Bridge
|
description: Chart for Matrix Discord Bridge
|
||||||
keywords:
|
keywords:
|
||||||
- matrix
|
- matrix
|
||||||
|
@@ -30,7 +30,6 @@ spec:
|
|||||||
- name: mautrix-discord
|
- name: mautrix-discord
|
||||||
image: "{{ .Values.deployment.image.repository }}:{{ .Values.deployment.image.tag }}"
|
image: "{{ .Values.deployment.image.repository }}:{{ .Values.deployment.image.tag }}"
|
||||||
imagePullPolicy: {{ .Values.deployment.image.imagePullPolicy }}
|
imagePullPolicy: {{ .Values.deployment.image.imagePullPolicy }}
|
||||||
command: ["--no-update"]
|
|
||||||
ports:
|
ports:
|
||||||
- name: http
|
- name: http
|
||||||
containerPort: {{ .Values.service.port }}
|
containerPort: {{ .Values.service.port }}
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: mautrix-whatsapp
|
name: mautrix-whatsapp
|
||||||
version: 0.0.1
|
version: 0.0.2
|
||||||
description: Chart for Matrix Whatsapp Bridge
|
description: Chart for Matrix Whatsapp Bridge
|
||||||
keywords:
|
keywords:
|
||||||
- matrix
|
- matrix
|
||||||
|
@@ -30,7 +30,6 @@ spec:
|
|||||||
- name: mautrix-whatsapp
|
- name: mautrix-whatsapp
|
||||||
image: "{{ .Values.deployment.image.repository }}:{{ .Values.deployment.image.tag }}"
|
image: "{{ .Values.deployment.image.repository }}:{{ .Values.deployment.image.tag }}"
|
||||||
imagePullPolicy: {{ .Values.deployment.image.imagePullPolicy }}
|
imagePullPolicy: {{ .Values.deployment.image.imagePullPolicy }}
|
||||||
command: ["--no-update"]
|
|
||||||
ports:
|
ports:
|
||||||
- name: http
|
- name: http
|
||||||
containerPort: {{ .Values.service.port }}
|
containerPort: {{ .Values.service.port }}
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: tubearchivist-to-jellyfin
|
name: tubearchivist-to-jellyfin
|
||||||
version: 0.0.3
|
version: 0.0.4
|
||||||
description: Import library from tubearchivist to jellyfin
|
description: Import library from tubearchivist to jellyfin
|
||||||
keywords:
|
keywords:
|
||||||
- tubearchivist
|
- tubearchivist
|
||||||
|
@@ -24,10 +24,23 @@ spec:
|
|||||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||||
command: ["python"]
|
command: ["python"]
|
||||||
args: ["main.py"]
|
args: ["main.py"]
|
||||||
{{- with .Values.envFrom }}
|
env:
|
||||||
envFrom:
|
- name: TA_URL
|
||||||
{{- toYaml . | nindent 16 }}
|
value: "{{ .Values.config.tubearchivistUrl }}"
|
||||||
{{- end }}
|
- 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:
|
volumeMounts:
|
||||||
- name: tubearchivist-youtube
|
- name: tubearchivist-youtube
|
||||||
mountPath: /youtube
|
mountPath: /youtube
|
||||||
|
@@ -4,7 +4,16 @@ image:
|
|||||||
repository: bbilly1/tubearchivist-jf
|
repository: bbilly1/tubearchivist-jf
|
||||||
tag: v0.1.2
|
tag: v0.1.2
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
envFrom:
|
|
||||||
persistence:
|
persistence:
|
||||||
youtube:
|
youtube:
|
||||||
claimName:
|
claimName: ""
|
||||||
|
config:
|
||||||
|
tubearchivistUrl: ""
|
||||||
|
jellyfinUrl: ""
|
||||||
|
secrets:
|
||||||
|
tubearchivistToken:
|
||||||
|
existingSecretName: ""
|
||||||
|
existingSecretKey: token
|
||||||
|
jellyfinToken:
|
||||||
|
existingSecretName: ""
|
||||||
|
existingSecretKey: token
|
||||||
|
Reference in New Issue
Block a user