Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- Added documentation for cloud-native bucket access [#364](https://github.com/developmentseed/eoapi-k8s/pull/364)
- Removed unused testing variable and unused deploy script [#369](https://github.com/developmentseed/eoapi-k8s/pull/369)

### Added

- Added support for ConfigMap reference-based queryables configuration in addition to file-based queryables. Queryables can now be sourced from external ConfigMaps using `configMapRef`, from chart files using `file`, or a combination of both [#360](https://github.com/developmentseed/eoapi-k8s/pull/360)
- Added documentation for cloud-native bucket access [#364](https://github.com/developmentseed/eoapi-k8s/pull/364)
- Removed unused testing variable and unused deploy script [#369](https://github.com/developmentseed/eoapi-k8s/pull/369)

## Changed

- Unified scripts and removed Makefile, combined all into one CLI command `eoapi-cli` [#359](https://github.com/developmentseed/eoapi-k8s/pull/359)
- Added stac-auth-proxy for authentication and authorization on the STAC API [#358](https://github.com/developmentseed/eoapi-k8s/pull/358)
- Fixed call to run_queued_queries pgstac procedure call [#377](https://github.com/developmentseed/eoapi-k8s/pull/377)

## [0.8.0] - 2025-11-20

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ spec:
- "/bin/sh"
- "-c"
- |
psql -c "RUN run_queued_queries();"
psql -c "CALL run_queued_queries();"
env:
{{- include "eoapi.postgresqlEnv" . | nindent 14 }}
resources:
Expand Down
2 changes: 1 addition & 1 deletion charts/eoapi/tests/pgstac_config_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ tests:
value: "*/15 * * * *"
- matchRegex:
path: spec.jobTemplate.spec.template.spec.containers[0].command[2]
pattern: "RUN run_queued_queries\\(\\);"
pattern: "CALL run_queued_queries\\(\\);"

# Extent Updater Tests
- it: should create extent updater when update_collection_extent is false
Expand Down