Skip to content

geonode-k8s-1.0.5

Compare
Choose a tag to compare
@github-actions github-actions released this 14 Nov 14:28
a74baea

Helm Chart for Geonode. Supported versions: Geonode: 4.1.3, Geoserver: 2.23.0, pyCSW: 2.6.1

Breaking changes

the addNginxIngressAnnotation:

geonode:  
  ingress:
    addNginxIngressAnnotation: false

variable in values yaml is not supported anymore. Instead use:

    annotations: {
        nginx.ingress.kubernetes.io/proxy-body-size: "2g",
        nginx.ingress.kubernetes.io/proxy-connect-timeout: "600",
        nginx.ingress.kubernetes.io/proxy-read-timeout: "600",
        nginx.ingress.kubernetes.io/proxy-send-timeout: "600"
    }

What's Changed

  • Allow configuration of lockdown from values;yaml by @AlexGacon in #111
  • Bugfix bool string confusion in lockdown variable by @mwallschlaeger in #115
  • Allow definition of additional CORS origin for nginx configuration by @AlexGacon in #113
  • Make ingress annotations configurable by @ridoo in #110

New Contributors

Full Changelog: geonode-k8s-1.0.4...geonode-k8s-1.0.5