core/envoy: upgrade to v1.25.10 (#4897)

* core/envoy: upgrade to v1.25.10

* fix darwin
This commit is contained in:
Caleb Doxsey 2024-01-05 10:56:07 -07:00 committed by GitHub
parent fcf3961da4
commit 31c15e168e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,10 +5,14 @@ PATH="$PATH:$(go env GOPATH)/bin"
export PATH
_project_root="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)/.."
_envoy_version=1.25.5
_dir="$_project_root/pkg/envoy/files"
for _target in darwin-amd64 darwin-arm64 linux-amd64 linux-arm64; do
_envoy_version='1.25.10'
if [[ "$_target" == darwin* ]]; then
_envoy_version='1.25.5'
fi
_url="https://github.com/pomerium/envoy-binaries/releases/download/v${_envoy_version}/envoy-${_target}"
curl \