Skip to content

Commit 43a70e1

Browse files
authored
Upgraded tipg to 1.0.1 and titiler-pgstac to 1.7.1. (#199)
1 parent 7bf6609 commit 43a70e1

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/helm-tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,12 @@ jobs:
104104
sleep 1
105105
done
106106
echo "raster service has started, moving on..."
107-
while [[ -z "$(kubectl get pod | grep "^vector-$RELEASE_NAME-.*$" | cut -d' ' -f1 | xargs -I{} kubectl logs pod/{} | grep "GET /healthz" | head -n 1)" ]]; do
107+
while [[ -z "$(kubectl get pod | grep "^vector-$RELEASE_NAME-.*$" | cut -d' ' -f1 | xargs -I{} kubectl logs pod/{} | grep "GET /.*/healthz" | head -n 1)" ]]; do
108108
echo "still waiting for vector service to start..."
109109
sleep 1
110110
done
111111
echo "vector service has started, moving on..."
112-
while [[ -z "$(kubectl get pod | grep "^stac-$RELEASE_NAME-.*$" | cut -d' ' -f1 | xargs -I{} kubectl logs pod/{} | grep "GET /stac/_mgmt/ping" | head -n 1)" ]]; do
112+
while [[ -z "$(kubectl get pod | grep "^stac-$RELEASE_NAME-.*$" | cut -d' ' -f1 | xargs -I{} kubectl logs pod/{} | grep "GET /.*/_mgmt/ping" | head -n 1)" ]]; do
113113
echo "still waiting for stac service to start..."
114114
sleep 1
115115
done

.github/workflows/tests/test_vector.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,11 @@ def test_vector_api(vector_endpoint):
107107
assert item["id"] == 1
108108

109109
# OGC Tiles
110-
resp = client.get(f"{vector_endpoint}/collections/public.my_data/tiles/0/0/0")
110+
resp = client.get(f"{vector_endpoint}/collections/public.my_data/tiles/WebMercatorQuad/0/0/0")
111111
assert resp.status_code == 200
112112

113113
resp = client.get(
114-
f"{vector_endpoint}/collections/public.my_data/tilejson.json"
114+
f"{vector_endpoint}/collections/public.my_data/tiles/WebMercatorQuad/tilejson.json"
115115
)
116116
assert resp.status_code == 200
117117

helm-chart/eoapi/values.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ raster:
201201
requestRate: 100000m
202202
image:
203203
name: ghcr.io/stac-utils/titiler-pgstac
204-
tag: uvicorn-1.4.0
204+
tag: 1.7.1
205205
command:
206206
- "uvicorn"
207207
- "titiler.pgstac.main:app"
@@ -373,7 +373,7 @@ vector:
373373
requestRate: 100000m
374374
image:
375375
name: ghcr.io/developmentseed/tipg
376-
tag: uvicorn-0.6.1
376+
tag: 1.0.1
377377
command:
378378
- "uvicorn"
379379
- "tipg.main:app"

0 commit comments

Comments
 (0)