Skip to content

Commit

Permalink
envoy: upgrade to v1.28.2 (#5057)
Browse files Browse the repository at this point in the history
* envoy: upgrade to v1.28.2
* fallback to 1.28.0 for macos
  • Loading branch information
wasaga committed Apr 5, 2024
1 parent 90c4014 commit 7cf6277
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/get-envoy.bash
Expand Up @@ -5,10 +5,13 @@ PATH="$PATH:$(go env GOPATH)/bin"
export PATH

_project_root="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)/.."
_envoy_version=1.28.0
_dir="$_project_root/pkg/envoy/files"

for _target in darwin-amd64 darwin-arm64 linux-amd64 linux-arm64; do
_envoy_version=1.28.2
if [[ "$_target" == darwin* ]]; then
_envoy_version='1.28.0'
fi
_url="https://github.com/pomerium/envoy-binaries/releases/download/v${_envoy_version}/envoy-${_target}"

curl \
Expand Down

0 comments on commit 7cf6277

Please sign in to comment.