generate helm docs

This commit is contained in:
James 2023-10-23 22:05:50 +01:00
parent 95c7017a7b
commit c6d3ca9442
Signed by: thumbscrw
GPG Key ID: 4A3BB8AF7D9C2B46
2 changed files with 58 additions and 5 deletions

51
charts/jellyfin/README.md Normal file
View File

@ -0,0 +1,51 @@
# jellyfin
![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 10.8.11](https://img.shields.io/badge/AppVersion-10.8.11-informational?style=flat-square)
A Helm chart for Jellyfin, the Free Software Media System that puts you in control of managing and streaming your media.
**Homepage:** <https://jellyfin.org>
## Source Code
* <https://github.com/jellyfin/jellyfin>
## Values
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| affinity | object | `{}` | |
| fullnameOverride | string | `""` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"jellyfin/jellyfin"` | |
| image.tag | string | `""` | Overrides the image tag whose default is the chart appVersion. |
| imagePullSecrets | list | `[]` | |
| ingress.annotations | object | `{}` | |
| ingress.className | string | `""` | |
| ingress.enabled | bool | `false` | |
| ingress.hosts[0].host | string | `"jellyfin.example.com"` | |
| ingress.hosts[0].paths[0].path | string | `"/"` | |
| ingress.hosts[0].paths[0].pathType | string | `"ImplementationSpecific"` | |
| ingress.tls | list | `[]` | |
| nameOverride | string | `""` | |
| nodeSelector | object | `{}` | |
| persistence.cache | object | `{"accessMode":"ReadWriteOnce","annotations":{},"enabled":false,"existingClaim":"","size":"10Gi","storageClass":""}` | Persistence config for the /cache volume |
| persistence.config | object | `{"accessMode":"ReadWriteOnce","annotations":{},"enabled":false,"existingClaim":"","size":"1Gi","storageClass":""}` | Persistence config for the /config volume |
| persistence.media | object | `{"accessMode":"ReadWriteOnce","annotations":{},"enabled":false,"existingClaim":"","size":"10Gi","storageClass":""}` | Persistence config for the /media volume |
| podAnnotations | object | `{}` | |
| podSecurityContext | object | `{}` | |
| replicaCount | int | `1` | |
| resources | object | `{}` | |
| securityContext.fsGroup | int | `1000` | |
| securityContext.readOnlyRootFilesystem | bool | `false` | |
| securityContext.runAsNonRoot | bool | `true` | |
| securityContext.runAsUser | int | `1000` | |
| service.port | int | `8096` | |
| service.type | string | `"ClusterIP"` | |
| serviceAccount.annotations | object | `{}` | Annotations to add to the service account |
| serviceAccount.create | bool | `true` | Specifies whether a service account should be created |
| serviceAccount.name | string | `""` | The name of the service account to use. If not set and create is true, a name is generated using the fullname template |
| tolerations | list | `[]` | |
----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.11.0](https://github.com/norwoodj/helm-docs/releases/v1.11.0)

View File

@ -7,7 +7,7 @@ replicaCount: 1
image: image:
repository: jellyfin/jellyfin repository: jellyfin/jellyfin
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion. # -- Overrides the image tag whose default is the chart appVersion.
tag: "" tag: ""
imagePullSecrets: [] imagePullSecrets: []
@ -15,12 +15,11 @@ nameOverride: ""
fullnameOverride: "" fullnameOverride: ""
serviceAccount: serviceAccount:
# Specifies whether a service account should be created # -- Specifies whether a service account should be created
create: true create: true
# Annotations to add to the service account # -- Annotations to add to the service account
annotations: {} annotations: {}
# The name of the service account to use. # -- The name of the service account to use. If not set and create is true, a name is generated using the fullname template
# If not set and create is true, a name is generated using the fullname template
name: "" name: ""
podAnnotations: {} podAnnotations: {}
@ -38,6 +37,7 @@ securityContext:
fsGroup: 1000 fsGroup: 1000
persistence: persistence:
# -- Persistence config for the /config volume
config: config:
enabled: false enabled: false
existingClaim: "" existingClaim: ""
@ -45,6 +45,7 @@ persistence:
accessMode: ReadWriteOnce accessMode: ReadWriteOnce
storageClass: "" storageClass: ""
size: 1Gi size: 1Gi
# -- Persistence config for the /media volume
media: media:
enabled: false enabled: false
existingClaim: "" existingClaim: ""
@ -52,6 +53,7 @@ persistence:
accessMode: ReadWriteOnce accessMode: ReadWriteOnce
storageClass: "" storageClass: ""
size: 10Gi size: 10Gi
# -- Persistence config for the /cache volume
cache: cache:
enabled: false enabled: false
existingClaim: "" existingClaim: ""