diff --git a/rutorrent/.helmignore b/rutorrent/.helmignore new file mode 100644 index 00000000..46fd8996 --- /dev/null +++ b/rutorrent/.helmignore @@ -0,0 +1,23 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*~ +# Various IDEs +.project +.idea/ +*.tmproj +# OWNERS file for Kubernetes +OWNERS diff --git a/rutorrent/Chart.yaml b/rutorrent/Chart.yaml new file mode 100644 index 00000000..7a6565a1 --- /dev/null +++ b/rutorrent/Chart.yaml @@ -0,0 +1,14 @@ +apiVersion: v1 +appVersion: amd64-latest +description: ruTorrent +name: rutorrent +version: 1.0.0 +keywords: + - rutorrent +home: https://github.com/Novik/ruTorrent +sources: + - https://hub.docker.com/r/linuxserver/rutorrent/ + - https://github.com/billimek/billimek-charts/rutorrent +maintainers: + - name: billimek + email: jeff@billimek.com diff --git a/rutorrent/OWNERS b/rutorrent/OWNERS new file mode 100644 index 00000000..51f88652 --- /dev/null +++ b/rutorrent/OWNERS @@ -0,0 +1,4 @@ +approvers: +- billimek +reviewers: +- billimek \ No newline at end of file diff --git a/rutorrent/README.md b/rutorrent/README.md new file mode 100644 index 00000000..5c4d8deb --- /dev/null +++ b/rutorrent/README.md @@ -0,0 +1,3 @@ +# RUTorrent BitTorrent client + +TBD \ No newline at end of file diff --git a/rutorrent/templates/NOTES.txt b/rutorrent/templates/NOTES.txt new file mode 100644 index 00000000..e0cacedf --- /dev/null +++ b/rutorrent/templates/NOTES.txt @@ -0,0 +1,19 @@ +1. Get the application URL by running these commands: +{{- if .Values.ingress.enabled }} +{{- range .Values.ingress.hosts }} + http{{ if $.Values.ingress.tls }}s{{ end }}://{{ . }}{{ $.Values.ingress.path }} +{{- end }} +{{- else if contains "NodePort" .Values.guiService.type }} + export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "rutorrent.fullname" . }}) + export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") + echo http://$NODE_IP:$NODE_PORT +{{- else if contains "LoadBalancer" .Values.guiService.type }} + NOTE: It may take a few minutes for the LoadBalancer IP to be available. + You can watch the status of by running 'kubectl get svc -w {{ include "rutorrent.fullname" . }}' + export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "rutorrent.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}') + echo http://$SERVICE_IP:{{ .Values.guiService.port }} +{{- else if contains "ClusterIP" .Values.guiService.type }} + export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "rutorrent.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") + echo "Visit http://127.0.0.1:8080 to use your application" + kubectl port-forward $POD_NAME 8080:80 +{{- end }} diff --git a/rutorrent/templates/_helpers.tpl b/rutorrent/templates/_helpers.tpl new file mode 100644 index 00000000..275f1ab3 --- /dev/null +++ b/rutorrent/templates/_helpers.tpl @@ -0,0 +1,32 @@ +{{/* vim: set filetype=mustache: */}} +{{/* +Expand the name of the chart. +*/}} +{{- define "rutorrent.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} +{{- end -}} + +{{/* +Create a default fully qualified app name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +If release name contains chart name it will be used as a full name. +*/}} +{{- define "rutorrent.fullname" -}} +{{- if .Values.fullnameOverride -}} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}} +{{- else -}} +{{- $name := default .Chart.Name .Values.nameOverride -}} +{{- if contains $name .Release.Name -}} +{{- .Release.Name | trunc 63 | trimSuffix "-" -}} +{{- else -}} +{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} +{{- end -}} +{{- end -}} +{{- end -}} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "rutorrent.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}} +{{- end -}} diff --git a/rutorrent/templates/bt-svc.yaml b/rutorrent/templates/bt-svc.yaml new file mode 100644 index 00000000..e1e3483d --- /dev/null +++ b/rutorrent/templates/bt-svc.yaml @@ -0,0 +1,52 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ template "rutorrent.fullname" . }}-bt + labels: + app.kubernetes.io/name: {{ include "rutorrent.name" . }} + helm.sh/chart: {{ include "rutorrent.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- if .Values.btService.labels }} +{{ toYaml .Values.btService.labels | indent 4 }} +{{- end }} +{{- with .Values.btService.annotations }} + annotations: +{{ toYaml . | indent 4 }} +{{- end }} +spec: +{{- if (or (eq .Values.btService.type "ClusterIP") (empty .Values.btService.type)) }} + type: ClusterIP + {{- if .Values.btService.clusterIP }} + clusterIP: {{ .Values.btService.clusterIP }} + {{end}} +{{- else if eq .Values.btService.type "LoadBalancer" }} + type: {{ .Values.btService.type }} + {{- if .Values.btService.loadBalancerIP }} + loadBalancerIP: {{ .Values.btService.loadBalancerIP }} + {{- end }} + {{- if .Values.btService.loadBalancerSourceRanges }} + loadBalancerSourceRanges: +{{ toYaml .Values.btService.loadBalancerSourceRanges | indent 4 }} + {{- end -}} +{{- else }} + type: {{ .Values.btService.type }} +{{- end }} +{{- if .Values.btService.externalIPs }} + externalIPs: +{{ toYaml .Values.btService.externalIPs | indent 4 }} +{{- end }} + {{- if .Values.btService.externalTrafficPolicy }} + externalTrafficPolicy: {{ .Values.btService.externalTrafficPolicy }} + {{- end }} + ports: + - name: bt + port: {{ .Values.btService.port }} + protocol: TCP + targetPort: bt +{{ if (and (eq .Values.btService.type "NodePort") (not (empty .Values.btService.nodePort))) }} + nodePort: {{.Values.btService.nodePort}} +{{ end }} + selector: + app.kubernetes.io/name: {{ include "rutorrent.name" . }} + app.kubernetes.io/instance: {{ .Release.Name }} \ No newline at end of file diff --git a/rutorrent/templates/config-pvc.yaml b/rutorrent/templates/config-pvc.yaml new file mode 100644 index 00000000..949b8380 --- /dev/null +++ b/rutorrent/templates/config-pvc.yaml @@ -0,0 +1,25 @@ + +{{- if and .Values.persistence.config.enabled (not .Values.persistence.config.existingClaim) }} +kind: PersistentVolumeClaim +apiVersion: v1 +metadata: + name: {{ template "rutorrent.fullname" . }}-config + labels: + app.kubernetes.io/name: {{ include "rutorrent.name" . }} + helm.sh/chart: {{ include "rutorrent.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} +spec: + accessModes: + - {{ .Values.persistence.config.accessMode | quote }} + resources: + requests: + storage: {{ .Values.persistence.config.size | quote }} +{{- if .Values.persistence.config.storageClass }} +{{- if (eq "-" .Values.persistence.config.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.persistence.config.storageClass }}" +{{- end }} +{{- end }} +{{- end -}} \ No newline at end of file diff --git a/rutorrent/templates/daemon-svc.yaml b/rutorrent/templates/daemon-svc.yaml new file mode 100644 index 00000000..8b5736cd --- /dev/null +++ b/rutorrent/templates/daemon-svc.yaml @@ -0,0 +1,52 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ template "rutorrent.fullname" . }}-daemon + labels: + app.kubernetes.io/name: {{ include "rutorrent.name" . }} + helm.sh/chart: {{ include "rutorrent.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- if .Values.daemonService.labels }} +{{ toYaml .Values.daemonService.labels | indent 4 }} +{{- end }} +{{- with .Values.daemonService.annotations }} + annotations: +{{ toYaml . | indent 4 }} +{{- end }} +spec: +{{- if (or (eq .Values.daemonService.type "ClusterIP") (empty .Values.daemonService.type)) }} + type: ClusterIP + {{- if .Values.daemonService.clusterIP }} + clusterIP: {{ .Values.daemonService.clusterIP }} + {{end}} +{{- else if eq .Values.daemonService.type "LoadBalancer" }} + type: {{ .Values.daemonService.type }} + {{- if .Values.daemonService.loadBalancerIP }} + loadBalancerIP: {{ .Values.daemonService.loadBalancerIP }} + {{- end }} + {{- if .Values.daemonService.loadBalancerSourceRanges }} + loadBalancerSourceRanges: +{{ toYaml .Values.daemonService.loadBalancerSourceRanges | indent 4 }} + {{- end -}} +{{- else }} + type: {{ .Values.daemonService.type }} +{{- end }} +{{- if .Values.daemonService.externalIPs }} + externalIPs: +{{ toYaml .Values.daemonService.externalIPs | indent 4 }} +{{- end }} + {{- if .Values.daemonService.externalTrafficPolicy }} + externalTrafficPolicy: {{ .Values.daemonService.externalTrafficPolicy }} + {{- end }} + ports: + - name: daemon + port: {{ .Values.daemonService.port }} + protocol: TCP + targetPort: daemon +{{ if (and (eq .Values.daemonService.type "NodePort") (not (empty .Values.daemonService.nodePort))) }} + nodePort: {{.Values.daemonService.nodePort}} +{{ end }} + selector: + app.kubernetes.io/name: {{ include "rutorrent.name" . }} + app.kubernetes.io/instance: {{ .Release.Name }} \ No newline at end of file diff --git a/rutorrent/templates/deployment.yaml b/rutorrent/templates/deployment.yaml new file mode 100644 index 00000000..1bdb83a1 --- /dev/null +++ b/rutorrent/templates/deployment.yaml @@ -0,0 +1,91 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ template "rutorrent.fullname" . }} + labels: + app.kubernetes.io/name: {{ include "rutorrent.name" . }} + helm.sh/chart: {{ include "rutorrent.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} +spec: + replicas: {{ .Values.replicaCount }} + selector: + matchLabels: + app.kubernetes.io/name: {{ include "rutorrent.name" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + template: + metadata: + labels: + app.kubernetes.io/name: {{ include "rutorrent.name" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + spec: + containers: + - name: {{ .Chart.Name }} + image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + ports: + - name: http + containerPort: 80 + protocol: TCP + - name: daemon + containerPort: 5000 + protocol: TCP + - name: bt + containerPort: 51413 + protocol: TCP + livenessProbe: + httpGet: + port: http + scheme: HTTP + initialDelaySeconds: 30 + readinessProbe: + httpGet: + port: http + scheme: HTTP + initialDelaySeconds: 15 + env: + - name: TZ + value: "{{ .Values.timezone }}" + - name: UMASK_SET + value: "{{ .Values.umask }}" + - name: PUID + value: "{{ .Values.puid }}" + - name: PGID + value: "{{ .Values.pgid }}" + volumeMounts: + - mountPath: /config + name: config + - mountPath: /downloads + name: downloads + {{- if .Values.persistence.downloads.subPath }} + subPath: {{ .Values.persistence.downloads.subPath }} + {{ end }} + resources: +{{ toYaml .Values.resources | indent 12 }} + volumes: + - name: config + {{- if .Values.persistence.config.enabled }} + persistentVolumeClaim: + claimName: {{ if .Values.persistence.config.existingClaim }}{{ .Values.persistence.config.existingClaim }}{{- else }}{{ template "rutorrent.fullname" . }}-config{{- end }} + {{- else }} + emptyDir: {} + {{ end }} + - name: downloads + {{- if .Values.persistence.downloads.enabled }} + persistentVolumeClaim: + claimName: {{ if .Values.persistence.downloads.existingClaim }}{{ .Values.persistence.downloads.existingClaim }}{{- else }}{{ template "rutorrent.fullname" . }}-downloads{{- end }} + {{- else }} + emptyDir: {} + {{ end }} + {{- with .Values.nodeSelector }} + nodeSelector: +{{ toYaml . | indent 8 }} + {{- end }} + {{- with .Values.affinity }} + affinity: +{{ toYaml . | indent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: +{{ toYaml . | indent 8 }} + {{- end }} \ No newline at end of file diff --git a/rutorrent/templates/downloads-pvc.yaml b/rutorrent/templates/downloads-pvc.yaml new file mode 100644 index 00000000..d8d4144c --- /dev/null +++ b/rutorrent/templates/downloads-pvc.yaml @@ -0,0 +1,25 @@ + +{{- if and .Values.persistence.downloads.enabled (not .Values.persistence.downloads.existingClaim) }} +kind: PersistentVolumeClaim +apiVersion: v1 +metadata: + name: {{ template "rutorrent.fullname" . }}-downloads + labels: + app.kubernetes.io/name: {{ include "rutorrent.name" . }} + helm.sh/chart: {{ include "rutorrent.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} +spec: + accessModes: + - {{ .Values.persistence.downloads.accessMode | quote }} + resources: + requests: + storage: {{ .Values.persistence.downloads.size | quote }} +{{- if .Values.persistence.downloads.storageClass }} +{{- if (eq "-" .Values.persistence.downloads.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.persistence.downloads.storageClass }}" +{{- end }} +{{- end }} +{{- end -}} \ No newline at end of file diff --git a/rutorrent/templates/gui-svc.yaml b/rutorrent/templates/gui-svc.yaml new file mode 100644 index 00000000..171b6139 --- /dev/null +++ b/rutorrent/templates/gui-svc.yaml @@ -0,0 +1,52 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ template "rutorrent.fullname" . }}-gui + labels: + app.kubernetes.io/name: {{ include "rutorrent.name" . }} + helm.sh/chart: {{ include "rutorrent.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- if .Values.guiService.labels }} +{{ toYaml .Values.guiService.labels | indent 4 }} +{{- end }} +{{- with .Values.guiService.annotations }} + annotations: +{{ toYaml . | indent 4 }} +{{- end }} +spec: +{{- if (or (eq .Values.guiService.type "ClusterIP") (empty .Values.guiService.type)) }} + type: ClusterIP + {{- if .Values.guiService.clusterIP }} + clusterIP: {{ .Values.guiService.clusterIP }} + {{end}} +{{- else if eq .Values.guiService.type "LoadBalancer" }} + type: {{ .Values.guiService.type }} + {{- if .Values.guiService.loadBalancerIP }} + loadBalancerIP: {{ .Values.guiService.loadBalancerIP }} + {{- end }} + {{- if .Values.guiService.loadBalancerSourceRanges }} + loadBalancerSourceRanges: +{{ toYaml .Values.guiService.loadBalancerSourceRanges | indent 4 }} + {{- end -}} +{{- else }} + type: {{ .Values.guiService.type }} +{{- end }} +{{- if .Values.guiService.externalIPs }} + externalIPs: +{{ toYaml .Values.guiService.externalIPs | indent 4 }} +{{- end }} + {{- if .Values.guiService.externalTrafficPolicy }} + externalTrafficPolicy: {{ .Values.guiService.externalTrafficPolicy }} + {{- end }} + ports: + - name: http + port: {{ .Values.guiService.port }} + protocol: TCP + targetPort: http +{{ if (and (eq .Values.guiService.type "NodePort") (not (empty .Values.guiService.nodePort))) }} + nodePort: {{.Values.guiService.nodePort}} +{{ end }} + selector: + app.kubernetes.io/name: {{ include "rutorrent.name" . }} + app.kubernetes.io/instance: {{ .Release.Name }} \ No newline at end of file diff --git a/rutorrent/templates/ingress.yaml b/rutorrent/templates/ingress.yaml new file mode 100644 index 00000000..6095491b --- /dev/null +++ b/rutorrent/templates/ingress.yaml @@ -0,0 +1,38 @@ +{{- if .Values.ingress.enabled -}} +{{- $fullName := include "rutorrent.fullname" . -}} +{{- $ingressPath := .Values.ingress.path -}} +apiVersion: extensions/v1beta1 +kind: Ingress +metadata: + name: {{ $fullName }} + labels: + app.kubernetes.io/name: {{ include "rutorrent.name" . }} + helm.sh/chart: {{ include "rutorrent.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- with .Values.ingress.annotations }} + annotations: +{{ toYaml . | indent 4 }} +{{- end }} +spec: +{{- if .Values.ingress.tls }} + tls: + {{- range .Values.ingress.tls }} + - hosts: + {{- range .hosts }} + - {{ . }} + {{- end }} + secretName: {{ .secretName }} + {{- end }} +{{- end }} + rules: + {{- range .Values.ingress.hosts }} + - host: {{ . }} + http: + paths: + - path: {{ $ingressPath }} + backend: + serviceName: {{ $fullName }}-gui + servicePort: http + {{- end }} +{{- end }} \ No newline at end of file diff --git a/rutorrent/values.yaml b/rutorrent/values.yaml new file mode 100644 index 00000000..1ad52d24 --- /dev/null +++ b/rutorrent/values.yaml @@ -0,0 +1,148 @@ +# Default values for deluge. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +image: + repository: linuxserver/rutorrent + tag: amd64-latest + pullPolicy: IfNotPresent + +nameOverride: "" +fullnameOverride: "" + +timezone: UTC +umask: 022 +puid: 1001 +pgid: 1001 + +guiService: + type: ClusterIP + port: 80 + ## Specify the nodePort value for the LoadBalancer and NodePort service types. + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport + ## + # nodePort: + ## Provide any additional annotations which may be required. This can be used to + ## set the LoadBalancer service type to internal only. + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer + ## + annotations: {} + labels: {} + ## Use loadBalancerIP to request a specific static IP, + ## otherwise leave blank + ## + loadBalancerIP: + # loadBalancerSourceRanges: [] + ## Set the externalTrafficPolicy in the Service to either Cluster or Local + # externalTrafficPolicy: Cluster + +daemonService: + type: ClusterIP + port: 5000 + ## Specify the nodePort value for the LoadBalancer and NodePort service types. + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport + ## + # nodePort: + ## Provide any additional annotations which may be required. This can be used to + ## set the LoadBalancer service type to internal only. + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer + ## + annotations: {} + labels: {} + ## Use loadBalancerIP to request a specific static IP, + ## otherwise leave blank + ## + loadBalancerIP: + # loadBalancerSourceRanges: [] + ## Set the externalTrafficPolicy in the Service to either Cluster or Local + # externalTrafficPolicy: Cluster + +btService: + type: NodePort + port: 51413 + ## Specify the nodePort value for the LoadBalancer and NodePort service types. + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport + ## + # nodePort: + ## Provide any additional annotations which may be required. This can be used to + ## set the LoadBalancer service type to internal only. + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer + ## + annotations: {} + labels: {} + ## Use loadBalancerIP to request a specific static IP, + ## otherwise leave blank + ## + loadBalancerIP: + # loadBalancerSourceRanges: [] + ## Set the externalTrafficPolicy in the Service to either Cluster or Local + # externalTrafficPolicy: Cluster + + +ingress: + enabled: false + annotations: {} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + path: / + hosts: + - chart-example.local + tls: [] + # - secretName: chart-example-tls + # hosts: + # - chart-example.local + +persistence: + config: + enabled: true + ## deluge configuration data Persistent Volume Storage Class + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. (gp2 on AWS, standard on + ## GKE, AWS & OpenStack) + ## + # storageClass: "-" + ## + ## If you want to reuse an existing claim, you can pass the name of the PVC using + ## the existingClaim variable + # existingClaim: your-claim + accessMode: ReadWriteOnce + size: 1Gi + downloads: + enabled: true + ## deluge torrents downloads volume configuration + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. (gp2 on AWS, standard on + ## GKE, AWS & OpenStack) + ## + # storageClass: "-" + ## + ## If you want to reuse an existing claim, you can pass the name of the PVC using + ## the existingClaim variable + # existingClaim: your-claim + # subPath: some-subpath + accessMode: ReadWriteOnce + size: 10Gi + +resources: {} + # We usually recommend not to specify default resources and to leave this as a conscious + # choice for the user. This also increases chances charts run on environments with little + # resources, such as Minikube. If you do want to specify resources, uncomment the following + # lines, adjust them as necessary, and remove the curly braces after 'resources:'. + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + +nodeSelector: {} + +tolerations: [] + +affinity: {}