Skip to content

Commit e797241

Browse files
authored
Some clean up (#247)
* Removed github actions issue templates. * Removed and ignored vscode specific files. * Removed some unused legacy files. * Moved ingest.sh to scripts folder. * Moved helm charts to charts folder. * Removed obsolete 0.7.0 upgrade instructions. * Updated some versions in docs. * Moved helm related scripts to scripts folder. * Removed old logo.
1 parent a08e964 commit e797241

File tree

93 files changed

+49
-438
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+49
-438
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 0 additions & 4 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/workflows/helm-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
github-token: ${{ secrets.GITHUB_TOKEN }}
2424

2525
- run: |
26-
cd helm-chart
26+
cd charts
2727
helm unittest eoapi -f 'tests/*.yaml' -v eoapi/test-helm-values.yaml
2828
k3s-integration-tests:
2929
if: github.event.pull_request.head.repo.full_name == github.repository
@@ -80,7 +80,7 @@ jobs:
8080
run: |
8181
export GITSHA='${{github.sha}}'
8282
83-
cd helm-chart
83+
cd charts
8484
8585
helm dependency build eoapi
8686

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,8 @@ jobs:
3737
- name: run chart-releaser
3838
uses: helm/chart-releaser-action@v1.6.0
3939
with:
40-
charts_dir: helm-chart
40+
charts_dir: charts
4141
env:
4242
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
4343
CR_SKIP_EXISTING: true
4444
CR_INDEX_PATH: "."
45-

.gitignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
.idea/
2-
helm-chart/config.yaml
2+
.vscode/
3+
.pytest_cache
4+
charts/config.yaml
5+
charts/eoapi/charts/*.tgz
36
config_ingress.yaml
4-
helm-chart/eoapi/charts/*.tgz

.vscode/settings.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ deploy:
1717
@echo "Adding eoAPI helm repository."
1818
@helm repo add eoapi $(HELM_REPO_URL)
1919
@echo "Installing eoAPI helm chart."
20-
@cd ./helm-chart && \
20+
@cd ./charts && \
2121
helm dependency build ./eoapi && \
2222
helm upgrade --install --namespace eoapi --create-namespace --set gitSha=$$(git rev-parse HEAD | cut -c1-10) eoapi ./eoapi
2323

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

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

4444
help:
4545
@echo "Makefile commands:"

README.md

Lines changed: 0 additions & 2 deletions
File renamed without changes.

0 commit comments

Comments
 (0)