mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
helm chart [wip]
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
{{ if .Values.infrastructure.lavinmq.enabled }}
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: '{{ .Release.Name }}-lavinmq'
|
||||
labels:
|
||||
component: lavinmq
|
||||
project: '{{ .Chart.Name }}'
|
||||
release: '{{ .Release.Name }}'
|
||||
spec:
|
||||
selector:
|
||||
component: lavinmq
|
||||
release: '{{ .Release.Name }}'
|
||||
type: ClusterIP
|
||||
ports:
|
||||
- protocol: TCP
|
||||
port: 5672
|
||||
targetPort: 5672
|
||||
- protocol: TCP
|
||||
port: 15672
|
||||
targetPort: 15672
|
||||
- protocol: TCP
|
||||
port: 15692
|
||||
targetPort: 15692
|
||||
{{- end -}}
|
||||
@@ -0,0 +1,60 @@
|
||||
{{ if .Values.infrastructure.lavinmq.enabled }}
|
||||
apiVersion: apps/v1
|
||||
kind: StatefulSet
|
||||
metadata:
|
||||
name: '{{ .Release.Name }}-lavinmq'
|
||||
labels:
|
||||
component: lavinmq
|
||||
project: '{{ .Chart.Name }}'
|
||||
release: '{{ .Release.Name }}'
|
||||
annotations:
|
||||
"helm.sh/hook": post-install,post-upgrade
|
||||
"helm.sh/hook-weight": "0"
|
||||
spec:
|
||||
serviceName: '{{ .Release.Name }}-lavinmq'
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
component: lavinmq
|
||||
release: '{{ .Release.Name }}'
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
component: lavinmq
|
||||
release: '{{ .Release.Name }}'
|
||||
spec:
|
||||
containers:
|
||||
- name: lavinmq
|
||||
image: '{{ .Values.infrastructure.lavinmq.image }}:{{ .Values.infrastructure.lavinmq.tag }}'
|
||||
ports:
|
||||
- name: lavinmq
|
||||
containerPort: 5672
|
||||
- name: lavinmq-15672
|
||||
containerPort: 15672
|
||||
- name: lavinmq-15692
|
||||
containerPort: 15692
|
||||
envFrom:
|
||||
- configMapRef:
|
||||
name: '{{ .Release.Name }}-config'
|
||||
- secretRef:
|
||||
name: '{{ .Release.Name }}-secrets'
|
||||
volumeMounts:
|
||||
- mountPath: /var/lib/lavinmq
|
||||
name: lavinmq
|
||||
livenessProbe:
|
||||
exec:
|
||||
command:
|
||||
- lavinmqctl status
|
||||
periodSeconds: 10
|
||||
initialDelaySeconds: 10
|
||||
successThreshold: 1
|
||||
failureThreshold: 3
|
||||
volumeClaimTemplates:
|
||||
- metadata:
|
||||
name: lavinmq
|
||||
spec:
|
||||
accessModes: [ "ReadWriteOnce" ]
|
||||
resources:
|
||||
requests:
|
||||
storage: '{{ .Values.persistence.lavinmq.capacity }}'
|
||||
{{- end -}}
|
||||
@@ -0,0 +1,19 @@
|
||||
{{ if .Values.infrastructure.postgres.enabled }}
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: '{{ .Release.Name }}-postgres'
|
||||
labels:
|
||||
component: postgres
|
||||
project: '{{ .Chart.Name }}'
|
||||
release: '{{ .Release.Name }}'
|
||||
spec:
|
||||
selector:
|
||||
component: postgres
|
||||
release: '{{ .Release.Name }}'
|
||||
type: ClusterIP
|
||||
ports:
|
||||
- protocol: TCP
|
||||
port: 5432
|
||||
targetPort: 5432
|
||||
{{- end -}}
|
||||
@@ -0,0 +1,58 @@
|
||||
{{ if .Values.infrastructure.postgres.enabled }}
|
||||
apiVersion: apps/v1
|
||||
kind: StatefulSet
|
||||
metadata:
|
||||
name: '{{ .Release.Name }}-postgres'
|
||||
labels:
|
||||
component: postgres
|
||||
project: '{{ .Chart.Name }}'
|
||||
release: '{{ .Release.Name }}'
|
||||
annotations:
|
||||
"helm.sh/hook": post-install,post-upgrade
|
||||
"helm.sh/hook-weight": "0"
|
||||
spec:
|
||||
serviceName: '{{ .Release.Name }}-postgres'
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
component: postgres
|
||||
release: '{{ .Release.Name }}'
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
component: postgres
|
||||
release: '{{ .Release.Name }}'
|
||||
spec:
|
||||
containers:
|
||||
- name: postgres
|
||||
image: '{{ .Values.infrastructure.postgres.image }}:{{ .Values.infrastructure.postgres.tag }}'
|
||||
ports:
|
||||
- name: postgres
|
||||
containerPort: 5432
|
||||
envFrom:
|
||||
- configMapRef:
|
||||
name: '{{ .Release.Name }}-config'
|
||||
- secretRef:
|
||||
name: '{{ .Release.Name }}-secrets'
|
||||
volumeMounts:
|
||||
- mountPath: /var/lib/postgresql/data
|
||||
name: postgres
|
||||
livenessProbe:
|
||||
exec:
|
||||
command:
|
||||
- sh
|
||||
- -c
|
||||
- pg_isready -h localhost -U $POSTGRES_USER
|
||||
periodSeconds: 10
|
||||
initialDelaySeconds: 10
|
||||
successThreshold: 1
|
||||
failureThreshold: 3
|
||||
volumeClaimTemplates:
|
||||
- metadata:
|
||||
name: postgres
|
||||
spec:
|
||||
accessModes: [ "ReadWriteOnce" ]
|
||||
resources:
|
||||
requests:
|
||||
storage: '{{ .Values.persistence.postgres.capacity }}'
|
||||
{{- end -}}
|
||||
@@ -0,0 +1,57 @@
|
||||
{{ if .Values.knightcrawler.qbitcollector.enabled }}
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: '{{ .Release.Name }}-qbittorrent'
|
||||
labels:
|
||||
component: qbittorrent
|
||||
project: '{{ .Chart.Name }}'
|
||||
release: '{{ .Release.Name }}'
|
||||
annotations:
|
||||
"helm.sh/hook": post-install,post-upgrade
|
||||
"helm.sh/hook-weight": "0"
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
component: qbittorrent
|
||||
release: '{{ .Release.Name }}'
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
component: qbittorrent
|
||||
release: '{{ .Release.Name }}'
|
||||
spec:
|
||||
containers:
|
||||
- name: qbittorrent
|
||||
image: '{{ .Values.infrastructure.qbittorrent.image }}:{{ .Values.infrastructure.qbittorrent.tag }}'
|
||||
ports:
|
||||
- name: qbittorrent
|
||||
containerPort: 6881
|
||||
- name: qbittorrent-6881
|
||||
containerPort: 6881
|
||||
- name: qbittorrent-8080
|
||||
containerPort: 8080
|
||||
env:
|
||||
- name: PUID
|
||||
value: '{{ .Values.environment.qbittorrent.puid }}'
|
||||
- name: PGID
|
||||
value: '{{ .Values.environment.qbittorrent.pgid }}'
|
||||
- name: TORRENTING_PORT
|
||||
value: '{{ .Values.environment.qbittorrent.torrentingPort }}'
|
||||
- name: WEBUI_PORT
|
||||
value: '{{ .Values.environment.qbittorrent.webuiPort }}'
|
||||
envFrom:
|
||||
- configMapRef:
|
||||
name: '{{ .Release.Name }}-config'
|
||||
- secretRef:
|
||||
name: '{{ .Release.Name }}-secrets'
|
||||
livenessProbe:
|
||||
exec:
|
||||
command:
|
||||
- curl --fail http://localhost:8080
|
||||
periodSeconds: 10
|
||||
initialDelaySeconds: 10
|
||||
successThreshold: 1
|
||||
failureThreshold: 3
|
||||
{{- end -}}
|
||||
@@ -0,0 +1,25 @@
|
||||
{{ if .Values.knightcrawler.qbitcollector.enabled }}
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: '{{ .Release.Name }}-qbittorrent'
|
||||
labels:
|
||||
component: qbittorrent
|
||||
project: '{{ .Chart.Name }}'
|
||||
release: '{{ .Release.Name }}'
|
||||
spec:
|
||||
selector:
|
||||
component: qbittorrent
|
||||
release: '{{ .Release.Name }}'
|
||||
type: ClusterIP
|
||||
ports:
|
||||
- protocol: TCP
|
||||
port: 6881
|
||||
targetPort: 6881
|
||||
- protocol: TCP
|
||||
port: 6881
|
||||
targetPort: 6881
|
||||
- protocol: TCP
|
||||
port: 8080
|
||||
targetPort: 8080
|
||||
{{- end -}}
|
||||
@@ -0,0 +1,19 @@
|
||||
{{ if .Values.infrastructure.redis.enabled }}
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: '{{ .Release.Name }}-redis'
|
||||
labels:
|
||||
component: redis
|
||||
project: '{{ .Chart.Name }}'
|
||||
release: '{{ .Release.Name }}'
|
||||
spec:
|
||||
selector:
|
||||
component: redis
|
||||
release: '{{ .Release.Name }}'
|
||||
type: ClusterIP
|
||||
ports:
|
||||
- protocol: TCP
|
||||
port: 6379
|
||||
targetPort: 6379
|
||||
{{- end -}}
|
||||
@@ -0,0 +1,56 @@
|
||||
{{ if .Values.infrastructure.redis.enabled }}
|
||||
apiVersion: apps/v1
|
||||
kind: StatefulSet
|
||||
metadata:
|
||||
name: '{{ .Release.Name }}-redis'
|
||||
labels:
|
||||
component: redis
|
||||
project: '{{ .Chart.Name }}'
|
||||
release: '{{ .Release.Name }}'
|
||||
annotations:
|
||||
"helm.sh/hook": post-install,post-upgrade
|
||||
"helm.sh/hook-weight": "0"
|
||||
spec:
|
||||
serviceName: '{{ .Release.Name }}-redis'
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
component: redis
|
||||
release: '{{ .Release.Name }}'
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
component: redis
|
||||
release: '{{ .Release.Name }}'
|
||||
spec:
|
||||
containers:
|
||||
- name: redis
|
||||
image: '{{ .Values.infrastructure.redis.image }}:{{ .Values.infrastructure.redis.tag }}'
|
||||
ports:
|
||||
- name: redis
|
||||
containerPort: 6379
|
||||
envFrom:
|
||||
- configMapRef:
|
||||
name: '{{ .Release.Name }}-config'
|
||||
- secretRef:
|
||||
name: '{{ .Release.Name }}-secrets'
|
||||
volumeMounts:
|
||||
- mountPath: /data
|
||||
name: redis
|
||||
livenessProbe:
|
||||
exec:
|
||||
command:
|
||||
- redis-cli ping
|
||||
periodSeconds: 10
|
||||
initialDelaySeconds: 10
|
||||
successThreshold: 1
|
||||
failureThreshold: 3
|
||||
volumeClaimTemplates:
|
||||
- metadata:
|
||||
name: redis
|
||||
spec:
|
||||
accessModes: [ "ReadWriteOnce" ]
|
||||
resources:
|
||||
requests:
|
||||
storage: '{{ .Values.persistence.redis.capacity }}'
|
||||
{{- end -}}
|
||||
Reference in New Issue
Block a user