No introduction found. Create it?
Install with:
helm repo add nextcloud https://nextcloud.github.io/helm/
helm install nextcloud nextcloud/nextcloud -f values.yaml
See examples from other people.
Name | Repo | Stars | Version | Timestamp |
---|---|---|---|---|
nextcloud | haraldkoch/kochhaus-home | 118 | 6.2.3 | a day ago |
nextcloud | budimanjojo/home-cluster | 165 | 6.2.3 | 5 days ago |
nextcloud | angelnu/k8s-gitops | 153 | 5.5.6 | 2 months ago |
See the most popular values for this chart:
Key | Types |
---|---|
boolean | |
nextcloud.host (26) cloud.${SECRET_DOMAIN} | string |
boolean, string | |
nextcloud.existingSecret.secretName (18) nextcloud-secret | string |
string | |
string | |
nextcloud.existingSecret.smtpPasswordKey (6) SMTP_PASSWORD | string |
nextcloud.existingSecret.smtpUsernameKey (6) SMTP_USERNAME | string |
string | |
nextcloud.existingSecret.tokenKey (3) serverinfo_token | string |
nextcloud.extraEnv[].name (14) REDIS_HOST | string |
nextcloud.extraEnv[].value (13) dragonfly.database.svc.cluster.local. | string |
nextcloud.extraEnv[].valueFrom.secretKeyRef.key (9) OIDC_LOGIN_CLIENT_SECRET | string |
nextcloud.extraEnv[].valueFrom.secretKeyRef.name (9) nextcloud-secret | string |
nextcloud.mail.domain (13) ${SECRET_DOMAIN} | string |
boolean | |
string | |
number, string | |
string | |
nextcloud.mail.smtp.host (8) smtp.migadu.com | 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 | |
nextcloud.extraInitContainers[].envFrom[].secretRef.name (10) nextcloud-secret | string |
nextcloud.extraInitContainers[].args[] (1) - -c | string |
string | |
nextcloud.extraInitContainers[].env[].name (1) POSTGRES_HOST | string |
nextcloud.extraInitContainers[].env[].value (1) pgo-cluster-primary.default.svc | string |
nextcloud.extraInitContainers[].imagePullPolicy (1) IfNotPresent | 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} | string |
nextcloud.extraVolumes[].nfs.server (5) ${NFS_SERVER} | string |
nextcloud.extraVolumes[].persistentVolumeClaim.claimName (3) nextcloud-previews-pvc | string |
number | |
number | |
boolean | |
boolean | |
number | |
nextcloud.securityContext.fsGroupChangePolicy (1) OnRootMismatch | string |
nextcloud.datadir (5) /var/www/data | 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 | |
nextcloud.objectstore.s3.bucket (1) nextcloud-data | string |
boolean | |
nextcloud.objectstore.s3.existingSecret (1) nextcloud-secret | string |
nextcloud.objectstore.s3.host (1) s3.{SECRET_HOME_DOMAIN} | string |
nextcloud.objectstore.s3.region (1) us-east-1 | string |
nextcloud.objectstore.s3.secretKeys.accessKey (1) S3_ACCESS_KEY | string |
nextcloud.objectstore.s3.secretKeys.secretKey (1) S3_SECRET_KEY | string |
boolean | |
boolean | |
number | |
number | |
number | |
nextcloud.strategy.type (1) RollingUpdate | string |
boolean | |
persistence.existingClaim (21) nextcloud | string |
boolean | |
persistence.nextcloudData.existingClaim (9) nextcloud-data | string |
persistence.nextcloudData.accessMode (4) ReadWriteMany | string |
string | |
string | |
persistence.accessMode (2) ReadWriteMany | string |
string | |
persistence.storageClass (2) longhorn-ssd | 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 | |
ingress.annotations."external-dns.alpha.kubernetes.io/target" (9) external.${SECRET_DOMAIN} | string |
ingress.annotations."hajimari.io/icon" (5) simple-icons:nextcloud | string |
ingress.annotations."cert-manager.io/cluster-issuer" (4) letsencrypt-production | string |
string | |
string | |
string | |
string | |
ingress.annotations."gethomepage.dev/icon" (3) nextcloud.png | string |
string | |
string | |
string | |
string | |
ingress.annotations."hajimari.io/info" (2) File and Calendar server | string |
string | |
string | |
string | |
string | |
string | |
string | |
string | |
string | |
ingress.annotations."gethomepage.dev/widget.key" (1) {{ `{{HOMEPAGE_VAR_NEXTCLOUD_TOKEN}}` }} | string |
string | |
ingress.annotations."gethomepage.dev/widget.url" (1) kumo.${SECRET_DOMAIN} | 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 | |
ingress.pathType (12) Prefix | string |
ingress.hosts[].host (1) cloud.${SECRET_DOMAIN} | string |
string | |
string | |
ingress.hosts[] (1) - nextcloud.${SECRET_DOMAIN} | string |
ingress.main.annotations."cert-manager.io/cluster-issuer" (1) letsencrypt-production | string |
string | |
ingress.main.annotations."external-dns.alpha.kubernetes.io/target" (1) ipv4.${SECRET_DOMAIN} | string |
string | |
ingress.main.annotations."traefik.ingress.kubernetes.io/router.middlewares" (1) networking-cloudflare-only@kubernetescrd | string |
boolean | |
ingress.main.hosts[].host (1) nextcloud.${SECRET_DOMAIN} | string |
string | |
string | |
string | |
ingress.main.tls[].hosts[] (1) - nextcloud.${SECRET_DOMAIN} | string |
ingress.main.tls[].secretName (1) nextcloud-tls | string |
boolean | |
externalDatabase.type (23) postgresql | string |
externalDatabase.database (19) nextcloud | string |
boolean, string | |
externalDatabase.existingSecret.passwordKey (18) INIT_POSTGRES_PASS | string |
externalDatabase.existingSecret.secretName (18) nextcloud-secret | string |
externalDatabase.existingSecret.usernameKey (18) INIT_POSTGRES_USER | string |
string | |
externalDatabase.existingSecret.hostKey (6) POSTGRES_HOST | string |
externalDatabase.host (17) postgres16-rw.database.svc.cluster.local:5432 | string |
externalDatabase.user (4) nextcloud | string |
externalDatabase.password (2) ${NEXTCLOUD_DBPASS} | string |
boolean | |
number | |
number | |
boolean | |
cronjob.schedule (3) */5 * * * * | string |
number | |
number | |
cronjob.securityContext.fsGroupChangePolicy (1) OnRootMismatch | string |
boolean | |
number | |
string | |
string | |
string | |
boolean | |
nginx.image.repository (5) public.ecr.aws/nginx/nginx | string |
nginx.image.tag (5) 1.27.2 | string |
string | |
string | |
string | |
boolean | |
number | |
boolean | |
boolean | |
string | |
string | |
string | |
string | |
boolean | |
redis.auth.existingSecret (2) nextcloud-secret | string |
redis.auth.existingSecretPasswordKey (2) REDIS_PASSWORD | string |
redis.auth.password (2) ${redis_password} | string |
redis.architecture (4) standalone | 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 | |
image.flavor (12) fpm-alpine | string |
image.repository (12) nextcloud | string |
image.tag (12) 30.0.1 | string |
image.pullPolicy (2) IfNotPresent | 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 | |
postgresql.postgresqlDatabase (2) nextcloud | string |
postgresql.postgresqlUsername (2) nextcloud | string |
postgresql.existingSecret (1) nextcloud | string |
string | |
postgresql.global.postgresql.postgresqlPassword (1) ${SECRET_NEXTCLOUD_DB_PASSWORD} | string |
string | |
boolean | |
postgresql.primary.persistence.existingClaim (1) nextcloud-postgres | string |
postgresql.secretKeys.adminPasswordKey (1) postgresql_password | string |
deploymentAnnotations."secret.reloader.stakater.com/reload" (4) nextcloud-secret | string |
string | |
env.TZ (3) UTC | string |
string | |
hpa.enabled (3) true | boolean |
number | |
number | |
number | |
boolean | |
string | |
number | |
fullnameOverride (2) nextcloud | string |
securityContext.fsGroupChangePolicy (2) OnRootMismatch | string |
string | |
number | |
string | |
lifecycle.postStartCommand[] (1) - /bin/bash | string |
mariadb.db.name (1) nextcloud | string |
mariadb.db.password (1) db-password | string |
mariadb.db.user (1) nextcloud | string |
boolean | |
mariadb.master.persistence.accessMode (1) ReadWriteOnce | string |
boolean | |
string | |
boolean | |
boolean | |
mariadb.rootUser.password (1) root-db-password | string |
podAnnotations."configmap.reloader.stakater.com/reload" (1) nextcloud-settings | string |
string | |
string | |
string | |
number |