Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds support for setting Tolerations and Affinity + setting PVC classes for all PVCs for the Nextcloud app + update deps #304

Merged
merged 4 commits into from
Aug 18, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
168 changes: 82 additions & 86 deletions docs/assets/images/screenshots/help_text.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions docs/k8s_apps/nextcloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,17 @@ apps:
secret_keys:
# the FQDN that you want to host nextcloud on
hostname: "cloud.cooldogs.net"
# you can delete these if you're not using tolerations/affinity
toleration_key: ""
toleration_operator: ""
toleration_value: ""
toleration_effect: ""
# these are for node affinity, delete if not in use
affinity_key: ""
affinity_value: ""
hostname: ""
# the default phone region for users that don't have one set
# nextcloud needs this for new users or it throws a warning in the admin panel
default_phone_region: NL
# the default domain to send emails to user with
mail_domain: "domain.com"
Expand All @@ -206,11 +216,15 @@ apps:
# size of files pvc storage
files_storage: 100Gi
files_access_mode: ReadWriteOnce
# you can also comment this out and we'll use the global storage class
files_storage_class: "local-path"
# enable persistent volume claim for nextcloud config storage
config_pvc_enabled: 'false'
# size of config pvc storage
config_storage: 20Gi
config_access_mode: ReadWriteOnce
# you can also comment this out and we'll use the global storage class
config_storage_class: "local-path"
# choose S3 as the local primary object store from either: seaweedfs, or minio
# SeaweedFS - deploy SeaweedFS filer/s3 gateway
# MinIO - deploy MinIO vanilla helm chart
Expand All @@ -219,6 +233,8 @@ apps:
s3_endpoint: cloud-s3.cooldogs.net
# how large the backing pvc's capacity should be for minio or seaweedfs
s3_pvc_capacity: 10Gi
# you can also comment this out and we'll use the global storage class
s3_pvc_storage_class: local-path
s3_region: eu-west-1
# cronjob schedule to turn on nextcloud maintenance mode for backups
maintenance_mode_on_schedule: 30 23 * * *
Expand All @@ -227,6 +243,8 @@ apps:
# git repo to install the Argo CD app from
repo: "https://github.com/small-hack/argocd-apps"
# path in the argo repo to point to. Trailing slash very important!
# you can also use nextcloud/app_of_apps_with_tolerations/ if you have a
# special nextcloud node you want to apply affinity and tolerations for
path: "nextcloud/app_of_apps/"
# either the branch or tag to point at in the argo repo above
revision: "main"
Expand Down
Loading