Skip to content

v0.8.0

Choose a tag to compare

@pantierra pantierra released this 20 Nov 11:39
· 17 commits to main since this release
922925c

Breaking changes

Refactored eoapi-support chart

This release refactored eoapi-support into the main eoapi chart. This includes all monitoring, observability and a lot of the metrics functionality. If you use any of this, please check on the new configuration structre and options as described in docs/observability.md and docs/autoscaling.md.

Cleaned up to rely on default resource specification

Removed all default resource specifications from values.yaml and profile files. Users must now explicitly set resource limits/requests based on their infrastructure needs. This simplifies the chart and acknowledges that resource requirements vary greatly based on workload and infrastructure. If you were relying on the default resource specifications, add them to your values override file:

stac:
  settings:
    resources:
      requests:
        cpu: "512m"
        memory: "1024Mi"
      limits:
        cpu: "1024m"
        memory: "2048Mi"

Added

  • Exposed PgSTAC configuration options in Helm chart values (pgstacBootstrap.settings.pgstacSettings). These are dynamically applied via templated SQL during bootstrap. #340
    • Added queue_timeout, use_queue, and update_collection_extent settings for database performance tuning
    • Made existing context settings configurable (context, context_estimated_count, context_estimated_cost, context_stats_ttl)
    • Automatic queue processor CronJob created when use_queue is "true" (configurable schedule via queueProcessor.schedule)
    • Automatic extent updater CronJob created when update_collection_extent is "false" (configurable schedule via extentUpdater.schedule)
  • Added ConfigMap checksum annotations to automatically restart pods when configuration changes #344
  • Tests for autoscaling #343
  • Added tests for observability stack #342
  • Added validation to require postgrescluster.enabled: false when using external databases #346
  • Added a production.yaml profile #354
  • Added clarification about concurrency and db connection configuration. #356

Changed

  • Refactored eoapi-support into core eoapi chart #262
  • Made integration tests fail properly #341
  • Temporarily skipped VRT driver in GDALg to avoid OSGeo/gdal#12645 #243
  • Consistent naming of behavior field #345
  • Made all python tests comply with mypy strict validation #347
  • Improved documentation about access to grafana #348
  • Reorganized local development values files into structured profiles directory #351
  • Reorganized the helm chart templates files #352
  • Removed all default resource specifications from values.yaml #357

Dependencies

  • Updated Python to 3.14.0 #349
  • Updated actions/setup-python action to v6 #350
  • Updated Helm release prometheus to 27.45.0 #339
  • Updated Helm release knative-operator to v1.20.0 #337
  • Updated helm release grafana to 10.1.5 #361
  • Updated registry.k8s.io/ingress-nginx/kube-webhook-certgen Docker tag to v1.6.4 #332
  • Updated actions/checkout action to v5 #333
  • Updated actions/setup-node action to v6 #334
  • Updated Node.js to 24.11.0 #335
  • Updated tipg to v1.3.0 #355