You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| geonode.general.externalScheme | string |`"http"`| external ingress schema. If set to 'https', make sure to configure TLS either by configuring tls certificate or using cert-manager. Available options: (http|https) |
54
+
| geonode.general.extraEnvVars | object |`{}`| extraEnvVars can be used to add geonode environment variable configuration from https://docs.geonode.org/en/master/basic/settings/index.html which are not available in the helm chart. Where the key is the env-var name comming from the geonode docs. |
54
55
| geonode.general.force_reinit | bool |`true`| set force reinit true so that changing passwords etc. in Values.yaml will take effect after restarting the pod this on the other hand will increase pod initializing time, only change if you know what you are doing |
55
56
| geonode.general.freetext_keywords_readonly | bool |`false`| FREETEXT_KEYWORDS_READONLY Make Free-Text Keywords writable from users. Or read-only when set to False. |
56
57
| geonode.general.geonode_project | string |`"geonode"`| the name of the geonode project used (keep geonode for base image) |
57
-
| geonode.general.max_document_size | int |`10`| max upload document size in MB |
| geonode.general.ogc_request_max_retries | int |`1`| OGC_REQUEST_MAX_RETRIES |
60
60
| geonode.general.ogc_request_pool_connections | int |`10`| OGC_REQUEST_POOL_CONNECTIONS |
61
61
| geonode.general.ogc_request_pool_maxsize | int |`10`| OGC_REQUEST_POOL_MAXSIZE |
62
62
| geonode.general.ogc_request_timeout | int |`600`| OGC_REQUEST_TIMEOUT |
63
63
| geonode.general.publishing.admin_moderate_uploads | bool |`false`| ADMIN_MODERATE_UPLOADS When this variable is set to True, every uploaded resource must be approved before becoming visible to the public users. Until a resource is in PENDING APPROVAL state, only the superusers, owner and group members can access it, unless specific edit permissions have been set for other users or groups. A Group Manager can approve the resource, but he cannot publish it whenever the setting RESOURCE_PUBLISHING is set to True. Otherwise, if RESOURCE_PUBLISHING (helm: resource_publishing_by_staff) is set to False, the resource becomes accessible as soon as it is approved. |
64
64
| geonode.general.publishing.resource_publishing_by_staff | bool |`false`| RESOURCE_PUBLISHING By default, the GeoNode application allows GeoNode staff members to publish/unpublish resources. By default, resources are published when created. When this setting is set to True the staff members will be able to unpublish a resource (and eventually publish it back). |
65
+
| geonode.general.session_expired_control_enabled | string |`"True"`| SESSION_EXPIRED_CONTROL_ENABLED (https://docs.geonode.org/en/master/basic/settings/index.html#session-expired-control-enabled) By enabling this variable, a new middleware geonode.security.middleware.SessionControlMiddleware will be added to the MIDDLEWARE_CLASSES. The class will check every request to GeoNode and it will force a log out whenever one of the following conditions occurs:: Whether the uploaded resources should be public by default. |
65
66
| geonode.general.settings_additions | string |`""`| add additional settings to the settings py. This code will be appended to the end of the geonode settings.py |
66
67
| geonode.general.settings_module | string |`"geonode.settings"`| the settings module to load |
| geonode.haystack.search_results_per_page | string |`"200"`| hystack results per page |
68
+
| geonode.general.upload.anonymous_download_permission | string |`"True"`| DEFAULT_ANONYMOUS_DOWNLOAD_PERMISSION (https://docs.geonode.org/en/master/basic/settings/index.html#default-anonymous-download-permission) Whether the uploaded resources should downloadable by default. |
69
+
| geonode.general.upload.anonymous_view_permission | string |`"True"`| DEFAULT_ANONYMOUS_VIEW_PERMISSION (https://docs.geonode.org/en/master/basic/settings/index.html#default-anonymous-view-permission) Whether the uploaded resources should be public by default. |
70
+
| geonode.general.upload.document_size | int |`60`| max upload document size in MB |
71
+
| geonode.general.upload.max_parallel_uploads_per_user | int |`10`| DEFAULT_MAX_PARALLEL_UPLOADS_PER_USER (https://docs.geonode.org/en/master/basic/settings/index.html#default-max-parallel-uploads-per-user) Default: 5 When uploading datasets, this value limits the number os parallel uploads. The parallelism limit is set during installation using the value of this variable. After installation, only an user with administrative rights can change it. These limits can be changed in the admin panel or accessing by api. |
72
+
| geonode.general.upload.size | string |`"2097152000"`| DEFAULT_MAX_UPLOAD_SIZE (https://docs.geonode.org/en/master/basic/settings/index.html#default-max-upload-size) Important: This value must be syncronized with nginx.maxClientBodySize Default: 2097152000 (2000 MB in bytes) (104857600 = 100 MB) When uploading datasets or uploading documents, the total size of the uploaded files is verified. The size limits are set during installation using the value of this variable. After installation, only an user with administrative rights can change it. These limits can be changed in the admin panel or accessing by api. |
71
73
| geonode.image.name | string |`"geonode/geonode"`| used geonode image |
72
74
| geonode.image.tag | string |`"4.4.1"`| tag of used geonode image |
| geonode.mail.tls | bool |`true`| activate tls for geonode mail (only tls or ssl can be true not both) |
100
102
| geonode.mail.use_ssl | bool |`false`| enable ssl for geonode mail (only tls or ssl can be true not both) |
101
103
| geonode.memcached.backend | string |`"django.core.cache.backends.memcached.PyLibMCCache"`| memcached backend to use if geonode ">=4.3.0" use django.core.cache.backends.memcached.PyLibMCCache before use django.core.cache.backends.memcached.MemcachedCache |
102
-
| geonode.memcached.enabled | bool |`true`| enable memcache, this will spawn one or more seperate memcache container(s) and configure django geonode repsectivly. Dynamic caching (see https://docs.djangoproject.com/en/4.0/topics/cache/)|
104
+
| geonode.memcached.enabled | bool |`true`| enable memcache, this will spawn one or more seperate memcache container(s) |
105
+
| geonode.memcached.enabled_geonode | bool |`false`| set the MEMCAHED_ENABLED env var for GeoNode (django). Dynamic caching (see https://docs.djangoproject.com/en/4.0/topics/cache/)|
103
106
| geonode.memcached.lock_expire | string |`"3600"`| memcached lock expire time |
| geonode.replicaCount | int |`1`| number of geonode replicas (! not working properly yet) |
112
110
| geonode.resources.limits.cpu | int |`2`| limit cpu as in resource.requests.cpu (https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/)|
| nginx.container_name | string |`"nginx"`| nginx container name |
181
179
| nginx.external_cors.domain | string |`""`| Target domain for CORS |
182
180
| nginx.external_cors.enabled | bool |`false`| Add Access-Control-Allow-Origin directive to allow integration from an external domain |
181
+
| nginx.geoServerMaxClientBodySize | string |`"10G"`| maximum upload size for geoserver in nginx configuration. Changes here may also require changes in geoserver configuration of the individual services (WFS, ...) |
182
+
| nginx.geonodeMaxClientBodySize | string |`nil`| max file upload size for geonode upload. Only set this value if it should be different from geonode.general.upload.size. to use e.g. if geonode.general.upload.document_size > geonode.general.upload.size |
| nginx.pycswMaxClientBodySize| string |`"10M"`|maximum upload size for pycsw server in nginx configuration. Only used if `.Values.pycsw.enabled: true`.|
188
188
| nginx.replicaCount | int |`1`| nginx container replicas |
189
189
| nginx.resources.limits.cpu | string |`"800m"`| limit cpu as in resource.requests.cpu (https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/)|
190
190
| nginx.resources.limits.memory | string |`"1Gi"`| limits memory as in resource.limits.memory (https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/)|
0 commit comments