mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-24 07:59:02 +00:00
fixing typos
Signed-off-by: Jeff Billimek <jeff@billimek.com>
This commit is contained in:
parent
5313be8ca9
commit
3f82503a9e
@ -2,7 +2,7 @@ apiVersion: v1
|
|||||||
appVersion: 137
|
appVersion: 137
|
||||||
description: Radarr is a movie downloading client
|
description: Radarr is a movie downloading client
|
||||||
name: radarr
|
name: radarr
|
||||||
version: 0.1.0
|
version: 0.1.2
|
||||||
keywords:
|
keywords:
|
||||||
- radarr
|
- radarr
|
||||||
- usenet
|
- usenet
|
||||||
|
@ -40,7 +40,7 @@ The following tables lists the configurable parameters of the Sentry chart and t
|
|||||||
| `puid` | process userID the radarr instance should run as | `1001` |
|
| `puid` | process userID the radarr instance should run as | `1001` |
|
||||||
| `pgid` | process groupID the radarr instance should run as | `1001` |
|
| `pgid` | process groupID the radarr instance should run as | `1001` |
|
||||||
| `Service.type` | Kubernetes service type for the radarr GUI | `ClusterIP` |
|
| `Service.type` | Kubernetes service type for the radarr GUI | `ClusterIP` |
|
||||||
| `Service.port` | Kubernetes port where the radarr GUI is exposed| `6789` |
|
| `Service.port` | Kubernetes port where the radarr GUI is exposed| `7878` |
|
||||||
| `Service.annotations` | Service annotations for the radarr GUI | `{}` |
|
| `Service.annotations` | Service annotations for the radarr GUI | `{}` |
|
||||||
| `Service.labels` | Custom labels | `{}` |
|
| `Service.labels` | Custom labels | `{}` |
|
||||||
| `Service.loadBalancerIP` | Loadbalance IP for the radarr GUI | `{}` |
|
| `Service.loadBalancerIP` | Loadbalance IP for the radarr GUI | `{}` |
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
{{- if and .Values.persistence.downloads.enabled (not .Values.persistence.downloads.existingClaim) }}
|
{{- if and .Values.persistence.movies.enabled (not .Values.persistence.movies.existingClaim) }}
|
||||||
kind: PersistentVolumeClaim
|
kind: PersistentVolumeClaim
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
metadata:
|
metadata:
|
||||||
@ -11,15 +11,15 @@ metadata:
|
|||||||
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
||||||
spec:
|
spec:
|
||||||
accessModes:
|
accessModes:
|
||||||
- {{ .Values.persistence.downloads.accessMode | quote }}
|
- {{ .Values.persistence.movies.accessMode | quote }}
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
storage: {{ .Values.persistence.downloads.size | quote }}
|
storage: {{ .Values.persistence.movies.size | quote }}
|
||||||
{{- if .Values.persistence.downloads.storageClass }}
|
{{- if .Values.persistence.movies.storageClass }}
|
||||||
{{- if (eq "-" .Values.persistence.downloads.storageClass) }}
|
{{- if (eq "-" .Values.persistence.movies.storageClass) }}
|
||||||
storageClassName: ""
|
storageClassName: ""
|
||||||
{{- else }}
|
{{- else }}
|
||||||
storageClassName: "{{ .Values.persistence.downloads.storageClass }}"
|
storageClassName: "{{ .Values.persistence.movies.storageClass }}"
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end -}}
|
{{- end -}}
|
Loading…
Reference in New Issue
Block a user