zalf-rdm / geonode-k8s

A Kubernetes helm chart for the geospacial webapplication Geonode
https://geonode-k8s.readthedocs.io/en/latest/
GNU General Public License v2.0
12 stars 7 forks source link

Add geonode setting configurations #19

Closed mwallschlaeger closed 1 year ago

mwallschlaeger commented 1 year ago

Closes #

📑 Description

added following new values:

display:
  # -- DISPLAY_RATINGS If set to False ratings are hidden.
  rating: true
  # -- DISPLAY_COMMENTS If set to False comments are hidden.
  comments: true
  # -- DISPLAY_SOCIAL If set to False social sharing is hidden.
  social: true
  # -- DISPLAY_WMS_LINKS If set to False direct WMS link to GeoServer is hidden.
  wms_link: true
  # -- DISPLAY_ORIGINAL_DATASET_LINK If set to False original dataset download is hidden.
  dataset_link: true

publishing:
  # -- 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).
  resource_publishing_by_staff: 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.
  admin_moderate_uploads: false

sentry:
  # -- enable sentry integration for geonode
  enabled: True
  # -- sentry dsn url
  dsn: ""
  # -- sentry environment
  environment: "development"
  # -- sentry build number
  build_number: 0

ℹ Additional Information