Remove PostgREST (#41299)

This PR removes the PostgREST containers and deployments, as we're no
longer using it.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers
2025-10-27 13:27:59 -04:00
committed by GitHub
parent 172984978f
commit f5ad4c8bd9
7 changed files with 0 additions and 232 deletions
-20
View File
@@ -1,20 +0,0 @@
#!/usr/bin/env bash
set -eu
source script/lib/deploy-helpers.sh
if [[ $# != 1 ]]; then
echo "Usage: $0 <production|staging> (postgrest not needed on preview or nightly)"
exit 1
fi
environment=$1
export_vars_for_environment ${environment}
export ZED_DO_CERTIFICATE_ID=$(doctl compute certificate list --format ID --no-header)
export ZED_KUBE_NAMESPACE=${environment}
target_zed_kube_cluster
envsubst < crates/collab/k8s/postgrest.template.yml | kubectl apply -f -
echo "deployed postgrest"