- The helm provides ready to use polygon parts serving by WFS protocol
- The initialization use side car to prepare the geoserver to be ready to uses with all relevant data
- Based on kartoza/helm for geoserver
- Use kartoza based geoserver images geoserver-os from mapcolonies github
- 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.
- Deployment includes infra-nginx sub-chart to handle authentication and routing
Important
PROXY_BASE_URL must be changed according to deployed route.
- create charts:
helm dependency build .- deploy:
helm install deployment-name .Caution
Validate route section at values false if you deploy with nginx.
- configure route on .Value level to true
route:
enabled: true
tls: false
path: /geoserver- 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- validate nginx scope disables:
nginx:
enabled: false