nextcloud helm

No introduction found. Create it?

Install

Install with:

helm repo add nextcloud oci://ghcr.io/bjw-s-labs/charts/
helm install nextcloud nextcloud/nextcloud -f values.yaml

Examples

See examples from other people.

Top Repositories (3 out of 18)

NameRepoStarsVersionTimestamp
nextclouddrag0n141/home-ops659.3.016 hours ago
nextcloudharaldkoch/kochhaus-home1799.3.04 days ago
nextcloudbjw-s-labs/home-ops8559.3.0a month ago

Values

See the most popular values for this chart:

KeyTypes
boolean
string
string
string
string
string
string
string
number
number
number
boolean
number
string
string
string
string
cronjob.cronjob.command[] (1)
- /bin/bash
- /scripts/cron.sh
string
string
string
string
boolean
string
string
string
number
string
boolean
string
boolean
string
boolean
string
boolean
number
number
boolean
string
string
string
string
string
string
nextcloud.host (16)
nextcloud.${SECRET_DOMAIN}
string
boolean
string
string
number, string
string
string
nextcloud.mail.smtp.host (5)
smtp-relay.default.svc.cluster.local
string
string
string
nextcloud.extraEnv[].name (11)
REDIS_HOST
REDIS_HOST_PORT
string
nextcloud.extraEnv[].value (7)
dragonfly.database.svc.cluster.local
6379
string
nextcloud.extraEnv[].valueFrom.secretKeyRef.key (7)
REDIS_HOST
REDIS_HOST_PORT
OIDC_CLIENT_ID
OIDC_CLIENT_SECRET
OIDC_ISSUER
string
nextcloud.extraEnv[].valueFrom.secretKeyRef.name (7)
nextcloud-secret
nextcloud-secret
nextcloud-secret
nextcloud-secret
nextcloud-secret
string
nextcloud.extraInitContainers[].image (10)
ghcr.io/home-operations/postgres-init:18
string
string
string
nextcloud.extraInitContainers[].command[] (4)
- touch
- /usr/local/etc/php/conf.d/redis-session.ini
string
string
string
boolean
string
boolean
number
number
string
string
number
string
string
nextcloud.extraVolumes[].nfs.server (2)
nas01.${SECRET_DOMAIN_INT}
string
string
string
string
string
nextcloud.extraVolumeMounts[].mountPath (8)
/usr/local/etc/php/conf.d/redis-session.ini
string
string
string
boolean
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" (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.phpConfigs."zzz-pool.conf" (1)
[www] pm = dynamic pm.max_children = 30 pm.start_servers = 6 pm.min_spare_servers = 3 pm.max_spare_servers = 12 pm.max_requests = 500
string
nextcloud.configs."local.config.php" (7)
<?php $CONFIG = array( 'trusted_proxies' => array( '127.0.0.1', '10.0.0.0/8', ), 'forwarded_for_headers' => array('HTTP_X_FORWARDED_FOR'), 'default_phone_region' => 'DE', 'auth.bruteforce.protection.enabled' => true, 'maintenance_window_start' => 1, 'simpleSignUpLink.shown' => false, 'overwrite.cli.url' => 'https://files.albdev.cloud', );
string
nextcloud.configs."misc.config.php" (7)
<?php $CONFIG = array ( 'default_phone_region' => 'GB', 'maintenance_window_start' => 2, ); ?>
string
nextcloud.configs."proxy.config.php" (7)
<?php $CONFIG = array ( 'overwriteprotocol' => 'https', 'overwrite.cli.url' => 'https://cloud.${CLUSTER_DOMAIN}', 'overewritehost' => 'cloud.${CLUSTER_DOMAIN}', 'check_data_directory_permissions' => false, 'trusted_proxies' => array( 0 => '127.0.0.1', 1 => '${NETWORK_K8S_POD_CIDR}', 2 => '${NETWORK_K8S_SERVICE_CIDR}' ), 'forwarded_for_headers' => array('HTTP_X_FORWARDED_FOR'), 'trusted_domains' => array( 0 => '127.0.0.1', 1 => 'cloud.${CLUSTER_DOMAIN}' ) ); ?>
string
nextcloud.configs."redis.config.php" (4)
<?php $CONFIG = array( 'memcache.distributed' => '\OC\Memcache\Redis', 'memcache.locking' => '\OC\Memcache\Redis', 'redis' => array( 'host' => getenv('REDIS_HOST'), 'port' => getenv('REDIS_HOST_PORT') ?: 6379, 'dbindex' => getenv('REDIS_DATABASE') ?: 0, 'password' => getenv('REDIS_PASSWORD'), ), );
string
nextcloud.configs."oidc.config.php" (3)
<?php $CONFIG = array ( 'allow_user_to_change_display_name' => false, 'lost_password_link' => 'disabled', 'oidc_login_provider_url' => 'https://auth.${SECRET_DOMAIN}', 'oidc_login_client_id' => 'nextcloud', 'oidc_login_client_secret' => getenv('OIDC_CLIENT_SECRET'), 'oidc_login_auto_redirect' => true, 'oidc_login_end_session_redirect' => false, 'oidc_login_button_text' => 'Log in with Authelia', 'oidc_login_hide_password_form' => true, 'oidc_login_use_id_token' => false, 'oidc_login_attributes' => array( 'id' => 'preferred_username', 'name' => 'name', 'mail' => 'email', 'groups' => 'groups', 'is_admin' => 'is_nextcloud_admin', ), 'oidc_login_default_group' => 'oidc', 'oidc_login_use_external_storage' => false, 'oidc_login_scope' => 'openid profile email groups nextcloud_userinfo', 'oidc_login_proxy_ldap' => false, 'oidc_login_disable_registration' => false, 'oidc_login_redir_fallback' => false, '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, 'oidc_login_code_challenge_method' => 'S256', );
string
nextcloud.configs."sso.config.php" (3)
<?php $CONFIG = array ( 'oidc_login_provider_url' => 'https://authelia.${SECRET_DOMAIN}', 'oidc_login_client_id' => 'nextcloud', 'oidc_login_client_secret' => getenv('NEXTCLOUD_OAUTH_CLIENT_SECRET'), 'oidc_login_button_text' => 'Log in with Authelia', 'oidc_login_attributes' => array ( 'id' => 'preferred_username', 'name' => 'name', 'mail' => 'email', ), 'oidc_login_scope' => 'openid profile email', 'oidc_login_disable_registration' => true, 'oidc_login_password_authentication' => true, 'oidc_login_end_session_on_logout' => true, );
string
nextcloud.configs."collabora.config.php" (2)
<?php $CONFIG = array ( 'richdocuments' => array( 'wopi_url' => 'https://${SECRET_CLOUD_COLLABORA_DOMAIN}', ), );
string
nextcloud.configs."ingress.config.php" (2)
<?php $CONFIG = array ( 'overwrite.cli.url' => 'https://cloud.${SECRET_DOMAIN}', 'overwriteprotocol' => 'https', );
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."bulkupload.config.php" (1)
<?php $CONFIG = array ( 'bulkupload.enabled' => false, );
string
nextcloud.configs."caching.config.php" (1)
<?php $CONFIG = array ( 'memcache.local' => '\\OC\\Memcache\\APCu', 'memcache.distributed' => '\\OC\\Memcache\\Redis', 'memcache.locking' => '\\OC\\Memcache\\Redis', 'filelocking.enabled' => true, 'redis' => array( 'host' => 'dragonfly.database.svc.cluster.local', 'port' => 6379, 'timeout' => 0.0, 'password' => '', ), );
string
nextcloud.configs."custom.config.php" (1)
<?php $CONFIG = array ( 'overwriteprotocol' => 'https', 'overwrite.cli.url' => 'https://cloud.${SECRET_DOMAIN}', 'overwritehost' => 'cloud.${SECRET_DOMAIN}', 'filelocking.enabled' => 'true', 'default_phone_region' => 'DE', 'loglevel' => '2', 'enable_previews' => true, 'log_type' => 'syslog', 'maintenance_window_start' => 1, 'upgrade.disable-web' => false, 'trusted_proxies' => array ( 0 => '127.0.0.1', 1 => '10.42.0.0/16', 2 => '10.43.0.0/16', ), );
string
nextcloud.configs."dataperms.config.php" (1)
<?php $CONFIG = array ( 'check_data_directory_permissions' => false, );
string
nextcloud.configs."gitops.config.php" (1)
<?php $CONFIG = array ( 'appstoreenabled' => true, 'mail_domain' => '${SECRET_DOMAIN}', );
string
nextcloud.configs."notify_push.config.php" (1)
<?php $CONFIG = array ( 'notify_push' => array( 'base_endpoint' => 'https://${SECRET_CLOUD_DOMAIN}/push', ), );
string
nextcloud.configs."performance.config.php" (1)
<?php $CONFIG = array ( 'enabledPreviewProviders' => array( 'OC\Preview\PNG', 'OC\Preview\JPEG', 'OC\Preview\GIF', 'OC\Preview\BMP', 'OC\Preview\XBitmap', 'OC\Preview\MP3', 'OC\Preview\TXT', 'OC\Preview\MarkDown', 'OC\Preview\OpenDocument', 'OC\Preview\Krita', 'OC\Preview\HEIC', 'OC\Preview\PDF', 'OC\Preview\TIFF', 'OC\Preview\SVG', 'OC\Preview\MP4', 'OC\Preview\Movie', ), 'preview_max_x' => 2048, 'preview_max_y' => 2048, 'preview_max_scale_factor' => 1, 'preview_concurrency_all' => 4, 'jpeg_quality' => 60, );
string
nextcloud.configs."preview.config.php" (1)
<?php $CONFIG = array ( 'enabledPreviewProviders' => array( 'OC\Preview\PNG', 'OC\Preview\JPEG', 'OC\Preview\GIF', 'OC\Preview\BMP', 'OC\Preview\XBitmap', 'OC\Preview\MP3', 'OC\Preview\TXT', 'OC\Preview\MarkDown', 'OC\Preview\OpenDocument', 'OC\Preview\Krita', 'OC\Preview\HEIC', ), );
string
boolean
boolean
nextcloud.hooks.before-starting (5)
# disable unneceserry apps for appname in activity circles systemtags federation privacy \ nextcloud_announcements announcementcenter support survey_client \ user_status weather_status dashboard app_api do php occ app:disable "$appname" done
string
nextcloud.hooks.post-upgrade (5)
php occ maintenance:repair --include-expensive php occ db:add-missing-indices php occ db:add-missing-columns php occ db:add-missing-primary-keys
string
nextcloud.hooks.post-installation (3)
php occ maintenance:repair --include-expensive php occ db:add-missing-indices php occ db:add-missing-columns php occ db:add-missing-primary-keys
string
nextcloud.lifecycle.postStartCommand[] (4)
- /bin/sh
- -c
- cd /var/www/html; ./occ maintenance:repair --include-expensive; ./occ db:add-missing-indices; /bin/true
string
number, string
number, string
boolean
boolean
boolean
string
string
string
number, string
boolean
string, number
string
string
string
number
string
nextcloud.extraSidecarContainers[].command[] (1)
- /var/www/html/custom_apps/notify_push/bin/x86_64/notify_push
- /var/www/html/config/config.php
string
string
nextcloud.extraSidecarContainers[].env[].value (1)
http://nextcloud.self-hosted.svc:8080
7867
string
string
string
number
string
string
string
string
string
string
string
boolean
boolean
string
boolean
string
nextcloud.objectStorage.s3.host (1)
minio.storage.svc.cluster.local
string
number
string
string
boolean
boolean
string
string
number
string
string
string
string
boolean
boolean
boolean
string
boolean
string
string
string
string
boolean
string
string
string
string
persistence.config-file.globalMounts[].path (1)
/var/www/html/config/custom.config.php
/usr/local/etc/php/conf.d/php.ini
/usr/local/etc/php-fpm.d/www.conf
/etc/apache2/conf-available/remoteip.conf
string
persistence.config-file.globalMounts[].subPath (1)
custom.config.php
php.ini
www.conf
remoteip.conf
string
string
string
string
string
string
string
string
boolean
boolean
string
string
string
string
string
string
string
externalDatabase.host (10)
postgres16-rw.database.svc.cluster.local:5432
string
string
image.tag (8)
34.0.3-fpm-alpine
string
string
string
string
boolean
boolean
string
number
string
string
nginx.image.repository (4)
mirror.gcr.io/library/nginx
string
string
nginx.config.headers.Strict-Transport-Security (2)
max-age=15552000; includeSubDomains
string
boolean
nginx.config.serverBlockCustom (1)
client_max_body_size 10G; client_body_timeout 300s; fastcgi_buffers 64 4K; fastcgi_read_timeout 3600s;
string
boolean
number
number
number
number
number
string
number
string
string
string
string
boolean
httpRoute.hostnames[] (7)
- nextcloud.${SECRET_DOMAIN}
string
string
string
httpRoute.parentRefs[].group (1)
gateway.networking.k8s.io
string
string
string
string
string
string
string
httpRoute.rules[].filters[].urlRewrite.path.replaceFullPath (1)
/public.php?service=host-meta
/public.php?service=host-meta-json
string
httpRoute.rules[].filters[].urlRewrite.path.replacePrefixMatch (1)
/index.php/.well-known/webfinger
/index.php/.well-known/nodeinfo
string
httpRoute.rules[].filters[].urlRewrite.path.type (1)
ReplacePrefixMatch
ReplacePrefixMatch
ReplaceFullPath
ReplaceFullPath
string
string
string
string
string
string
httpRoute.annotations."gethomepage.dev/href" (1)
https://nextcloud.${SECRET_DOMAIN}
string
string
string
string
string
string
httpRoute.apiVersion (1)
gateway.networking.k8s.io/v1
string
string
boolean
boolean
externalRedis.host (5)
nextcloud-dragonfly
string
number, string
boolean
string
boolean
number
boolean
number
string
boolean
string
boolean
boolean
string
string
string
string
string
string
string
string
string
string
string
string
string
string
string
string
string
string
string
string
string
boolean
boolean
number
string
number
string
string
number
number
number
boolean
boolean
number
string
number
string
string
number
number
number
boolean
number
number
string
number
number
number
boolean
string
string
string
boolean
string
string
boolean
string
controllers.nextcloud.initContainers.copy-config.command[] (1)
- sh
- -c
- cp -r /usr/src/nextcloud/config/*.php /var/www/html/config/
string
string
controllers.nextcloud.initContainers.copy-config.image.tag (1)
35.0.1@sha256:9f82c7286cb1eba4d7d8a714499db591cf84923bb9cbbb9f35d13548a61af3eb
string
boolean
string
boolean
string
string
string
string
number
string
number
boolean
number
string
string
string
boolean
number
number
number
number
number
boolean
boolean
number
number
number
number
number
string
string
string
string
string
string
string
route.app.annotations."gethomepage.dev/widget.password" (1)
{{`{{HOMEPAGE_VAR_NEXTCLOUD_PASSWORD}}`}}
string
string
route.app.annotations."gethomepage.dev/widget.url" (1)
http://nextcloud.productivity.svc.cluster.local:80
string
route.app.annotations."gethomepage.dev/widget.username" (1)
{{`{{HOMEPAGE_VAR_NEXTCLOUD_USERNAME}}`}}
string
route.app.hostnames[] (2)
- nextcloud.${SECRET_DOMAIN}
string
string
string
string
string
number
string
route.app.rules[].filters[].responseHeaderModifier.add[].value (1)
max-age=31536000; includeSubDomains; preload
string
string
string
number
string
number
string
string
string
string
number
boolean
configMaps.config.data."custom.config.php" (1)
<?php $CONFIG = array( 'overwriteprotocol' => 'https', 'overwrite.cli.url' => 'https://storage.hyde.services', 'overwritehost' => 'storage.hyde.services', 'check_data_directory_permissions' => false, 'default_phone_region' => 'AU', 'trusted_proxies' => array( 0 => '127.0.0.1', 1 => '10.42.0.0/16', ), 'trusted_domains' => array( 0 => '127.0.0.1', 1 => 'storage.hyde.services', ), 'simpleSignUpLink.shown' => false, 'cache_path' => '/cache', 'forwarded_for_headers' => array('X-Forwarded-For'), 'maintenance_window_start' => 100, 'memcache.distributed' => '\OC\Memcache\Redis', 'memcache.locking' => '\OC\Memcache\Redis', 'redis' => array( 'host' => 'dragonfly.databases.svc.cluster.local', 'port' => 6379, 'dbindex' => 1, ), );
string
configMaps.config.data."php.ini" (1)
session.save_handler = redis session.save_path = "tcp://dragonfly.databases.svc.cluster.local:6379/1" redis.session.locking_enabled = 1 redis.session.lock_retries = -1 redis.session.lock_wait_time = 10000 upload_max_filesize = 16G post_max_size = 16G memory_limit = 512M max_execution_time = 3600
string
configMaps.config.data."remoteip.conf" (1)
RemoteIPHeader X-Forwarded-For RemoteIPInternalProxy 10.42.0.0/16
string
configMaps.config.data."www.conf" (1)
[www] listen = 127.0.0.1:9000 pm = dynamic pm.max_children = 50 pm.start_servers = 12 pm.min_spare_servers = 6 pm.max_spare_servers = 18
string
extraManifests[] (1)
- apiVersion: v1 kind: Service metadata: name: nextcloud-push labels: app.kubernetes.io/name: {{ include "nextcloud.name" . }} app.kubernetes.io/instance: {{ .Release.Name }} spec: type: ClusterIP ports: - name: push port: 7867 targetPort: 7867 protocol: TCP selector: app.kubernetes.io/name: {{ include "nextcloud.name" . }} app.kubernetes.io/instance: {{ .Release.Name }}
string
string
lifecycle.postStartCommand[] (1)
- /bin/bash
- /scripts/post-start.sh
string
string
string
boolean
number
boolean
string
boolean