From abd1f2d9f901290aafe367d11559deef3d1d09f0 Mon Sep 17 00:00:00 2001 From: Jeff Billimek Date: Mon, 5 Nov 2018 00:17:39 -0500 Subject: [PATCH] sonarr Signed-off-by: Jeff Billimek --- sonarr/.helmignore | 21 +++++ sonarr/Chart.yaml | 17 ++++ sonarr/README.md | 89 +++++++++++++++++++ sonarr/templates/NOTES.txt | 19 +++++ sonarr/templates/_helpers.tpl | 32 +++++++ sonarr/templates/config-pvc.yaml | 25 ++++++ sonarr/templates/deployment.yaml | 103 ++++++++++++++++++++++ sonarr/templates/downloads-pvc.yaml | 25 ++++++ sonarr/templates/ingress.yaml | 38 +++++++++ sonarr/templates/service.yaml | 52 +++++++++++ sonarr/templates/tv-pvc.yaml | 25 ++++++ sonarr/values.yaml | 128 ++++++++++++++++++++++++++++ 12 files changed, 574 insertions(+) create mode 100644 sonarr/.helmignore create mode 100644 sonarr/Chart.yaml create mode 100644 sonarr/README.md create mode 100644 sonarr/templates/NOTES.txt create mode 100644 sonarr/templates/_helpers.tpl create mode 100644 sonarr/templates/config-pvc.yaml create mode 100644 sonarr/templates/deployment.yaml create mode 100644 sonarr/templates/downloads-pvc.yaml create mode 100644 sonarr/templates/ingress.yaml create mode 100644 sonarr/templates/service.yaml create mode 100644 sonarr/templates/tv-pvc.yaml create mode 100644 sonarr/values.yaml diff --git a/sonarr/.helmignore b/sonarr/.helmignore new file mode 100644 index 00000000..f0c13194 --- /dev/null +++ b/sonarr/.helmignore @@ -0,0 +1,21 @@ +# 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 diff --git a/sonarr/Chart.yaml b/sonarr/Chart.yaml new file mode 100644 index 00000000..fbadc475 --- /dev/null +++ b/sonarr/Chart.yaml @@ -0,0 +1,17 @@ +apiVersion: v1 +appVersion: 162 +description: Sonarr is a television show downloading client +name: sonarr +version: 0.1.0 +keywords: + - sonarr + - usenet + - bittorrent +home: https://sonarr.tv/ +icon: https://avatars1.githubusercontent.com/u/1082903?s=400&v=4 +sources: + - https://hub.docker.com/r/linuxserver/sonarr/ + - https://github.com/billimek/billimek-charts/sonarr +maintainers: + - name: billimek + email: jeff@billimek.com diff --git a/sonarr/README.md b/sonarr/README.md new file mode 100644 index 00000000..d177587b --- /dev/null +++ b/sonarr/README.md @@ -0,0 +1,89 @@ +# sonarr televsion show download client + +This is a helm chart for [sonarr](https://github.com/sonarr/sonarr/) leveraging the [Linuxserver.io image](https://hub.docker.com/r/linuxserver/sonarr/) + +## TL;DR; + +```shell +$ helm repo add billimek https://billimek.github.io/helm-repo +$ helm install billimek/sonarr +``` + +## Installing the Chart + +To install the chart with the release name `my-release`: + +```console +helm install --name my-release billimek/sonarr +``` + +## Uninstalling the Chart + +To uninstall/delete the `my-release` deployment: + +```console +helm delete my-release --purge +``` + +The command removes all the Kubernetes components associated with the chart and deletes the release. + +## Configuration + +The following tables lists the configurable parameters of the Sentry chart and their default values. + +| Parameter | Description | Default | +|----------------------------|-------------------------------------|---------------------------------------------------------| +| `image.repository` | Image repository | `linuxserver/sonarr` | +| `image.tag` | Image tag. Possible values listed [here](https://hub.docker.com/r/linuxserver/sonarr/tags/).| `162`| +| `image.pullPolicy` | Image pull policy | `IfNotPresent` | +| `timezone` | Timezone the sonarr instance should run as, e.g. 'America/New_York' | `UTC` | +| `puid` | process userID the sonarr instance should run as | `1001` | +| `pgid` | process groupID the sonarr instance should run as | `1001` | +| `Service.type` | Kubernetes service type for the sonarr GUI | `ClusterIP` | +| `Service.port` | Kubernetes port where the sonarr GUI is exposed| `8989` | +| `Service.annotations` | Service annotations for the sonarr GUI | `{}` | +| `Service.labels` | Custom labels | `{}` | +| `Service.loadBalancerIP` | Loadbalance IP for the sonarr GUI | `{}` | +| `Service.loadBalancerSourceRanges` | List of IP CIDRs allowed access to load balancer (if supported) | None +| `ingress.enabled` | Enables Ingress | `false` | +| `ingress.annotations` | Ingress annotations | `{}` | +| `ingress.labels` | Custom labels | `{}` +| `ingress.path` | Ingress path | `/` | +| `ingress.hosts` | Ingress accepted hostnames | `chart-example.local` | +| `ingress.tls` | Ingress TLS configuration | `[]` | +| `persistence.config.enabled` | Use persistent volume to store configuration data | `true` | +| `persistence.config.size` | Size of persistent volume claim | `1Gi` | +| `persistence.config.existingClaim`| Use an existing PVC to persist data | `nil` | +| `persistence.config.storageClass` | Type of persistent volume claim | `-` | +| `persistence.config.accessMode` | Persistence access mode | `ReadWriteOnce` | +| `persistence.downloads.enabled` | Use persistent volume for downloads | `true` | +| `persistence.downloads.size` | Size of persistent volume claim | `10Gi` | +| `persistence.downloads.existingClaim`| Use an existing PVC to persist data | `nil` | +| `persistence.downloads.storageClass` | Type of persistent volume claim | `-` | +| `persistence.downloads.accessMode` | Persistence access mode | `ReadWriteOnce` | +| `persistence.tv.enabled` | Use persistent volume for tv show persistence | `true` | +| `persistence.tv.size` | Size of persistent volume claim | `10Gi` | +| `persistence.tv.existingClaim`| Use an existing PVC to persist data | `nil` | +| `persistence.tv.storageClass` | Type of persistent volume claim | `-` | +| `persistence.tv.accessMode` | Persistence access mode | `ReadWriteOnce` | +| `persistence.extraExistingClaimMounts` | Optionally add multiple existing claims | `[]` | +| `resources` | CPU/Memory resource requests/limits | `{}` | +| `nodeSelector` | Node labels for pod assignment | `{}` | +| `tolerations` | Toleration labels for pod assignment | `[]` | +| `affinity` | Affinity settings for pod assignment | `{}` | + +Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, + +```console +helm install --name my-release \ + --set timezone="America/New York" \ + billimek/sonarr +``` + +Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example, + +```console +helm install --name my-release -f values.yaml stable/sonarr +``` + +Read through the [values.yaml](values.yaml) file. It has several commented out suggested values. \ No newline at end of file diff --git a/sonarr/templates/NOTES.txt b/sonarr/templates/NOTES.txt new file mode 100644 index 00000000..cc2f778b --- /dev/null +++ b/sonarr/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.service.type }} + export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "sonarr.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.service.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 "sonarr.fullname" . }}' + export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "sonarr.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}') + echo http://$SERVICE_IP:{{ .Values.service.port }} +{{- else if contains "ClusterIP" .Values.service.type }} + export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "sonarr.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/sonarr/templates/_helpers.tpl b/sonarr/templates/_helpers.tpl new file mode 100644 index 00000000..8b611ec5 --- /dev/null +++ b/sonarr/templates/_helpers.tpl @@ -0,0 +1,32 @@ +{{/* vim: set filetype=mustache: */}} +{{/* +Expand the name of the chart. +*/}} +{{- define "sonarr.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 "sonarr.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 "sonarr.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}} +{{- end -}} diff --git a/sonarr/templates/config-pvc.yaml b/sonarr/templates/config-pvc.yaml new file mode 100644 index 00000000..5dcf5775 --- /dev/null +++ b/sonarr/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 "sonarr.fullname" . }}-config + labels: + app.kubernetes.io/name: {{ include "sonarr.name" . }} + helm.sh/chart: {{ include "sonarr.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/sonarr/templates/deployment.yaml b/sonarr/templates/deployment.yaml new file mode 100644 index 00000000..b38632a8 --- /dev/null +++ b/sonarr/templates/deployment.yaml @@ -0,0 +1,103 @@ +apiVersion: apps/v1beta2 +kind: Deployment +metadata: + name: {{ include "sonarr.fullname" . }} + labels: + app.kubernetes.io/name: {{ include "sonarr.name" . }} + helm.sh/chart: {{ include "sonarr.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 "sonarr.name" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + template: + metadata: + labels: + app.kubernetes.io/name: {{ include "sonarr.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: 8989 + protocol: TCP + livenessProbe: + httpGet: + path: / + port: http + readinessProbe: + httpGet: + path: / + port: http + env: + - name: TZ + value: "{{ .Values.timezone }}" + - 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 }} + - mountPath: /tv + name: tv + {{- if .Values.persistence.tv.subPath }} + subPath: {{ .Values.persistence.tv.subPath }} + {{- end }} + {{- range .Values.persistence.extraExistingClaimMounts }} + - name: {{ .name }} + mountPath: {{ .mountPath }} + readOnly: {{ .readOnly }} + {{- 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 "sonarr.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 "sonarr.fullname" . }}-downloads{{- end }} + {{- else }} + emptyDir: {} + {{- end }} + - name: tv + {{- if .Values.persistence.tv.enabled }} + persistentVolumeClaim: + claimName: {{ if .Values.persistence.tv.existingClaim }}{{ .Values.persistence.tv.existingClaim }}{{- else }}{{ template "sonarr.fullname" . }}-tv{{- end }} + {{- else }} + emptyDir: {} + {{- end }} + {{- range .Values.persistence.extraExistingClaimMounts }} + - name: {{ .name }} + persistentVolumeClaim: + claimName: {{ .existingClaim }} + {{- 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 }} diff --git a/sonarr/templates/downloads-pvc.yaml b/sonarr/templates/downloads-pvc.yaml new file mode 100644 index 00000000..c6fe4d47 --- /dev/null +++ b/sonarr/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 "sonarr.fullname" . }}-downloads + labels: + app.kubernetes.io/name: {{ include "sonarr.name" . }} + helm.sh/chart: {{ include "sonarr.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/sonarr/templates/ingress.yaml b/sonarr/templates/ingress.yaml new file mode 100644 index 00000000..3cc74587 --- /dev/null +++ b/sonarr/templates/ingress.yaml @@ -0,0 +1,38 @@ +{{- if .Values.ingress.enabled -}} +{{- $fullName := include "sonarr.fullname" . -}} +{{- $ingressPath := .Values.ingress.path -}} +apiVersion: extensions/v1beta1 +kind: Ingress +metadata: + name: {{ $fullName }} + labels: + app.kubernetes.io/name: {{ include "sonarr.name" . }} + helm.sh/chart: {{ include "sonarr.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 }} + - {{ . | quote }} + {{- end }} + secretName: {{ .secretName }} + {{- end }} +{{- end }} + rules: + {{- range .Values.ingress.hosts }} + - host: {{ . | quote }} + http: + paths: + - path: {{ $ingressPath }} + backend: + serviceName: {{ $fullName }} + servicePort: http + {{- end }} +{{- end }} diff --git a/sonarr/templates/service.yaml b/sonarr/templates/service.yaml new file mode 100644 index 00000000..5d2a5b26 --- /dev/null +++ b/sonarr/templates/service.yaml @@ -0,0 +1,52 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ template "sonarr.fullname" . }} + labels: + app.kubernetes.io/name: {{ include "sonarr.name" . }} + helm.sh/chart: {{ include "sonarr.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- if .Values.service.labels }} +{{ toYaml .Values.service.labels | indent 4 }} +{{- end }} +{{- with .Values.service.annotations }} + annotations: +{{ toYaml . | indent 4 }} +{{- end }} +spec: +{{- if (or (eq .Values.service.type "ClusterIP") (empty .Values.service.type)) }} + type: ClusterIP + {{- if .Values.service.clusterIP }} + clusterIP: {{ .Values.service.clusterIP }} + {{end}} +{{- else if eq .Values.service.type "LoadBalancer" }} + type: {{ .Values.service.type }} + {{- if .Values.service.loadBalancerIP }} + loadBalancerIP: {{ .Values.service.loadBalancerIP }} + {{- end }} + {{- if .Values.service.loadBalancerSourceRanges }} + loadBalancerSourceRanges: +{{ toYaml .Values.service.loadBalancerSourceRanges | indent 4 }} + {{- end -}} +{{- else }} + type: {{ .Values.service.type }} +{{- end }} +{{- if .Values.service.externalIPs }} + externalIPs: +{{ toYaml .Values.service.externalIPs | indent 4 }} +{{- end }} + {{- if .Values.service.externalTrafficPolicy }} + externalTrafficPolicy: {{ .Values.service.externalTrafficPolicy }} + {{- end }} + ports: + - name: http + port: {{ .Values.service.port }} + protocol: TCP + targetPort: http +{{ if (and (eq .Values.service.type "NodePort") (not (empty .Values.service.nodePort))) }} + nodePort: {{.Values.service.nodePort}} +{{ end }} + selector: + app.kubernetes.io/name: {{ include "sonarr.name" . }} + app.kubernetes.io/instance: {{ .Release.Name }} \ No newline at end of file diff --git a/sonarr/templates/tv-pvc.yaml b/sonarr/templates/tv-pvc.yaml new file mode 100644 index 00000000..d24978a3 --- /dev/null +++ b/sonarr/templates/tv-pvc.yaml @@ -0,0 +1,25 @@ + +{{- if and .Values.persistence.tv.enabled (not .Values.persistence.tv.existingClaim) }} +kind: PersistentVolumeClaim +apiVersion: v1 +metadata: + name: {{ template "sonarr.fullname" . }}-tv + labels: + app.kubernetes.io/name: {{ include "sonarr.name" . }} + helm.sh/chart: {{ include "sonarr.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} +spec: + accessModes: + - {{ .Values.persistence.tv.accessMode | quote }} + resources: + requests: + storage: {{ .Values.persistence.tv.size | quote }} +{{- if .Values.persistence.tv.storageClass }} +{{- if (eq "-" .Values.persistence.tv.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.persistence.tv.storageClass }}" +{{- end }} +{{- end }} +{{- end -}} \ No newline at end of file diff --git a/sonarr/values.yaml b/sonarr/values.yaml new file mode 100644 index 00000000..a505d0df --- /dev/null +++ b/sonarr/values.yaml @@ -0,0 +1,128 @@ +# Default values for sonarr. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +image: + repository: linuxserver/sonarr + tag: 162 + pullPolicy: IfNotPresent + +nameOverride: "" +fullnameOverride: "" + +timezone: UTC +puid: 1001 +pgid: 1001 + +service: + type: ClusterIP + port: 8989 + ## 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 + ## sonarr 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 + ## sonarr 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 + tv: + enabled: true + ## Directory where televion shows are persisted + ## 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 + extraExistingClaimMounts: [] + # - name: external-mount + # mountPath: /srv/external-mount + ## A manually managed Persistent Volume and Claim + ## If defined, PVC must be created manually before volume will be bound + # existingClaim: + # readOnly: true + +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: {}