Skip to content

Latest commit

 

History

History
58 lines (48 loc) · 1.48 KB

File metadata and controls

58 lines (48 loc) · 1.48 KB

Helm suite for complete geoserver - polygon parts

Home

Main Features

Layer Auto-Config

  • On deploy, once geoserver api is up, side-car will run and configure the WFS layer definitions.
  • Readiness will be valid when it detects the featureDescribe of the polygon parts layer.

B2B Support

  • Deployment includes infra-nginx sub-chart to handle authentication and routing

Important

PROXY_BASE_URL must be changed according to deployed route.

Deployment

  1. create charts:
helm dependency build .
  1. deploy:
helm install deployment-name .

Caution

Validate route section at values false if you deploy with nginx.

Dev-local mode

  1. configure route on .Value level to true
route:
  enabled: true
  tls: false
  path: /geoserver
  1. configure PROXY_BASE_URL:
extraGeoserverEnv: |
  - name: COMMUNITY_EXTENSIONS
    value: "cog-plugin"
  - name: JAVA_OPTS
    value: '-DALLOW_ENV_PARAMETRIZATION=true'
  - name: PROXY_BASE_URL
    value: /geoserver
  1. validate nginx scope disables:
nginx:
  enabled: false