diff --git a/charts/nextcloud/Chart.yaml b/charts/nextcloud/Chart.yaml index 1be2f6c8..a729d32c 100644 --- a/charts/nextcloud/Chart.yaml +++ b/charts/nextcloud/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: nextcloud -version: 5.2.3 +version: 5.3.0 appVersion: 29.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 a10e1917..8f8cbfaa 100644 --- a/charts/nextcloud/README.md +++ b/charts/nextcloud/README.md @@ -211,6 +211,7 @@ The following table lists the configurable parameters of the nextcloud chart and | `deploymentAnnotations` | Annotations to be added at 'deployment' level | not set | | `podLabels` | Labels to be added at 'pod' level | not set | | `podAnnotations` | Annotations to be added at 'pod' level | not set | +| `dnsConfig` | Custom dnsConfig for nextcloud containers | `{}` | ### Database Configurations diff --git a/charts/nextcloud/templates/deployment.yaml b/charts/nextcloud/templates/deployment.yaml index 51a79d67..db73a64d 100644 --- a/charts/nextcloud/templates/deployment.yaml +++ b/charts/nextcloud/templates/deployment.yaml @@ -396,3 +396,7 @@ spec: {{- if .Values.rbac.enabled }} serviceAccountName: {{ .Values.rbac.serviceaccount.name }} {{- end }} + {{- with .Values.dnsConfig }} + dnsConfig: + {{- toYaml . | nindent 8 }} + {{- end }} diff --git a/charts/nextcloud/values.yaml b/charts/nextcloud/values.yaml index 82de3596..6184a711 100644 --- a/charts/nextcloud/values.yaml +++ b/charts/nextcloud/values.yaml @@ -502,6 +502,12 @@ tolerations: [] affinity: {} +dnsConfig: {} +# Custom dns config for Nextcloud containers. +# You can for example configure ndots. This may be needed in some clusters with alpine images. +# options: +# - name: ndots +# value: "1" ## Prometheus Exporter / Metrics ##