Skip to content

Add stac-manager. #246

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
4 changes: 4 additions & 0 deletions helm-chart/eoapi/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,7 @@ dependencies:
version: 5.7.4
repository: "https://devseed.com/eoapi-k8s/"
condition: postgrescluster.enabled
- name: stac-manager
version: 0.0.11
repository: "https://stac-manager.ds.io/"
condition: manager.enabled
3 changes: 3 additions & 0 deletions helm-chart/eoapi/templates/services/doc-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ data:
<li><a href="/multidim" target="_blank" rel="noopener noreferrer">/multidim</a></li>
{{- end}}
<li><a href="/browser/" target="_blank" rel="noopener noreferrer">/browser</a></li>
{{- if .Values.stac-manager.enabled }}
<li><a href="/manager" target="_blank" rel="noopener noreferrer">/manager</a></li>
{{- end}}
</ul>
</body>
</html>
Expand Down
11 changes: 11 additions & 0 deletions helm-chart/eoapi/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,17 @@ browser:
ingress:
enabled: true # Control ingress specifically for browser service

######################
# STAC Manager
######################
stac-manager:
enabled: false # disabled by default
replicaCount: 1
ingress:
enabled: true # Control ingress specifically for manager service
publicUrl: /manager/
stacApi: https://earth-search.aws.element84.com/v1/

docServer:
enabled: true

Expand Down
Loading