Skip to content

Commit 60b293d

Browse files
committed
adding image.flavor to values.yaml and clarifying image.tag in README configuration table with link to appVersion in Chart.yaml
1 parent f1d1dd7 commit 60b293d

3 files changed

Lines changed: 8 additions & 3 deletions

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: 4.2.0
3+
version: 4.2.1
44
appVersion: 27.0.2
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: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ The following table lists the configurable parameters of the nextcloud chart and
8484
|------------------------------------------------------------|----------------------------------------------------------------------------------------|----------------------------|
8585
| `image.repository` | nextcloud Image name | `nextcloud` |
8686
| `image.flavor` | nextcloud Image type (Options: apache, fpm) | `apache` |
87-
| `image.tag` | nextcloud Image tag | `appVersion` |
87+
| `image.tag` | nextcloud Image tag | [`appVersion`] |
8888
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
8989
| `image.pullSecrets` | Specify image pull secrets | `nil` |
9090
| `replicaCount` | Number of nextcloud pods to deploy | `1` |
@@ -481,3 +481,5 @@ After an upgrade, you may have missing indices. To fix this, you can run:
481481
# where NEXTCLOUD_POD is *your* nextcloud pod
482482
kubectl exec -it $NEXTCLOUD_POD -- su -s /bin/sh www-data -c "php occ db:add-missing-indices"
483483
```
484+
485+
[`appVersion`]: https://github.com/nextcloud/helm/blob/main/charts/nextcloud/Chart.yaml#L4 "appVersion on line 4 of Chart.yaml"

charts/nextcloud/values.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33
##
44
image:
55
repository: nextcloud
6-
# tag: 24.0.3-apache
6+
# tag defaults to appVersion in Chart.yaml
7+
tag: ""
8+
# flavor can be either fpm or apache. Set to fpm if using nginx
9+
flavor: ""
710
pullPolicy: IfNotPresent
811
# pullSecrets:
912
# - myRegistrKeySecretName

0 commit comments

Comments
 (0)