From 144f06af8368fa3e1020914d0ceff8a50f876d32 Mon Sep 17 00:00:00 2001 From: Joe Kralicky Date: Fri, 28 Mar 2025 17:43:29 +0000 Subject: [PATCH] demo: pull envoy from temp demo release --- go.mod | 4 +--- go.sum | 2 ++ pkg/envoy/get-envoy/main.go | 10 +++++----- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/go.mod b/go.mod index f5dfeda84..ce6987b03 100644 --- a/go.mod +++ b/go.mod @@ -54,7 +54,7 @@ require ( github.com/pires/go-proxyproto v0.8.0 github.com/pomerium/csrf v1.7.0 github.com/pomerium/datasource v0.18.2-0.20221108160055-c6134b5ed524 - github.com/pomerium/envoy-custom v1.33.0 + github.com/pomerium/envoy-custom v1.33.1-0.20250327222650-3da0fc300b58 github.com/pomerium/protoutil v0.0.0-20240813175624-47b7ac43ff46 github.com/pomerium/webauthn v0.0.0-20240603205124-0428df511172 github.com/prometheus/client_golang v1.21.0 @@ -287,5 +287,3 @@ require ( sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect ) - -replace github.com/pomerium/envoy-custom => ../envoy-custom diff --git a/go.sum b/go.sum index dc1f2cb5d..8214db67a 100644 --- a/go.sum +++ b/go.sum @@ -577,6 +577,8 @@ github.com/pomerium/csrf v1.7.0 h1:Qp4t6oyEod3svQtKfJZs589mdUTWKVf7q0PgCKYCshY= github.com/pomerium/csrf v1.7.0/go.mod h1:hAPZV47mEj2T9xFs+ysbum4l7SF1IdrryYaY6PdoIqw= github.com/pomerium/datasource v0.18.2-0.20221108160055-c6134b5ed524 h1:3YQY1sb54tEEbr0L73rjHkpLB0IB6qh3zl1+XQbMLis= github.com/pomerium/datasource v0.18.2-0.20221108160055-c6134b5ed524/go.mod h1:7fGbUYJnU8RcxZJvUvhukOIBv1G7LWDAHMfDxAf5+Y0= +github.com/pomerium/envoy-custom v1.33.1-0.20250327222650-3da0fc300b58 h1:okkm5DxZ3t7gj2X86WSiUsbyXYChcaFV3K9/S60hWsg= +github.com/pomerium/envoy-custom v1.33.1-0.20250327222650-3da0fc300b58/go.mod h1:6nr0BrchI8Y+A01k+HoPVGBhwgcpFhkJzsNJKOr9bKs= github.com/pomerium/protoutil v0.0.0-20240813175624-47b7ac43ff46 h1:NRTg8JOXCxcIA1lAgD74iYud0rbshbWOB3Ou4+Huil8= github.com/pomerium/protoutil v0.0.0-20240813175624-47b7ac43ff46/go.mod h1:QqZmx6ZgPxz18va7kqoT4t/0yJtP7YFIDiT/W2n2fZ4= github.com/pomerium/webauthn v0.0.0-20240603205124-0428df511172 h1:TqoPqRgXSHpn+tEJq6H72iCS5pv66j3rPprThUEZg0E= diff --git a/pkg/envoy/get-envoy/main.go b/pkg/envoy/get-envoy/main.go index 2df6299c3..90a541270 100644 --- a/pkg/envoy/get-envoy/main.go +++ b/pkg/envoy/get-envoy/main.go @@ -16,14 +16,14 @@ import ( ) var ( - envoyVersion = "1.32.3" + envoyVersion = "demo" targets = []string{ - "darwin-amd64", - "darwin-arm64", + // "darwin-amd64", + // "darwin-arm64", "linux-amd64", - "linux-arm64", + // "linux-arm64", } - baseURL = "https://github.com/pomerium/envoy-custom/releases/download/v" + envoyVersion + baseURL = "https://github.com/kralicky/envoy-custom/releases/download/" + envoyVersion ) func main() {