File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -104,12 +104,12 @@ jobs:
104
104
sleep 1
105
105
done
106
106
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
108
108
echo "still waiting for vector service to start..."
109
109
sleep 1
110
110
done
111
111
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
113
113
echo "still waiting for stac service to start..."
114
114
sleep 1
115
115
done
Original file line number Diff line number Diff line change @@ -107,11 +107,11 @@ def test_vector_api(vector_endpoint):
107
107
assert item ["id" ] == 1
108
108
109
109
# 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" )
111
111
assert resp .status_code == 200
112
112
113
113
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"
115
115
)
116
116
assert resp .status_code == 200
117
117
Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ raster:
201
201
requestRate : 100000m
202
202
image :
203
203
name : ghcr.io/stac-utils/titiler-pgstac
204
- tag : uvicorn-1.4.0
204
+ tag : 1.7.1
205
205
command :
206
206
- " uvicorn"
207
207
- " titiler.pgstac.main:app"
@@ -373,7 +373,7 @@ vector:
373
373
requestRate : 100000m
374
374
image :
375
375
name : ghcr.io/developmentseed/tipg
376
- tag : uvicorn-0.6 .1
376
+ tag : 1.0 .1
377
377
command :
378
378
- " uvicorn"
379
379
- " tipg.main:app"
You can’t perform that action at this time.
0 commit comments