chart-seafile: improve documentation
This commit is contained in:
@ -28,20 +28,16 @@ An open-source, cross-platform file-hosting software system.
|
|||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| affinity | object | `{}` | affinity |
|
| affinity | object | `{}` | affinity |
|
||||||
| autoscaling | object | `{"enabled":false,"maxReplicas":100,"minReplicas":1,"targetCPUUtilizationPercentage":80}` | autoscaling settings |
|
|
||||||
| autoscaling.enabled | boolean | `false` | whether autoscaling should be enabled |
|
| autoscaling.enabled | boolean | `false` | whether autoscaling should be enabled |
|
||||||
| autoscaling.maxReplicas | int | `100` | maximum number of replicas |
|
| autoscaling.maxReplicas | int | `100` | maximum number of replicas |
|
||||||
| autoscaling.minReplicas | int | `1` | minimum number of replicas |
|
| autoscaling.minReplicas | int | `1` | minimum number of replicas |
|
||||||
| autoscaling.targetCPUUtilizationPercentage | int | `80` | try to utilize this much CPU [%] |
|
| autoscaling.targetCPUUtilizationPercentage | int | `80` | try to utilize this much CPU [%] |
|
||||||
| fullnameOverride | string | `""` | override the fullname of the entire chart |
|
| fullnameOverride | string | `""` | override the fullname of the entire chart |
|
||||||
| global | object | `{"storageClass":""}` | global settings |
|
|
||||||
| global.storageClass | string | `""` | global storage class for PVCs |
|
| global.storageClass | string | `""` | global storage class for PVCs |
|
||||||
| image | object | `{"pullPolicy":"IfNotPresent","repository":"seafileltd/seafile-mc","tag":""}` | seafile image configuration |
|
|
||||||
| image.pullPolicy | string | `"IfNotPresent"` | when to pull the image |
|
| image.pullPolicy | string | `"IfNotPresent"` | when to pull the image |
|
||||||
| image.repository | string | `"seafileltd/seafile-mc"` | what seafile image to use |
|
| image.repository | string | `"seafileltd/seafile-mc"` | what seafile image to use |
|
||||||
| image.tag | string | `""` | override image tag; default is the chart appVersion |
|
| image.tag | string | `""` | override image tag; default is the chart appVersion |
|
||||||
| imagePullSecrets | list | `[]` | secrets used to pull the image |
|
| imagePullSecrets | list | `[]` | secrets used to pull the image |
|
||||||
| ingress | object | `{"annotations":{},"className":"","enabled":false,"hosts":[{"host":"chart-example.local","paths":[{"path":"/","pathType":"ImplementationSpecific"}]}],"tls":[]}` | ingress setup |
|
|
||||||
| ingress.annotations | object | `{}` | additional ingress annotations |
|
| ingress.annotations | object | `{}` | additional ingress annotations |
|
||||||
| ingress.className | string | `""` | override ingress class name |
|
| ingress.className | string | `""` | override ingress class name |
|
||||||
| ingress.enabled | boolean | `false` | whether an ingress should be generated |
|
| ingress.enabled | boolean | `false` | whether an ingress should be generated |
|
||||||
@ -49,14 +45,13 @@ An open-source, cross-platform file-hosting software system.
|
|||||||
| ingress.tls | list | `[]` | TLS setup |
|
| ingress.tls | list | `[]` | TLS setup |
|
||||||
| livenessProbe.httpGet.path | string | `"/"` | |
|
| livenessProbe.httpGet.path | string | `"/"` | |
|
||||||
| livenessProbe.httpGet.port | string | `"http"` | |
|
| livenessProbe.httpGet.port | string | `"http"` | |
|
||||||
| mariadb | object | `{"auth":{"rootPassword":"changeme"},"persistence":{"enabled":true,"size":"1Gi","storageClass":""}}` | mariadb subchart configuration |
|
|
||||||
| mariadb.auth | object | `{"rootPassword":"changeme"}` | auth settings |
|
| mariadb.auth | object | `{"rootPassword":"changeme"}` | auth settings |
|
||||||
| mariadb.auth.rootPassword | string | `"changeme"` | root user password; DO NOT FORGET TO CHANGE THIS VALUE |
|
| mariadb.auth.rootPassword | string | `"changeme"` | root user password; DO NOT FORGET TO CHANGE THIS VALUE |
|
||||||
| mariadb.persistence | object | `{"enabled":true,"size":"1Gi","storageClass":""}` | DB persistence settings |
|
| mariadb.persistence | object | `{"enabled":true,"size":"1Gi","storageClass":""}` | DB persistence settings |
|
||||||
| memcached | object | `{"extraEnvVars":[{"name":"MEMCACHED_CACHE_SIZE","value":"256M"}]}` | memcached subchart configuration |
|
| memcached.extraEnvVars[0].name | string | `"MEMCACHED_CACHE_SIZE"` | |
|
||||||
|
| memcached.extraEnvVars[0].value | string | `"256M"` | |
|
||||||
| nameOverride | string | `""` | override the name of the entire chart |
|
| nameOverride | string | `""` | override the name of the entire chart |
|
||||||
| nodeSelector | object | `{}` | node selectors |
|
| nodeSelector | object | `{}` | node selectors |
|
||||||
| persistence | object | `{"accessModes":["ReadWriteOnce"],"annotations":{},"create":true,"enabled":true,"labels":{},"size":"16Gi","storageClass":""}` | persistence settings |
|
|
||||||
| persistence.accessModes | list | `["ReadWriteOnce"]` | PVC access modes |
|
| persistence.accessModes | list | `["ReadWriteOnce"]` | PVC access modes |
|
||||||
| persistence.annotations | object | `{}` | additional PVC annotations |
|
| persistence.annotations | object | `{}` | additional PVC annotations |
|
||||||
| persistence.create | boolean | `true` | whether to create PVCs |
|
| persistence.create | boolean | `true` | whether to create PVCs |
|
||||||
@ -71,12 +66,10 @@ An open-source, cross-platform file-hosting software system.
|
|||||||
| readinessProbe.httpGet.port | string | `"http"` | |
|
| readinessProbe.httpGet.port | string | `"http"` | |
|
||||||
| replicaCount | int | `1` | number of seafile replicas to run (only tested with 1) |
|
| replicaCount | int | `1` | number of seafile replicas to run (only tested with 1) |
|
||||||
| resources | object | `{}` | custom resources |
|
| resources | object | `{}` | custom resources |
|
||||||
| seafile | object | `{"admin_email":"admin@hostname.tld","admin_password":"changeme2","timezone":"Europe/Berlin"}` | seafile app configuration |
|
|
||||||
| seafile.admin_email | string | `"admin@hostname.tld"` | email address of the admin user |
|
| seafile.admin_email | string | `"admin@hostname.tld"` | email address of the admin user |
|
||||||
| seafile.admin_password | string | `"changeme2"` | password of the admin user; DO NOT FORGET TO CHANGE THIS VALUE |
|
| seafile.admin_password | string | `"changeme2"` | password of the admin user; DO NOT FORGET TO CHANGE THIS VALUE |
|
||||||
| seafile.timezone | string | `"Europe/Berlin"` | [TZ identifier](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) |
|
| seafile.timezone | string | `"Europe/Berlin"` | [TZ identifier](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) |
|
||||||
| securityContext | object | `{}` | custom security context |
|
| securityContext | object | `{}` | custom security context |
|
||||||
| service | object | `{"port":80,"type":"ClusterIP"}` | service setup |
|
|
||||||
| service.port | int | `80` | service port |
|
| service.port | int | `80` | service port |
|
||||||
| service.type | string | `"ClusterIP"` | service type |
|
| service.type | string | `"ClusterIP"` | service type |
|
||||||
| serviceAccount.annotations | object | `{}` | service account annotations |
|
| serviceAccount.annotations | object | `{}` | service account annotations |
|
||||||
|
|||||||
@ -2,12 +2,10 @@
|
|||||||
# -- (int) number of seafile replicas to run (only tested with 1)
|
# -- (int) number of seafile replicas to run (only tested with 1)
|
||||||
replicaCount: 1
|
replicaCount: 1
|
||||||
|
|
||||||
# -- global settings
|
|
||||||
global:
|
global:
|
||||||
# -- global storage class for PVCs
|
# -- global storage class for PVCs
|
||||||
storageClass: ''
|
storageClass: ''
|
||||||
|
|
||||||
# -- seafile image configuration
|
|
||||||
image:
|
image:
|
||||||
# -- what seafile image to use
|
# -- what seafile image to use
|
||||||
repository: seafileltd/seafile-mc
|
repository: seafileltd/seafile-mc
|
||||||
@ -49,14 +47,12 @@ securityContext: {}
|
|||||||
# runAsNonRoot: true
|
# runAsNonRoot: true
|
||||||
# runAsUser: 1000
|
# runAsUser: 1000
|
||||||
|
|
||||||
# -- service setup
|
|
||||||
service:
|
service:
|
||||||
# -- service type
|
# -- service type
|
||||||
type: ClusterIP
|
type: ClusterIP
|
||||||
# -- (int) service port
|
# -- (int) service port
|
||||||
port: 80
|
port: 80
|
||||||
|
|
||||||
# -- ingress setup
|
|
||||||
ingress:
|
ingress:
|
||||||
# -- (boolean) whether an ingress should be generated
|
# -- (boolean) whether an ingress should be generated
|
||||||
enabled: false
|
enabled: false
|
||||||
@ -97,7 +93,6 @@ readinessProbe:
|
|||||||
path: /
|
path: /
|
||||||
port: http
|
port: http
|
||||||
|
|
||||||
# -- autoscaling settings
|
|
||||||
autoscaling:
|
autoscaling:
|
||||||
# -- (boolean) whether autoscaling should be enabled
|
# -- (boolean) whether autoscaling should be enabled
|
||||||
enabled: false
|
enabled: false
|
||||||
@ -109,7 +104,6 @@ autoscaling:
|
|||||||
targetCPUUtilizationPercentage: 80
|
targetCPUUtilizationPercentage: 80
|
||||||
# targetMemoryUtilizationPercentage: 80
|
# targetMemoryUtilizationPercentage: 80
|
||||||
|
|
||||||
# -- persistence settings
|
|
||||||
persistence:
|
persistence:
|
||||||
# -- (boolean) whether to handle persistence at all
|
# -- (boolean) whether to handle persistence at all
|
||||||
enabled: true
|
enabled: true
|
||||||
@ -135,7 +129,6 @@ tolerations: []
|
|||||||
# -- affinity
|
# -- affinity
|
||||||
affinity: {}
|
affinity: {}
|
||||||
|
|
||||||
# -- seafile app configuration
|
|
||||||
seafile:
|
seafile:
|
||||||
# -- [TZ identifier](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones)
|
# -- [TZ identifier](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones)
|
||||||
timezone: Europe/Berlin
|
timezone: Europe/Berlin
|
||||||
@ -144,7 +137,6 @@ seafile:
|
|||||||
# -- password of the admin user; DO NOT FORGET TO CHANGE THIS VALUE
|
# -- password of the admin user; DO NOT FORGET TO CHANGE THIS VALUE
|
||||||
admin_password: changeme2
|
admin_password: changeme2
|
||||||
|
|
||||||
# -- mariadb subchart configuration
|
|
||||||
mariadb:
|
mariadb:
|
||||||
# -- auth settings
|
# -- auth settings
|
||||||
auth:
|
auth:
|
||||||
@ -156,7 +148,6 @@ mariadb:
|
|||||||
storageClass: ''
|
storageClass: ''
|
||||||
size: 1Gi
|
size: 1Gi
|
||||||
|
|
||||||
# -- memcached subchart configuration
|
|
||||||
memcached:
|
memcached:
|
||||||
extraEnvVars:
|
extraEnvVars:
|
||||||
- name: MEMCACHED_CACHE_SIZE
|
- name: MEMCACHED_CACHE_SIZE
|
||||||
|
|||||||
Reference in New Issue
Block a user