diff --git a/charts/libation/Chart.yaml b/charts/libation/Chart.yaml deleted file mode 100644 index 59ae59d..0000000 --- a/charts/libation/Chart.yaml +++ /dev/null @@ -1,13 +0,0 @@ -apiVersion: v2 -name: libation -version: 0.0.7 -description: Import library from audible -keywords: - - audiobooks - - job -sources: - - https://github.com/rmcrackan/Libation -maintainers: - - name: alexlebens -icon: https://getlibation.com/images/libation-logo.png -appVersion: "11.3.13" diff --git a/charts/libation/README.md b/charts/libation/README.md deleted file mode 100644 index 15125ff..0000000 --- a/charts/libation/README.md +++ /dev/null @@ -1,18 +0,0 @@ -## Introduction - -[Libation](https://github.com/rmcrackan/Libation) - -Libation: Liberate your Library. Import library from audible, including cover art - - -This chart bootstraps a [Libation](https://github.com/benphelps/homepage) CronJob on a [Kubernetes](https://kubernetes.io) cluster using the [Helm](https://helm.sh) package manager. - -## Prerequisites - -- Kubernetes -- Helm -- CronJob - -## Parameters - -See the [values files](values.yaml). diff --git a/charts/libation/templates/job.yaml b/charts/libation/templates/job.yaml deleted file mode 100644 index 0a0467b..0000000 --- a/charts/libation/templates/job.yaml +++ /dev/null @@ -1,39 +0,0 @@ -apiVersion: batch/v1 -kind: CronJob -metadata: - name: libation - namespace: {{ .Release.Namespace }} - labels: - app.kubernetes.io/name: libation - app.kubernetes.io/instance: {{ .Release.Name }} - app.kubernetes.io/version: {{ .Chart.AppVersion }} - app.kubernetes.io/component: job - app.kubernetes.io/part-of: libation -spec: - schedule: {{ .Values.job.schedule }} - successfulJobsHistoryLimit: 3 - failedJobsHistoryLimit: 3 - jobTemplate: - spec: - template: - spec: - restartPolicy: Never - containers: - - name: libation - image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" - imagePullPolicy: {{ .Values.image.pullPolicy }} - env: - - name: SLEEP_TIME - value: "-1" - volumeMounts: - - name: libation-config - mountPath: /config - - name: libation-books - mountPath: /data - volumes: - - name: libation-config - persistentVolumeClaim: - claimName: libation-config - - name: libation-books - persistentVolumeClaim: - claimName: {{ .Values.persistence.books.claimName }} diff --git a/charts/libation/templates/persistent-volume-claim.yaml b/charts/libation/templates/persistent-volume-claim.yaml deleted file mode 100644 index 33e5411..0000000 --- a/charts/libation/templates/persistent-volume-claim.yaml +++ /dev/null @@ -1,19 +0,0 @@ -apiVersion: v1 -kind: PersistentVolumeClaim -metadata: - name: libation-config - namespace: {{ .Release.Namespace }} - labels: - app.kubernetes.io/name: libation - app.kubernetes.io/instance: {{ .Release.Name }} - app.kubernetes.io/version: {{ .Chart.AppVersion }} - app.kubernetes.io/component: storage - app.kubernetes.io/part-of: libation -spec: - accessModes: - - ReadWriteOnce - resources: - requests: - storage: {{ .Values.persistence.config.storageSize }} - storageClassName: {{ .Values.persistence.config.storageClassName }} - volumeMode: {{ .Values.persistence.config.volumeMode }} diff --git a/charts/libation/values.yaml b/charts/libation/values.yaml deleted file mode 100644 index 9fa46b7..0000000 --- a/charts/libation/values.yaml +++ /dev/null @@ -1,13 +0,0 @@ -job: - schedule: "0 * * * *" -image: - repository: rmcrackan/libation - tag: "11.3.13" - pullPolicy: IfNotPresent -persistence: - config: - storageClassName: default - storageSize: 1Gi - volumeMode: Filesystem - books: - claimName: