Skip to content

Commit 7bf6609

Browse files
authored
Upgraded stac-fastapi-pgstac to 5.0.1. (#195)
1 parent e6c72cc commit 7bf6609

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/helm-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
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 /_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 /stac/_mgmt/ping" | head -n 1)" ]]; do
113113
echo "still waiting for stac service to start..."
114114
sleep 1
115115
done

helm-chart/eoapi/templates/services/deployment.yaml

+1-3
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,8 @@ spec:
4848
name: {{ $serviceName }}
4949
command:
5050
{{- toYaml (index $v "command") | nindent 10 }}
51-
{{- if (and ($.Values.ingress.className) (or (eq $.Values.ingress.className "nginx") (eq $.Values.ingress.className "traefik")) (not $.Values.testing)) }}
51+
{{- if (and ($.Values.ingress.className) (or (eq $.Values.ingress.className "nginx") (eq $.Values.ingress.className "traefik"))) }}
5252
- "--root-path=/{{ $serviceName }}"
53-
{{- else if (and ($.Values.ingress.className) (or (eq $.Values.ingress.className "nginx") (eq $.Values.ingress.className "traefik")) ($.Values.testing)) }}
54-
- "--root-path=/{{ $serviceName }}{{ $.Release.Name }}"
5553
{{- end }}{{/* needed for proxies and path rewrites on NLB */}}
5654
livenessProbe:
5755
tcpSocket:

helm-chart/eoapi/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ stac:
323323
requestRate: 100000m
324324
image:
325325
name: ghcr.io/stac-utils/stac-fastapi-pgstac
326-
tag: 3.0.1
326+
tag: 5.0.1
327327
command:
328328
- "uvicorn"
329329
- "stac_fastapi.pgstac.app:app"

0 commit comments

Comments
 (0)