Skip to content

Commit 10a8fd9

Browse files
committed
chore: docs for helm-docs
Signed-off-by: WrenIX <[email protected]>
1 parent 505a9b6 commit 10a8fd9

File tree

3 files changed

+32
-10
lines changed

3 files changed

+32
-10
lines changed

charts/nextcloud/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -781,7 +781,7 @@ Check out the [official Nextcloud AI docs](https://docs.nextcloud.com/server/lat
781781
| `aiWorker.affinity` | ai-worker pod affinity | `{}` |
782782
| `aiWorker.tolerations` | ai-worker pod tolerations | `[]` |
783783
| `aiWorker.deploymentAnnotations` | ai-worker deployment annotations | `{}` |
784-
| `aiWorker.deploymentLabels` | ai-worker deployment labels | `{}` |
784+
| `aiWorker.deploymentLabels` | ai-worker deployment labels | `{}` |
785785
| `aiWorker.podAnnotations` | ai-worker pod annotations | `{}` |
786786
| `aiWorker.podLabels` | ai-worker pod labels | `{}` |
787787

charts/nextcloud/templates/_helpers.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,4 +397,4 @@ Create volume mounts for the nextcloud container as well as the cron sidecar con
397397
mountPath: {{ $nginxEnabled | ternary (printf "/usr/local/etc/php-fpm.d/%s" $key | quote) (printf "/usr/local/etc/php/conf.d/%s" $key | quote) }}
398398
subPath: {{ $key }}
399399
{{- end }}
400-
{{- end -}}
400+
{{- end -}}

charts/nextcloud/values.yaml

Lines changed: 30 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -687,28 +687,40 @@ dnsConfig: {}
687687
## ref: https://docs.nextcloud.com/server/latest/admin_manual/ai/overview.html#improve-ai-task-pickup-speed
688688
##
689689
aiWorker:
690+
# -- Start / Deploy Worker for AI
691+
# @section -- AI Worker
690692
enabled: false
691693

692694
image:
695+
# --
696+
# @section -- AI Worker
693697
repository: alpine/curl
698+
# --
699+
# @section -- AI Worker
694700
tag: latest
701+
# --
702+
# @section -- AI Worker
695703
pullPolicy: IfNotPresent
696704

697-
# Number of replicas to be deployed
705+
# -- Number of replicas to be deployed
706+
# @section -- AI Worker
698707
replicaCount: 1
699708

700-
# Set securityContext parameters. For example, you may need to define runAsNonRoot directive
709+
# -- Set securityContext parameters. For example, you may need to define runAsNonRoot directive
710+
# @section -- AI Worker
701711
securityContext: {}
702712
# runAsUser: 33
703713
# runAsGroup: 33
704714
# runAsNonRoot: true
705715
# readOnlyRootFilesystem: true
706716

707-
# Set podSecurityContext parameters. For example, you may need to define fsGroup directive
717+
# -- Set podSecurityContext parameters. For example, you may need to define fsGroup directive
718+
# @section -- AI Worker
708719
podSecurityContext: {}
709720
# fsGroup: 33
710721

711-
# Set affinity parameters. For example, you may need to define a podAffinity when using a storageClass that doesn't support ReadWriteMany
722+
# -- Set affinity parameters. For example, you may need to define a podAffinity when using a storageClass that doesn't support ReadWriteMany
723+
# @section -- AI Worker
712724
affinity: {}
713725
# podAffinity:
714726
# requiredDuringSchedulingIgnoredDuringExecution:
@@ -717,19 +729,29 @@ aiWorker:
717729
# app: nextcloud
718730
# topologyKey: "kubernetes.io/hostname"
719731

720-
# Set tolerations parameters. For example, you may need to define a toleration for a specific node taint
732+
# -- Set tolerations parameters. For example, you may need to define a toleration for a specific node taint
733+
# @section -- AI Worker
721734
tolerations: []
722735

723-
# Set to true to use the hostname to check nextcloud for readiness
736+
# -- Set to true to use the hostname to check nextcloud for readiness
737+
# @section -- AI Worker
724738
useHostName: true
725739

726-
# ai-worker resources
740+
# -- ai-worker resources
741+
# @section -- AI Worker
727742
resources: {}
728743

729-
744+
# -- Annotations on Deployment
745+
# @section -- AI Worker
730746
deploymentAnnotations: {}
747+
# -- Labels on Deployment
748+
# @section -- AI Worker
731749
deploymentLabels: {}
750+
# -- Annotations on Pod
751+
# @section -- AI Worker
732752
podAnnotations: {}
753+
# -- Labels on Pod
754+
# @section -- AI Worker
733755
podLabels: {}
734756

735757
imaginary:

0 commit comments

Comments
 (0)