From 04d871cf160a300fe13269a00fb296bce0552277 Mon Sep 17 00:00:00 2001 From: WrenIX Date: Sat, 17 Aug 2024 02:36:27 +0200 Subject: [PATCH] feat(nextcloud): Add support of imaginary an externalPreviewProvider Signed-off-by: WrenIX --- charts/nextcloud/Chart.yaml | 2 +- charts/nextcloud/README.md | 44 ++++++++++ .../defaultConfigs/imaginary.config.php.tpl | 4 + .../templates/imaginary/deployment.yaml | 88 +++++++++++++++++++ .../templates/imaginary/service.yaml | 36 ++++++++ charts/nextcloud/values.yaml | 67 ++++++++++++++ 6 files changed, 240 insertions(+), 1 deletion(-) create mode 100644 charts/nextcloud/files/defaultConfigs/imaginary.config.php.tpl create mode 100644 charts/nextcloud/templates/imaginary/deployment.yaml create mode 100644 charts/nextcloud/templates/imaginary/service.yaml diff --git a/charts/nextcloud/Chart.yaml b/charts/nextcloud/Chart.yaml index c832543b..e8c4fac5 100644 --- a/charts/nextcloud/Chart.yaml +++ b/charts/nextcloud/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: nextcloud -version: 5.5.3 +version: 5.6.0 appVersion: 29.0.5 description: A file sharing server that puts the control and security of your own data back into your hands. keywords: diff --git a/charts/nextcloud/README.md b/charts/nextcloud/README.md index 745b5231..f231468d 100644 --- a/charts/nextcloud/README.md +++ b/charts/nextcloud/README.md @@ -21,6 +21,7 @@ helm install my-release nextcloud/nextcloud * [Persistence Configurations](#persistence-configurations) * [Metrics Configurations](#metrics-configurations) * [Probes Configurations](#probes-configurations) + * [Imaginary](#imaginary) * [Cron jobs](#cron-jobs) * [Using the nextcloud docker image auto-configuration via env vars](#using-the-nextcloud-docker-image-auto-configuration-via-env-vars) * [Multiple config.php file](#multiple-configphp-file) @@ -426,6 +427,49 @@ The nextcloud deployment includes a series of different probes you can use to de > [!Note] > If you are getting errors on initialization (such as `Fatal error: require_once(): Failed opening required '/var/www/html/lib/versioncheck.php'`, but you can get other errors as well), a good first step is to try and enable the startupProbe and/or increase the `initialDelaySeconds` for the `livenessProbe` and `readinessProbe` to something much greater (consider using `120` seconds instead of `10`. This is an especially good idea if your cluster is running on older hardware, has a slow internet connection, or you're using a slower storage class, such as NFS that's running with older disks or a slow connection. +### Imaginary + +We include an optional external preview provider from [h2non/imaginary](https://github.com/h2non/imaginary). + +| Parameter | Description | Default | +|----------------------------------------|-----------------------------------------------------------------------------------------|-------------------| +| `imaginary.enabled` | Start Imgaginary | `false` | +| `imaginary.replicaCount` | Number of imaginary pod replicas to deploy | `1` | +| `imaginary.image.registry` | Imaginary image name | `docker.io` | +| `imaginary.image.repository` | Imaginary image name | `h2non/imaginary` | +| `imaginary.image.tag` | Imaginary image tag | `1.2.4` | +| `imaginary.image.pullPolicy` | Imaginary image pull policy | `IfNotPresent` | +| `imaginary.image.pullSecrets` | Imaginary image pull secrets | `nil` | +| `imaginary.podAnnotations` | Additional annotations for imaginary | `{}` | +| `imaginary.podLabels` | Additional labels for imaginary | `{}` | +| `imaginary.resources` | imaginary resources | `{}` | +| `imaginary.securityContext` | Optional security context for the Imaginary container | `nil` | +| `imaginary.podSecurityContext` | Optional security context for the Imaginary pod (applies to all containers in the pod) | `nil` | +| `imaginary.service.type` | Imaginary: Kubernetes Service type | `ClusterIP` | +| `imaginary.service.loadBalancerIP` | Imaginary: LoadBalancerIp for service type LoadBalancer | `nil` | +| `imaginary.service.nodePort` | Imaginary: NodePort for service type NodePort | `nil` | +| `imaginary.service.annotations` | Additional annotations for service imaginary | `{}` | +| `imaginary.service.labels` | Additional labels for service imaginary | `{}` | + + +> [!Note] +> You also need to setup nextcloud, to use imaginary +```yaml +nextcloud: + defaultConfigs: + imaginary.config.php: true + configs: + previews.config.php: |- + array( + 0 => 'OC\\Preview\\Imaginary', + ); + +imaginary: + enabled: true +``` + ## Cron jobs To execute [background tasks](https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/background_jobs_configuration.html) by using system cron instead of default Ajax cron, set `cronjob.enabled` parameter to `true`. Background jobs are important for tasks that do not necessarily need user intervention, but still need to be executed frequently (cleaning up, sending some notifications, pulling RSS feeds, etc.). diff --git a/charts/nextcloud/files/defaultConfigs/imaginary.config.php.tpl b/charts/nextcloud/files/defaultConfigs/imaginary.config.php.tpl new file mode 100644 index 00000000..95719b15 --- /dev/null +++ b/charts/nextcloud/files/defaultConfigs/imaginary.config.php.tpl @@ -0,0 +1,4 @@ + 'http://{{ template "nextcloud.fullname" . }}-imaginary', +); diff --git a/charts/nextcloud/templates/imaginary/deployment.yaml b/charts/nextcloud/templates/imaginary/deployment.yaml new file mode 100644 index 00000000..3845a2a0 --- /dev/null +++ b/charts/nextcloud/templates/imaginary/deployment.yaml @@ -0,0 +1,88 @@ +{{- if .Values.imaginary.enabled }} +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ template "nextcloud.fullname" . }}-imaginary + labels: + app.kubernetes.io/name: {{ include "nextcloud.name" . }} + helm.sh/chart: {{ include "nextcloud.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} + app.kubernetes.io/component: imaginary +spec: + replicas: {{ .Values.imaginary.replicaCount }} + selector: + matchLabels: + app.kubernetes.io/name: {{ include "nextcloud.name" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/component: imaginary + template: + metadata: + annotations: + {{- toYaml .Values.imaginary.podAnnotations | nindent 8 }} + labels: + app.kubernetes.io/name: {{ include "nextcloud.name" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/component: imaginary + {{- with .Values.imaginary.podLabels }} + {{- toYaml . | nindent 8 }} + {{- end }} + spec: + {{- with .Values.imaginary.image.pullSecrets }} + imagePullSecrets: + {{- range . }} + - name: {{ . }} + {{- end}} + {{- end }} + containers: + - name: imaginary + {{- with .Values.imaginary.image }} + image: "{{ .registry }}/{{ .repository }}:{{ .tag }}" + imagePullPolicy: {{ .pullPolicy }} + {{- end }} + env: + - name: PORT + value: "9000" + ports: + - name: http + containerPort: 9000 + {{- with .Values.imaginary.readinessProbe }} + {{- if .enabled }} + readinessProbe: + httpGet: + path: /health + port: http + scheme: HTTP + failureThreshold: {{ .failureThreshold }} + successThreshold: {{ .successThreshold }} + periodSeconds: {{ .periodSeconds }} + timeoutSeconds: {{ .timeoutSeconds }} + {{- end }} + {{- end }} + {{- with .Values.imaginary.livenessProbe }} + {{- if .enabled }} + livenessProbe: + httpGet: + path: /health + port: http + scheme: HTTP + failureThreshold: {{ .failureThreshold }} + successThreshold: {{ .successThreshold }} + periodSeconds: {{ .periodSeconds }} + timeoutSeconds: {{ .timeoutSeconds }} + {{- end }} + {{- end }} + {{- with .Values.imaginary.resources }} + resources: + {{- toYaml . | nindent 12 }} + {{- end }} + {{- with .Values.imaginary.securityContext }} + securityContext: + {{- toYaml . | nindent 12 }} + {{- end }} + {{- with .Values.imaginary.podSecurityContext }} + securityContext: + {{- toYaml . | nindent 12 }} + {{- end }} +{{- end }} diff --git a/charts/nextcloud/templates/imaginary/service.yaml b/charts/nextcloud/templates/imaginary/service.yaml new file mode 100644 index 00000000..7f4b09e0 --- /dev/null +++ b/charts/nextcloud/templates/imaginary/service.yaml @@ -0,0 +1,36 @@ +{{- if .Values.imaginary.enabled }} +--- +apiVersion: v1 +kind: Service +metadata: + name: {{ template "nextcloud.fullname" . }}-imaginary + labels: + app.kubernetes.io/name: {{ include "nextcloud.name" . }} + helm.sh/chart: {{ include "nextcloud.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} + app.kubernetes.io/component: imaginary + {{- with .Values.imaginary.service.labels }} + {{- toYaml . | nindent 4 }} + {{- end }} + {{- with .Values.imaginary.service.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +spec: + type: {{ .Values.imaginary.service.type }} + {{- with .Values.imaginary.service.loadBalancerIP }} + loadBalancerIP: {{ . }} + {{- end }} + ports: + - name: http + port: 80 + targetPort: http + {{- with .Values.imaginary.service.nodePort }} + nodePort: {{ . }} + {{- end }} + selector: + app.kubernetes.io/name: {{ include "nextcloud.name" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/component: imaginary +{{- end }} diff --git a/charts/nextcloud/values.yaml b/charts/nextcloud/values.yaml index 8f44ff98..2d82e452 100644 --- a/charts/nextcloud/values.yaml +++ b/charts/nextcloud/values.yaml @@ -208,6 +208,8 @@ nextcloud: swift.config.php: true # disables the web based updater as the default nextcloud docker image does not support it upgrade-disable-web.config.php: true + # -- imaginary support config + imaginary.config.php: false # Extra config files created in /var/www/html/config/ # ref: https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/config_sample_php_parameters.html#multiple-config-php-file @@ -600,6 +602,71 @@ dnsConfig: {} # - name: ndots # value: "1" +imaginary: + # -- Start Imgaginary + enabled: false + # -- Number of imaginary pod replicas to deploy + replicaCount: 1 + + image: + # -- Imaginary image registry + registry: docker.io + # -- Imaginary image name + repository: h2non/imaginary + # -- Imaginary image tag + tag: 1.2.4 + # -- Imaginary image pull policy + pullPolicy: IfNotPresent + # -- Imaginary image pull secrets + pullSecrets: [] + + # -- Additional annotations for imaginary + podAnnotations: {} + # -- Additional labels for imaginary + podLabels: {} + # -- imaginary resources + resources: {} + + # -- Optional security context for the Imaginary container + securityContext: + runAsUser: 1000 + runAsNonRoot: true + # allowPrivilegeEscalation: false + # capabilities: + # drop: + # - ALL + + # -- Optional security context for the Imaginary pod (applies to all containers in the pod) + podSecurityContext: {} + # runAsNonRoot: true + # seccompProfile: + # type: RuntimeDefault + + readinessProbe: + enabled: true + failureThreshold: 3 + successThreshold: 1 + periodSeconds: 10 + timeoutSeconds: 1 + livenessProbe: + enabled: true + failureThreshold: 3 + successThreshold: 1 + periodSeconds: 10 + timeoutSeconds: 1 + + service: + # -- Imaginary: Kubernetes Service type + type: ClusterIP + # -- Imaginary: LoadBalancerIp for service type LoadBalancer + loadBalancerIP: + # -- Imaginary: NodePort for service type NodePort + nodePort: + # -- Additional annotations for service imaginary + annotations: {} + # -- Additional labels for service imaginary + labels: {} + ## Prometheus Exporter / Metrics ## metrics: