-
Notifications
You must be signed in to change notification settings - Fork 271
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix-default-fsgroup
Signed-off-by: JesseBot <[email protected]>
- Loading branch information
Showing
19 changed files
with
862 additions
and
677 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Welcome | ||
|
||
Thanks for considering a contribution to this Nextcloud repository run by the community! Please make sure you review the [Code of Conduct](./CODE_OF_CONDUCT.md) before proceeding, and keep in mind that this repository is run by volunteers. | ||
|
||
# Pull Requests | ||
|
||
Before submitting a feature or fix PR, please make sure the following are done: | ||
|
||
1. Make sure all your commits are signed off. (Learn more the DCO [here](https://probot.github.io/apps/dco)) | ||
2. Any new or changed values are updated in the [values.yaml](./charts/nextcloud/values.yaml) and the [README.md](./charts/nextcloud/README.md) | ||
3. Bump the `version` in the [Chart.yaml](./charts/nextcloud/Chart.yaml) according to [Semantic Versioning](https://semver.org) which uses the format `major.minor.patch`. | ||
|
||
Then, please make sure you follow the [pull request template](.github/pull_request_template.md), so we can more quickly review. | ||
|
||
# Issues | ||
|
||
Please make sure you follow one of the [issue templates](.github/ISSUE_TEMPLATE) so we can better help troubleshoot with you. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
dependencies: | ||
- name: postgresql | ||
repository: https://charts.bitnami.com/bitnami | ||
version: 11.6.26 | ||
repository: oci://registry-1.docker.io/bitnamicharts | ||
version: 12.12.10 | ||
- name: mariadb | ||
repository: https://charts.bitnami.com/bitnami | ||
version: 11.0.14 | ||
repository: oci://registry-1.docker.io/bitnamicharts | ||
version: 12.2.9 | ||
- name: redis | ||
repository: https://charts.bitnami.com/bitnami | ||
version: 16.12.3 | ||
digest: sha256:26d3436ece41f0fbe00d0184c1cda7f5cccb7d49642982cfff49f113c11c0f34 | ||
generated: "2022-10-30T11:48:19.745391397+01:00" | ||
repository: oci://registry-1.docker.io/bitnamicharts | ||
version: 17.13.2 | ||
digest: sha256:92fe0891c35c2586cfe3b76154412c188bb75cc0a687e1d771fc4c1cf0f8973d | ||
generated: "2023-11-11T19:19:38.983179104+01:00" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
apiVersion: v2 | ||
name: nextcloud | ||
version: 3.6.0 | ||
appVersion: 26.0.1 | ||
version: 4.6.0 | ||
appVersion: 27.1.3 | ||
description: A file sharing server that puts the control and security of your own data back into your hands. | ||
keywords: | ||
- nextcloud | ||
|
@@ -23,14 +23,14 @@ maintainers: | |
email: [email protected] | ||
dependencies: | ||
- name: postgresql | ||
version: 11.6.* | ||
repository: https://charts.bitnami.com/bitnami | ||
version: 12.12.* | ||
repository: oci://registry-1.docker.io/bitnamicharts | ||
condition: postgresql.enabled | ||
- name: mariadb | ||
version: 11.0.* | ||
repository: https://charts.bitnami.com/bitnami | ||
version: 12.2.* | ||
repository: oci://registry-1.docker.io/bitnamicharts | ||
condition: mariadb.enabled | ||
- name: redis | ||
version: 16.12.* | ||
repository: https://charts.bitnami.com/bitnami | ||
version: 17.13.* | ||
repository: oci://registry-1.docker.io/bitnamicharts | ||
condition: redis.enabled |
Oops, something went wrong.