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
19 changes: 0 additions & 19 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

4 changes: 0 additions & 4 deletions .github/ISSUE_TEMPLATE/config.yml

This file was deleted.

20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/helm-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}

- run: |
cd helm-chart
cd charts
helm unittest eoapi -f 'tests/*.yaml' -v eoapi/test-helm-values.yaml
k3s-integration-tests:
if: github.event.pull_request.head.repo.full_name == github.repository
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
run: |
export GITSHA='${{github.sha}}'

cd helm-chart
cd charts

helm dependency build eoapi

Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,8 @@ jobs:
- name: run chart-releaser
uses: helm/chart-releaser-action@v1.6.0
with:
charts_dir: helm-chart
charts_dir: charts
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_SKIP_EXISTING: true
CR_INDEX_PATH: "."

6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
.idea/
helm-chart/config.yaml
.vscode/
.pytest_cache
charts/config.yaml
charts/eoapi/charts/*.tgz
config_ingress.yaml
helm-chart/eoapi/charts/*.tgz
3 changes: 0 additions & 3 deletions .vscode/settings.json

This file was deleted.

6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ deploy:
@echo "Adding eoAPI helm repository."
@helm repo add eoapi $(HELM_REPO_URL)
@echo "Installing eoAPI helm chart."
@cd ./helm-chart && \
@cd ./charts && \
helm dependency build ./eoapi && \
helm upgrade --install --namespace eoapi --create-namespace --set gitSha=$$(git rev-parse HEAD | cut -c1-10) eoapi ./eoapi

Expand All @@ -34,12 +34,12 @@ minikube:
ingest:
@echo "Ingesting STAC collections and items into the database."
@command -v bash >/dev/null 2>&1 || { echo "bash is required but not installed"; exit 1; }
@./ingest.sh || { echo "Ingestion failed."; exit 1; }
@./scripts/ingest.sh || { echo "Ingestion failed."; exit 1; }

tests:
@echo "Running tests."
@command -v helm >/dev/null 2>&1 || { echo "helm is required but not installed"; exit 1; }
@helm unittest helm-chart/eoapi -f 'tests/*.yaml' -v helm-chart/eoapi/test-helm-values.yaml
@helm unittest charts/eoapi -f 'tests/*.yaml' -v charts/eoapi/test-helm-values.yaml

help:
@echo "Makefile commands:"
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,6 @@ For cloud-based deployments, refer to our detailed setup guides:
* [Unified Ingress Configuration](./docs/unified-ingress.md)
* [Upgrade Guide](./docs/upgrade.md)

> **Important Notice**: If you're upgrading from a version prior to 0.7.0, please read the [upgrade guide](./docs/upgrade.md) for important database permission changes.

## Contributing

We welcome contributions! See our [contributing guide](./CONTRIBUTING.md) for details.
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion helm-chart/eoapi/README.md → charts/eoapi/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# eoAPI Helm Chart

![Version: 0.7.0](https://img.shields.io/badge/Version-0.7.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 5.0.2](https://img.shields.io/badge/AppVersion-5.0.2-informational?style=flat-square)
![Version: 0.7.5](https://img.shields.io/badge/Version-0.7.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 5.0.2](https://img.shields.io/badge/AppVersion-5.0.2-informational?style=flat-square)

A Helm chart for deploying Earth Observation APIs with integrated STAC, raster, vector, and multidimensional services.

Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion helm-chart/eoapi/values.yaml → charts/eoapi/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ postgresql:
port: "port"
database: "database"

# this is declared as a dependency of eoapi in helm-chart/eoapi/Chart.yaml
# this is declared as a dependency of eoapi in charts/eoapi/Chart.yaml
postgrescluster:
enabled: true
# The name of the postgres cluster
Expand Down
29 changes: 0 additions & 29 deletions configs/aws-asg-policy.json

This file was deleted.

179 changes: 0 additions & 179 deletions configs/cluster-autoscaler-autodiscover.yaml

This file was deleted.

Loading