diff --git a/charts/nextcloud/Chart.yaml b/charts/nextcloud/Chart.yaml index 3572be6c..026c17e9 100644 --- a/charts/nextcloud/Chart.yaml +++ b/charts/nextcloud/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: nextcloud -version: 6.5.2 +version: 6.6.2 appVersion: 30.0.4 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 6031ea4c..0bdbf83d 100644 --- a/charts/nextcloud/README.md +++ b/charts/nextcloud/README.md @@ -546,6 +546,8 @@ We include an optional external preview provider from [h2non/imaginary](https:// | `imaginary.image.pullSecrets` | Imaginary image pull secrets | `nil` | | `imaginary.podAnnotations` | Additional annotations for imaginary | `{}` | | `imaginary.podLabels` | Additional labels for imaginary | `{}` | +| `imaginary.nodeSelector` | Imaginary pod nodeSelector | `{}` | +| `imaginary.tolerations` | Imaginary pod tolerations | `[]` | | `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` | diff --git a/charts/nextcloud/templates/imaginary/deployment.yaml b/charts/nextcloud/templates/imaginary/deployment.yaml index 3845a2a0..ff154df4 100644 --- a/charts/nextcloud/templates/imaginary/deployment.yaml +++ b/charts/nextcloud/templates/imaginary/deployment.yaml @@ -85,4 +85,12 @@ spec: securityContext: {{- toYaml . | nindent 12 }} {{- end }} + {{- with .Values.imaginary.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.imaginary.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} {{- end }} diff --git a/charts/nextcloud/values.yaml b/charts/nextcloud/values.yaml index b4a39c60..a0b9c7d2 100644 --- a/charts/nextcloud/values.yaml +++ b/charts/nextcloud/values.yaml @@ -704,6 +704,11 @@ imaginary: podAnnotations: {} # -- Additional labels for imaginary podLabels: {} + # -- Imaginary pod nodeSelector + nodeSelector: {} + # -- Imaginary pod tolerations + tolerations: [] + # -- imaginary resources resources: {}