feat: Add helm README.md and unit tests#117
Merged
Conversation
84b63a4 to
5c59e2d
Compare
alukach
reviewed
Dec 17, 2025
| ## Installation | ||
|
|
||
| ```bash | ||
| helm install stac-auth-proxy ./stac-auth-proxy \ |
Member
There was a problem hiding this comment.
Is it possibly to publish and reference helm charts externally? Or is downloading locally the way that it's done?
Contributor
Author
There was a problem hiding this comment.
Both is possible. I left the local install in the very reduced README.md (for developers only). And the docs state the externally referenced published version.
5c59e2d to
e30a97b
Compare
alukach
approved these changes
Jan 6, 2026
pantierra
added a commit
that referenced
this pull request
Jan 13, 2026
This PR adds the following authorization options to the helm chart:
```
stac-auth-proxy:
enabled: true
authorization:
route:
# mode: "default" (default, DEFAULT_PUBLIC), "custom", "private", "disabled"
mode: "default"
# Custom endpoint configurations (only used when mode: "custom")
publicEndpoints: {}
# Example:
# "^/collections$": ["GET"]
# "^/search$": ["GET", "POST"]
privateEndpoints: {}
# Example:
# "^/collections$": [["POST", "collection:create"]]
# "^/collections/([^/]+)/items$": [["POST", "item:create"]]
record:
# mode: "disabled" (default), "custom", "opa"
mode: "disabled"
# Custom filters configurations (only used when mode: "custom")
custom:
filtersFile: "data/custom_filters.py"
# OPA configuration (only used when mode: "opa")
opa:
url: "http://opa:8181/"
policy: "stac/items/allow"
```
Manual configuration via environment variables and manual mount of
filter files is still possible.
Moved kubernetes documentation into it's own file and added
documentation for the auth options provided by the helm charts with this
PR.
The PR requires #114 ~and #117~.
I open this as a draft, as I expect us to have a few iterations and
conversations about this.
alukach
pushed a commit
that referenced
this pull request
Jan 14, 2026
🤖 I have created a release *beep* *boop* --- ## [0.11.1](v0.11.0...v0.11.1) (2026-01-13) ### Features * Add helm chart auth options. ([#118](#118)) ([cfae34b](cfae34b)) * Add helm README.md and unit tests ([#117](#117)) ([74a1bc8](74a1bc8)) ### Bug Fixes * Enhance type safety in middleware and utility functions ([#122](#122)) ([52cdd0e](52cdd0e)) * Helm chart and app version mismatch. ([#120](#120)) ([7998675](7998675)) * Make docker image to run as non-root. ([#116](#116)) ([35e06f3](35e06f3)) * Skip CQL2 filter build for OPTIONS requests ([#123](#123)) ([6ee043e](6ee043e)), closes [#110](#110) ### Documentation * temporarily disable starlette docstrings ([c4fd9e0](c4fd9e0)) ### Miscellaneous Chores * release 0.11.1 ([976dfab](976dfab)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: ds-release-bot[bot] <116609932+ds-release-bot[bot]@users.noreply.github.com>
This was referenced Mar 7, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
README.mdto helm charts