Skip to content

Commit

Permalink
fix updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rboyer committed Oct 4, 2024
1 parent 0824ccd commit 29b0808
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ format:
.PHONY: update-envoy
update-envoy:
@docker rm -f consul-envoy-check &>/dev/null || true
@docker pull consul:latest || true
@docker run -d --name consul-envoy-check consul:latest
@docker pull hashicorp/consul:latest || true
@docker run -d --name consul-envoy-check hashicorp/consul:latest
@mkdir -p cache
@docker exec -it consul-envoy-check sh -c 'wget -q localhost:8500/v1/agent/self -O -' | jq -r '.xDS.SupportedProxies.envoy[0]' > cache/default_envoy.val
@docker rm -f consul-envoy-check &>/dev/null || true
Expand Down
2 changes: 1 addition & 1 deletion config/default_envoy.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package config

const DefaultEnvoyVersion = "v1.24.0"
const DefaultEnvoyVersion = "v1.29.7"

0 comments on commit 29b0808

Please sign in to comment.