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 26)

NameRepoStarsVersionTimestamp
nextcloudharaldkoch/kochhaus-home1186.2.3a day ago
nextcloudbudimanjojo/home-cluster1656.2.35 days ago
nextcloudangelnu/k8s-gitops1535.5.62 months ago

Values

See the most popular values for this chart:

KeyTypes
boolean
nextcloud.host (26)
cloud.${SECRET_DOMAIN}
string
boolean, string
string
string
string
string
string
string
string
nextcloud.extraEnv[].name (14)
REDIS_HOST
REDIS_HOST_PORT
string
nextcloud.extraEnv[].value (13)
dragonfly.database.svc.cluster.local.
6379
string
string
nextcloud.extraEnv[].valueFrom.secretKeyRef.name (9)
nextcloud-secret
nextcloud-secret
nextcloud-secret
string
string
boolean
string
number, string
string
string
string
string
string
nextcloud.configs."proxy.config.php" (12)
<?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."misc.config.php" (6)
<?php $CONFIG = array ( 'default_phone_region' => 'CA', 'maintenance_window_start' => 2, ); ?>
string
nextcloud.configs."logging.config.php" (4)
<?php $CONFIG = array ( 'log_type' => 'file', 'logfile' => 'nextcloud.log', 'loglevel' => 0, 'logdateformat' => 'F d, Y H:i:s' );
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."bulkupload.config.php" (3)
<?php $CONFIG = array ( 'bulkupload.enabled' => false, );
string
nextcloud.configs."custom.config.php" (3)
<?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."gitops.config.php" (3)
<?php $CONFIG = array ( 'appstoreenabled' => true, #'appstoreurl' => 'https://apps.nextcloud.com/api/v0', 'mail_domain' => '${CLUSTER_DOMAIN}', );
string
nextcloud.configs."ingress.config.php" (3)
<?php $CONFIG = array ( 'overwrite.cli.url' => 'https://cloud.${SECRET_DOMAIN}', 'overwriteprotocol' => 'https', );
string
nextcloud.configs."local.config.php" (3)
<?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."redis.config.php" (3)
<?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."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."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."minio.config.php" (1)
<?php $CONFIG = array ( 'objectstore' => array( 'class' => '\\OC\\Files\\ObjectStore\\S3', 'arguments' => array( 'hostname' => 'minio.infrastructure.svc.cluster.local', 'port' => 9000, 'use_path_style' => true, 'bucket' => 'nextcloud-data', 'autocreate' => false, 'key' => getenv('S3_ACCESS_KEY'), 'secret' => getenv('S3_SECRET_KEY'), 'use_ssl' => false, ), ), );
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."s3.config.php" (1)
<?php $CONFIG = array ( 'objectstore' => array( 'class' => '\\OC\\Files\\ObjectStore\\S3', 'arguments' => array( 'hostname' => 's3.mapanare.net', 'port' => 443, 'use_path_style' => true, 'bucket' => 'nextcloud', 'autocreate' => false, 'key' => getenv('S3_ACCESS_KEY'), 'secret' => getenv('S3_SECRET_KEY'), 'use_ssl' => 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.extraInitContainers[].image (11)
ghcr.io/onedr0p/postgres-init:16
string
string
string
nextcloud.extraInitContainers[].args[] (1)
- -c
- until nc -w 1 -v $MYSQL_HOST:3306 || nc -w 1 -v $POSTGRES_HOST:5432; do echo "Waiting for database"; done
- -c
- until nc -w 1 -v $REDIS_HOST:$REDIS_HOST_PORT; do echo "Waiting for Redis"; done
string
string
nextcloud.extraInitContainers[].env[].name (1)
POSTGRES_HOST
REDIS_HOST
REDIS_HOST_PORT
string
nextcloud.extraInitContainers[].env[].value (1)
pgo-cluster-primary.default.svc
redis
6379
string
string
nextcloud.phpConfigs."uploadLimit.ini" (8)
upload_max_filesize = 16G post_max_size = 16G max_input_time = 3600 max_execution_time = 3600
string
nextcloud.phpConfigs."www.conf" (5)
[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.phpConfigs."override_max_file_size.ini" (2)
upload_max_filesize=16G post_max_size=16G
string
nextcloud.extraVolumeMounts[].mountPath (7)
/var/www/html/data/appdata_oc16gnntk93o/preview
string
string
string
string
nextcloud.extraVolumes[].nfs.path (5)
${NFS_VIDEO}
${NFS_SOFTWARE}
${NFS_MUSIC}
${NFS_DOWNLOADS}
string
nextcloud.extraVolumes[].nfs.server (5)
${NFS_SERVER}
${NFS_SERVER}
${NFS_SERVER}
${NFS_SERVER}
string
string
number
number
boolean
boolean
number
string
string
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
nextcloud.password (3)
${NEXTCLOUD_PASSWORD:=changeme}
string
nextcloud.username (3)
${NEXTCLOUD_USERNAME:=admin}
string
number
boolean
string
boolean
string
nextcloud.objectstore.s3.host (1)
s3.{SECRET_HOME_DOMAIN}
string
string
string
string
boolean
boolean
number
number
number
string
boolean
string
boolean
string
string
string
string
string
string
string
boolean
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
string
string
string
string
string
string
string
string
string
string
string
string
string
string
string
string
string
string
ingress.annotations."gethomepage.dev/widget.key" (1)
{{ `{{HOMEPAGE_VAR_NEXTCLOUD_TOKEN}}` }}
string
string
string
string
string
ingress.annotations."traefik.ingress.kubernetes.io/router.middlewares" (1)
networking-traefik-middleware-chain-no-auth@kubernetescrd
string
string
ingress.tls[].hosts[] (15)
- cloud.${SECRET_DOMAIN}
string
ingress.tls[].secretName (9)
${SECRET_DOMAIN_0//./-}-prod-tls
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
string
string
boolean, string
string
string
string
string
string
externalDatabase.host (17)
postgres16-rw.database.svc.cluster.local:5432
string
string
string
boolean
number
number
boolean
string
number
number
string
boolean
number
string
string
string
boolean
nginx.image.repository (5)
public.ecr.aws/nginx/nginx
string
string
string
string
string
boolean
number
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
number
number
number
number
number
boolean
number
number
number
number
number
string
string
string
string
string
string
string
number, string
boolean
number
number
number
number
number
boolean
boolean
boolean
metrics.image.repository (1)
docker.io/xperimental/nextcloud-exporter
string
string
boolean
boolean
postgresql.persistence.existingClaim (2)
nextcloud-postgresql-config-v1
string
string
string
string
string
string
string
string
boolean
string
string
string
string
string
string
boolean
number
number
number
boolean
string
number
string
string
string
number
string
lifecycle.postStartCommand[] (1)
- /bin/bash
- -c
- apt update -y && apt install ffmpeg -y
string
string
string
string
boolean
string
boolean
string
boolean
boolean
string
string
string
string
string
number