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
1 change: 1 addition & 0 deletions helm-chart/eoapi/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ description: Create a full Earth Observation API with Metadata, Raster and Vecto
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
type: application
kubeVersion: ">=1.23.0-0"

# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
Expand Down
2 changes: 1 addition & 1 deletion helm-chart/eoapi/templates/db/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ data:
load.sh: |
#!/bin/bash
apt update -y && apt install python3 python3-pip -y
pip install pypgstac[psycopg]
pip install pypgstac[psycopg]=={{ .Values.db.image.tag | trimPrefix "v" }}
DSN="postgresql://$POSTGRES_USER:$POSTGRES_PASSWORD@$POSTGRES_HOST/$POSTGRES_DB"
pypgstac pgready --dsn $DSN
pypgstac load collections /opt/initdb/json-data/noaa-emergency-response.json --dsn $DSN --method insert_ignore
Expand Down