Skip to content

Commit ffea18f

Browse files
Merge pull request #594 from nliechti/main
2 parents 5709ed0 + c7f2f80 commit ffea18f

4 files changed

Lines changed: 12 additions & 1 deletion

File tree

charts/nextcloud/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: nextcloud
3-
version: 5.2.3
3+
version: 5.3.0
44
appVersion: 29.0.4
55
description: A file sharing server that puts the control and security of your own data back into your hands.
66
keywords:

charts/nextcloud/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,7 @@ The following table lists the configurable parameters of the nextcloud chart and
211211
| `deploymentAnnotations` | Annotations to be added at 'deployment' level | not set |
212212
| `podLabels` | Labels to be added at 'pod' level | not set |
213213
| `podAnnotations` | Annotations to be added at 'pod' level | not set |
214+
| `dnsConfig` | Custom dnsConfig for nextcloud containers | `{}` |
214215

215216

216217
### Database Configurations

charts/nextcloud/templates/deployment.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -396,3 +396,7 @@ spec:
396396
{{- if .Values.rbac.enabled }}
397397
serviceAccountName: {{ .Values.rbac.serviceaccount.name }}
398398
{{- end }}
399+
{{- with .Values.dnsConfig }}
400+
dnsConfig:
401+
{{- toYaml . | nindent 8 }}
402+
{{- end }}

charts/nextcloud/values.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -502,6 +502,12 @@ tolerations: []
502502

503503
affinity: {}
504504

505+
dnsConfig: {}
506+
# Custom dns config for Nextcloud containers.
507+
# You can for example configure ndots. This may be needed in some clusters with alpine images.
508+
# options:
509+
# - name: ndots
510+
# value: "1"
505511

506512
## Prometheus Exporter / Metrics
507513
##

0 commit comments

Comments
 (0)