nextcloud helm

No introduction found. Create it?

Install

Install with:

helm repo add nextcloud https://nextcloud.github.io/helm/
helm install nextcloud nextcloud/nextcloud -f values.yaml

Examples

See examples from other people.

Top Repositories (3 out of 23)

NameRepoStarsVersionTimestamp
nextcloudangelnu/k8s-gitops1445.5.42 days ago
nextcloudharaldkoch/kochhaus-home1095.5.43 days ago
nextcloudishioni/homelab-ops944.6.83 months ago

Values

See the most popular values for this chart:

KeyTypes
boolean
nextcloud.host (23)
cloud.${SECRET_DOMAIN}
string
boolean, string
string
string
string
string
string
string
string
string
string
string
string
boolean
string
string
number, string
string
string
string
string
string
number
nextcloud.extraEnv[].name (12)
REDIS_HOST
REDIS_HOST_PORT
string
nextcloud.extraEnv[].value (11)
dragonfly.database.svc.cluster.local
6379
string
nextcloud.extraEnv[].valueFrom.secretKeyRef.key (8)
S3_ACCESS_KEY
S3_SECRET_KEY
OIDC_CLIENT_ID
OIDC_CLIENT_PASSWORD
string
nextcloud.extraEnv[].valueFrom.secretKeyRef.name (8)
nextcloud-secret
nextcloud-secret
nextcloud-secret
string
nextcloud.phpConfigs."uploadLimit.ini" (11)
upload_max_filesize = 16G post_max_size = 16G max_input_time = 3600 max_execution_time = 3600
string
nextcloud.phpConfigs."www.conf" (6)
[www] user = www-data group = www-data listen = 127.0.0.1:9000 pm = dynamic pm.max_children = 57 pm.start_servers = 14 pm.min_spare_servers = 14 pm.max_spare_servers = 42 pm.max_requests = 500 pm.process_idle_timeout = 10s
string
nextcloud.configs."proxy.config.php" (10)
<?php $CONFIG = array ( 'trusted_proxies' => array( 0 => '127.0.0.1', 1 => '10.96.0.0/16', ), 'forwarded_for_headers' => array('HTTP_X_FORWARDED_FOR'), );
string
nextcloud.configs."redis.config.php" (5)
<?php $CONFIG = array ( 'memcache.local' => '\\OC\\Memcache\\Redis', 'memcache.distributed' => '\OC\Memcache\Redis', 'memcache.locking' => '\OC\Memcache\Redis', 'redis' => array( 'host' => getenv('REDIS_HOST'), 'port' => getenv('REDIS_HOST_PORT') ?: 6379, 'password' => getenv('REDIS_HOST_PASSWORD') ) );
string
nextcloud.configs."bulkupload.config.php" (4)
<?php $CONFIG = array ( 'bulkupload.enabled' => false, );
string
nextcloud.configs."custom.config.php" (4)
<?php $CONFIG = array ( 'overwriteprotocol' => 'https', 'overwrite.cli.url' => 'https://nextcloud.${SECRET_DOMAIN}', 'filelocking.enabled' => 'true', 'loglevel' => '2', 'enable_previews' => true, 'trusted_domains' => [ 'nextcloud', 'nextcloud.${SECRET_DOMAIN}' ] );
string
nextcloud.configs."local.config.php" (4)
<?php $CONFIG = array ( 'trusted_proxies' => array ( 0 => '127.0.0.1', 1 => '${CLUSTER_CIDR}', 2 => '${SERVICE_CIDR}', ), 'forwarded_for_headers' => array ( 0 => 'HTTP_X_FORWARDED_FOR', ), 'default_phone_region' => 'DE', 'overwrite.cli.url' => 'https://nextcloud.${SECRET_DOMAIN}', 'overwriteprotocol' => 'https', 'quota_include_external_storage' => 'false', 'skeletondirectory' => '', 'knowledgebaseenabled' => 'false', 'maintenance_window_start' => '1', 'enable_previews' => false, 'trashbin_retention_obligation' => 'auto, 30', 'auth.bruteforce.protection.enabled' => true, );
string
nextcloud.configs."sso.config.php" (4)
<?php $CONFIG = array ( 'allow_user_to_change_display_name' => false, 'lost_password_link' => 'disabled', 'oidc_login_client_id' => getenv('OIDC_CLIENT_ID'), 'oidc_login_client_secret' => getenv('OIDC_CLIENT_SECRET'), 'oidc_login_provider_url' => 'https://authelia.${SECRET_DOMAIN}', 'oidc_login_auto_redirect' => true, //login?noredir=1 'oidc_login_end_session_redirect' => true, 'oidc_login_button_text' => 'Log in with Authelia', 'oidc_login_hide_password_form' => true, 'oidc_login_use_id_token' => true, 'oidc_login_attributes' => array ( 'id' => 'preferred_username', 'name' => 'name', 'mail' => 'email', 'groups' => 'groups', 'login_filter' => 'groups', ), 'oidc_login_default_group' => 'nextcloud', 'oidc_login_filter_allowed_values' => array('Nextcloud'), 'oidc_login_use_external_storage' => false, 'oidc_login_scope' => 'openid profile email groups', 'oidc_login_proxy_ldap' => false, 'oidc_login_disable_registration' => false, 'oidc_login_redir_fallback' => false, 'oidc_login_tls_verify' => true, 'oidc_create_groups' => true, 'oidc_login_webdav_enabled' => false, 'oidc_login_password_authentication' => false, 'oidc_login_public_key_caching_time' => 86400, 'oidc_login_min_time_between_jwks_requests' => 10, 'oidc_login_well_known_caching_time' => 86400, 'oidc_login_update_avatar' => false, );
string
nextcloud.configs."gitops.config.php" (3)
<?php $CONFIG = array ( 'appstoreenabled' => true, #'appstoreurl' => 'https://apps.nextcloud.com/api/v0', 'mail_domain' => '${CLUSTER_DOMAIN}', );
string
nextcloud.configs."logging.config.php" (2)
<?php $CONFIG = array ( 'log_type' => 'file', 'logfile' => 'nextcloud.log', 'loglevel' => 1, 'logdateformat' => 'F d, Y H:i:s' );
string
nextcloud.configs."misc.config.php" (2)
<?php $CONFIG = array ( 'default_phone_region' => 'US', );
string
nextcloud.configs."previews.config.php" (2)
<?php $CONFIG = array ( 'preview_max_x' => 512, 'preview_max_y' => 512, 'enable_previews' => true, 'enabledPreviewProviders' => array ( 0 => 'OC\\Preview\\TXT', 1 => 'OC\\Preview\\Image', 2 => 'OC\\Preview\\Movie', 3 => 'OC\\Preview\\MP4', 4 => 'OC\\Preview\\HEIC', ), 'previewgenerator' => array ( 'squareSizes' => 256, 'widthSizes' => 512, 'heightSizes' => 512, ), );
string
nextcloud.configs."s3.config.php" (2)
<?php $CONFIG = array ( 'objectstore' => array( 'class' => '\\OC\\Files\\ObjectStore\\S3', 'arguments' => array( 'hostname' => 's3.${PRIVATE_DOMAIN}', 'port' => 443, 'use_path_style' => true, 'bucket' => getenv('S3_ACCESS_KEY'), 'autocreate' => false, 'key' => getenv('S3_ACCESS_KEY'), 'secret' => getenv('S3_SECRET_KEY'), 'use_ssl' => true, ), ), );
string
nextcloud.configs."auth.config.php" (1)
<?php $CONFIG = array ( 'allow_user_to_change_display_name' => false, 'lost_password_link' => 'disabled', 'oidc_login_provider_url' => 'https://auth.${ROOT_DOMAIN}', 'oidc_login_client_id' => 'nextcloud', 'oidc_login_client_secret' => getenv('OIDC_LOGIN_CLIENT_SECRET'), 'oidc_login_auto_redirect' => false, 'oidc_login_end_session_redirect' => false, 'oidc_login_button_text' => 'Log in with Authelia', 'oidc_login_hide_password_form' => false, 'oidc_login_use_id_token' => true, 'oidc_login_attributes' => array ( 'id' => 'preferred_username', 'name' => 'name', 'mail' => 'email', 'groups' => 'groups', ), 'oidc_login_default_group' => 'oidc', 'oidc_login_use_external_storage' => false, 'oidc_login_scope' => 'openid profile email groups', 'oidc_login_proxy_ldap' => false, 'oidc_login_disable_registration' => true, 'oidc_login_redir_fallback' => false, 'oidc_login_alt_login_page' => 'assets/login.php', 'oidc_login_tls_verify' => true, 'oidc_create_groups' => false, 'oidc_login_webdav_enabled' => false, 'oidc_login_password_authentication' => false, 'oidc_login_public_key_caching_time' => 86400, 'oidc_login_min_time_between_jwks_requests' => 10, 'oidc_login_well_known_caching_time' => 86400, 'oidc_login_update_avatar' => false, );
string
nextcloud.configs."ingress.config.php" (1)
<?php $CONFIG = array ( 'overwrite.cli.url' => 'https://cloud.${SECRET_DOMAIN}', 'overwriteprotocol' => 'https', );
string
nextcloud.configs."oidc.config.php" (1)
<?php $CONFIG = array ( // Some Nextcloud options that might make sense here 'allow_user_to_change_display_name' => false, 'lost_password_link' => 'disabled', 'overwriteprotocol' => 'https', // URL of provider. All other URLs are auto-discovered from .well-known 'oidc_login_provider_url' => 'https://sso.janz.digital/auth/realms/Janz', // Client ID and secret registered with the provider 'oidc_login_client_id' => 'nextcloud', 'oidc_login_client_secret' => getenv('OIDC_CLIENT_SECRET'), // Automatically redirect the login page to the provider 'oidc_login_auto_redirect' => true, // Redirect to this page after logging out the user 'oidc_login_logout_url' => 'https://sso.janz.digital/auth/realms/janz/protocol/openid-connect/logout', // Login button text 'oidc_login_button_text' => 'Log in with Janz SSO', 'oidc_login_hide_password_form' => false, 'oidc_login_disable_registration' => false, 'oidc_login_attributes' => array ( 'id' => 'preferred_username', 'mail' => 'email', ), 'oidc_login_redir_fallback' => true, );
string
nextcloud.configs."smtp-noverify.config.php" (1)
<?php $CONFIG = array( 'mail_smtpstreamoptions' => array( 'ssl' => array( 'allow_self_signed' => true, 'verify_peer' => false, 'verify_peer_name' => false ) ) );
string
nextcloud.configs."timezone.config.php" (1)
<?php $CONFIG = array ( 'default_timezone' => 'America/Santiago', );
string
nextcloud.configs."user.config.php" (1)
<?php $CONFIG = array ( 'default_language' => 'de', 'default_locale' => 'de_DE', 'default_phone_region' => 'DE', 'default_timezone' => 'Europe/Berlin', 'maintenance_window_start' => 1, );
string
string
nextcloud.extraInitContainers[].image (10)
ghcr.io/onedr0p/postgres-init:16.3
string
string
string
nextcloud.extraVolumeMounts[].mountPath (8)
/var/www/html/data/appdata_oc16gnntk93o/preview
string
string
string
string
nextcloud.extraVolumes[].nfs.path (6)
${NFS_VIDEO}
${NFS_SOFTWARE}
${NFS_MUSIC}
${NFS_DOWNLOADS}
string
nextcloud.extraVolumes[].nfs.server (6)
${NFS_SERVER}
${NFS_SERVER}
${NFS_SERVER}
${NFS_SERVER}
string
boolean
string
number, string
number, string
boolean
number
string
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
string
nextcloud.password (3)
${NEXTCLOUD_PASSWORD:=changeme}
string
string
nextcloud.username (3)
${NEXTCLOUD_USERNAME:=admin}
string
number
boolean
boolean
string
boolean
boolean
string
nextcloud.objectstore.s3.host (1)
s3.{SECRET_HOME_DOMAIN}
string
boolean
number
string
string
string
string
boolean
boolean
boolean
boolean
number
number
number
boolean
string
boolean
string
string
string
string
string
string
string
boolean
string
boolean, string
string
string
string
string
string
string
externalDatabase.host (14)
postgres-rw.database.svc.cluster.local
string
string
string
boolean
boolean
boolean
ingress.tls[].hosts[] (19)
- cloud.${SECRET_DOMAIN}
string
ingress.tls[].secretName (8)
${SECRET_DOMAIN/./-}-production-tls
string
ingress.annotations."nginx.ingress.kubernetes.io/server-snippet" (18)
server_tokens off; proxy_hide_header X-Powered-By; rewrite ^/.well-known/webfinger /index.php/.well-known/webfinger last; rewrite ^/.well-known/nodeinfo /index.php/.well-known/nodeinfo last; rewrite ^/.well-known/host-meta /public.php?service=host-meta last; rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json; location = /.well-known/carddav { return 301 $scheme://$host/remote.php/dav; } location = /.well-known/caldav { return 301 $scheme://$host/remote.php/dav; } location = /robots.txt { allow all; log_not_found off; access_log off; } location ~ ^/(?:build|tests|config|lib|3rdparty|templates|data)/ { deny all; } location ~ ^/(?:autotest|occ|issue|indie|db_|console) { deny all; }
string
string
string
string
string
string
ingress.annotations."nginx.ingress.kubernetes.io/cors-allow-headers" (5)
X-Forwarded-For, X-Real-IP, X-Frame-Options, X-Content-Type-Options, X-Forwarded-Proto
string
string
string
string
string
string
string
string
string
string
string
string
string
string
string
string
string
string
string
string
string
string
string
string
ingress.annotations."nginx.ingress.kubernetes.io/cors-allow-methods" (1)
GET, PUT, POST, DELETE, PATCH, OPTIONS, PROPFIND
string
ingress.annotations."traefik.ingress.kubernetes.io/router.middlewares" (1)
networking-traefik-middleware-chain-no-auth@kubernetescrd
string
string
string
string
ingress.hosts[].host (1)
cloud.${SECRET_DOMAIN}
string
string
string
ingress.hosts[] (1)
- nextcloud.${SECRET_DOMAIN}
string
string
string
string
string
string
boolean
ingress.main.hosts[].host (1)
nextcloud.${SECRET_DOMAIN}
string
string
string
string
ingress.main.tls[].hosts[] (1)
- nextcloud.${SECRET_DOMAIN}
string
string
boolean
number
number
boolean
string
string, number
number
string
boolean
number
boolean
number
number
number
number
number
boolean
number
number
number
number
number
string
string
string
string
boolean
boolean
string
string
string
string
boolean
string
string
redis.auth.password (2)
${redis_password}
string
string
boolean
number
redis.commonConfiguration (2)
# Enable AOF https://redis.io/topics/persistence#append-only-file appendonly yes # Disable RDB persistence, AOF persistence already enabled. save "" maxmemory 94371840 maxmemory-policy allkeys-lru
string
boolean
string
string
string
boolean
boolean
redis.password (1)
redis-password
string
string
string
string
boolean
boolean
boolean
nginx.image.repository (5)
public.ecr.aws/nginx/nginx
string
string
string
string
string
string, number
string
string
string
string, number
boolean
number
number
number
number
number
boolean
boolean
boolean
metrics.image.repository (1)
docker.io/xperimental/nextcloud-exporter
string
string
string
string
boolean
boolean
postgresql.persistence.existingClaim (2)
nextcloud-postgresql-config-v1
string
string
string
string
string
string
string
number
string
string
boolean
number
number
number
lifecycle.postStartCommand[] (2)
- /bin/bash
- -c
- apt update -y && apt install ffmpeg -y
string
string
string
string
string
string
boolean
string
boolean
string
boolean
boolean
string
boolean
string
string
string
string
number
boolean
boolean
rbac.serviceaccount.name (1)
nextcloud-serviceaccount
string