Compare commits
2 Commits
outline-0.
...
unpackerr-
Author | SHA1 | Date | |
---|---|---|---|
4efdc15832 | |||
2dc9f33109 |
@@ -1,10 +1,17 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: tubearchivist
|
name: tubearchivist
|
||||||
version: 0.0.5
|
version: 0.0.6
|
||||||
|
description: Chart for Tube Archivist
|
||||||
|
keywords:
|
||||||
|
- download
|
||||||
|
- video
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/tubearchivist/tubearchivist
|
- https://github.com/tubearchivist/tubearchivist
|
||||||
- https://github.com/bitnami/charts/tree/main/bitnami/redis
|
- https://github.com/bitnami/charts/tree/main/bitnami/redis
|
||||||
- https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch
|
- https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch
|
||||||
|
maintainers:
|
||||||
|
- name: alexlebens
|
||||||
|
icon: https://avatars.githubusercontent.com/u/102734415?s=48&v=4
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: redis
|
- name: redis
|
||||||
version: 18.19.2
|
version: 18.19.2
|
||||||
|
13
charts/unpackerr/Chart.yaml
Normal file
13
charts/unpackerr/Chart.yaml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
apiVersion: v2
|
||||||
|
name: unpackerr
|
||||||
|
version: 0.0.1
|
||||||
|
description: Chart for Unpackerr
|
||||||
|
keywords:
|
||||||
|
- utility
|
||||||
|
- servarr
|
||||||
|
sources:
|
||||||
|
- https://github.com/Unpackerr/unpackerr
|
||||||
|
maintainers:
|
||||||
|
- name: alexlebens
|
||||||
|
icon: https://avatars.githubusercontent.com/u/104323643?s=48&v=4
|
||||||
|
appVersion: "0.13.1"
|
50
charts/unpackerr/templates/deployment.yaml
Normal file
50
charts/unpackerr/templates/deployment.yaml
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: {{ .Release.Name }}
|
||||||
|
namespace: {{ .Release.Namespace }}
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: {{ .Release.Name }}
|
||||||
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||||
|
app.kubernetes.io/version: {{ .Chart.AppVersion }}
|
||||||
|
app.kubernetes.io/component: web
|
||||||
|
app.kubernetes.io/part-of: {{ .Release.Name }}
|
||||||
|
spec:
|
||||||
|
revisionHistoryLimit: 3
|
||||||
|
replicas: {{ .Values.deployment.replicas }}
|
||||||
|
strategy:
|
||||||
|
type: {{ .Values.deployment.strategy }}
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app.kubernetes.io/name: {{ .Release.Name }}
|
||||||
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: {{ .Release.Name }}
|
||||||
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||||
|
spec:
|
||||||
|
serviceAccountName: {{ .Release.Name }}
|
||||||
|
automountServiceAccountToken: true
|
||||||
|
containers:
|
||||||
|
- name: {{ .Release.Name }}
|
||||||
|
image: "{{ .Values.deployment.image.repository }}:{{ .Values.deployment.image.tag }}"
|
||||||
|
imagePullPolicy: {{ .Values.deployment.image.imagePullPolicy }}
|
||||||
|
env:
|
||||||
|
{{- range $k,$v := .Values.deployment.env }}
|
||||||
|
- name: {{ $k }}
|
||||||
|
value: {{ $v | quote }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.deployment.envFrom }}
|
||||||
|
envFrom:
|
||||||
|
{{- toYaml . | nindent 12 }}
|
||||||
|
{{- end }}
|
||||||
|
resources:
|
||||||
|
{{- toYaml .Values.deployment.resources | nindent 12 }}
|
||||||
|
volumeMounts:
|
||||||
|
- name: "{{ .Release.Name }}-downloads"
|
||||||
|
mountPath: {{ .Values.persistence.downloads.mountPath }}
|
||||||
|
volumes:
|
||||||
|
- name: "{{ .Release.Name }}-downloads"
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: {{ .Values.persistence.downloads.claimName }}
|
11
charts/unpackerr/templates/service-account.yaml
Normal file
11
charts/unpackerr/templates/service-account.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: ServiceAccount
|
||||||
|
metadata:
|
||||||
|
name: {{ .Release.Name }}
|
||||||
|
namespace: {{ .Release.Namespace }}
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: {{ .Release.Name }}
|
||||||
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||||
|
app.kubernetes.io/version: {{ .Chart.AppVersion }}
|
||||||
|
app.kubernetes.io/component: web
|
||||||
|
app.kubernetes.io/part-of: {{ .Release.Name }}
|
22
charts/unpackerr/values.yaml
Normal file
22
charts/unpackerr/values.yaml
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
deployment:
|
||||||
|
replicas: 1
|
||||||
|
strategy: Recreate
|
||||||
|
image:
|
||||||
|
repository: golift/unpackerr
|
||||||
|
tag: "0.13.1"
|
||||||
|
imagePullPolicy: IfNotPresent
|
||||||
|
env:
|
||||||
|
TZ: UTC
|
||||||
|
UN_WEBSERVER_METRICS: false
|
||||||
|
envFrom:
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
memory: 256Mi
|
||||||
|
cpu: 50m
|
||||||
|
limits:
|
||||||
|
memory: 1Gi
|
||||||
|
cpu: 500m
|
||||||
|
persistence:
|
||||||
|
downloads:
|
||||||
|
mountPath:
|
||||||
|
existingClaim:
|
Reference in New Issue
Block a user