Skip to content

Commit

Permalink
Merge 426b138 into backport/rboyer/update-deployer-default-images/smo…
Browse files Browse the repository at this point in the history
…othly-brief-wombat
  • Loading branch information
hc-github-team-consul-core authored Nov 7, 2023
2 parents d066023 + 426b138 commit 8cb45dc
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 42 deletions.
2 changes: 1 addition & 1 deletion test-integ/catalogv2/explicit_destinations_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ func (c testBasicL4ExplicitDestinationsCreator) NewConfig(t *testing.T) *topolog
}

return &topology.Config{
Images: topoutil.TargetImages(),
Images: utils.TargetImages(),
Networks: []*topology.Network{
{Name: clusterName},
{Name: "wan", Type: "wan"},
Expand Down
2 changes: 1 addition & 1 deletion test-integ/catalogv2/implicit_destinations_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ func (c testBasicL4ImplicitDestinationsCreator) NewConfig(t *testing.T) *topolog
}

return &topology.Config{
Images: topoutil.TargetImages(),
Images: utils.TargetImages(),
Networks: []*topology.Network{
{Name: clusterName},
{Name: "wan", Type: "wan"},
Expand Down
36 changes: 0 additions & 36 deletions test-integ/topoutil/images.go

This file was deleted.

8 changes: 4 additions & 4 deletions testing/deployer/topology/default_versions.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions testing/deployer/update-latest-versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ docker run -d --name consul-envoy-check "$consul_latest"
envoy_version=""
while true; do
# We have to retry in case consul doesn't fully start up before we get here.
set +e
envoy_version="$(docker exec consul-envoy-check sh -c 'wget -q localhost:8500/v1/agent/self -O -' | jq -r '.xDS.SupportedProxies.envoy[0]')"
set -e
if [[ -n "$envoy_version" ]]; then
break
fi
Expand Down

0 comments on commit 8cb45dc

Please sign in to comment.