File tree Expand file tree Collapse file tree 4 files changed +16
-1
lines changed Expand file tree Collapse file tree 4 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
name : nextcloud
3
- version : 6.5 .2
3
+ version : 6.6 .2
4
4
appVersion : 30.0.4
5
5
description : A file sharing server that puts the control and security of your own data back into your hands.
6
6
keywords :
Original file line number Diff line number Diff line change @@ -546,6 +546,8 @@ We include an optional external preview provider from [h2non/imaginary](https://
546
546
| `imaginary.image.pullSecrets` | Imaginary image pull secrets | `nil` |
547
547
| `imaginary.podAnnotations` | Additional annotations for imaginary | `{}` |
548
548
| `imaginary.podLabels` | Additional labels for imaginary | `{}` |
549
+ | `imaginary.nodeSelector` | Imaginary pod nodeSelector | `{}` |
550
+ | `imaginary.tolerations` | Imaginary pod tolerations | `[]` |
549
551
| `imaginary.resources` | imaginary resources | `{}` |
550
552
| `imaginary.securityContext` | Optional security context for the Imaginary container | `nil` |
551
553
| `imaginary.podSecurityContext` | Optional security context for the Imaginary pod (applies to all containers in the pod) | `nil` |
Original file line number Diff line number Diff line change 85
85
securityContext :
86
86
{{- toYaml . | nindent 12 }}
87
87
{{- end }}
88
+ {{- with .Values.imaginary.nodeSelector }}
89
+ nodeSelector :
90
+ {{- toYaml . | nindent 8 }}
91
+ {{- end }}
92
+ {{- with .Values.imaginary.tolerations }}
93
+ tolerations :
94
+ {{- toYaml . | nindent 8 }}
95
+ {{- end }}
88
96
{{- end }}
Original file line number Diff line number Diff line change @@ -704,6 +704,11 @@ imaginary:
704
704
podAnnotations : {}
705
705
# -- Additional labels for imaginary
706
706
podLabels : {}
707
+ # -- Imaginary pod nodeSelector
708
+ nodeSelector : {}
709
+ # -- Imaginary pod tolerations
710
+ tolerations : []
711
+
707
712
# -- imaginary resources
708
713
resources : {}
709
714
You can’t perform that action at this time.
0 commit comments