Skip to content

Commit

Permalink
conn-tests: move away from jenkins url
Browse files Browse the repository at this point in the history
as reported here:
cilium/cilium#16938 (comment) the
usage of the jenkins url causes our tests to flake.

in this patch we move away from jenkins to the "http://docs.cilium.io"
URL which should have more reliable uptime.

Signed-off-by: Louis DeLosSantos <[email protected]>
  • Loading branch information
ldelossa committed Aug 31, 2021
1 parent db2cd94 commit cf40b6c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions connectivity/tests/world.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func (s *podToWorld) Name() string {
func (s *podToWorld) Run(ctx context.Context, t *check.Test) {
chttp := check.HTTPEndpoint("cilium-io-http", "http://cilium.io")
chttps := check.HTTPEndpoint("cilium-io-https", "https://cilium.io")
jhttp := check.HTTPEndpoint("jenkins-cilium-io-http", "http://jenkins.cilium.io")
dhttp := check.HTTPEndpoint("jenkins-cilium-io-http", "http://docs.cilium.io")

fp := check.FlowParameters{
DNSRequired: true,
Expand All @@ -57,8 +57,8 @@ func (s *podToWorld) Run(ctx context.Context, t *check.Test) {
})

// With http to jenkins.cilium.io.
t.NewAction(s, fmt.Sprintf("http-to-jenkins-cilium-%d", i), &client, jhttp).Run(func(a *check.Action) {
a.ExecInPod(ctx, curl(jhttp))
t.NewAction(s, fmt.Sprintf("http-to-docs-cilium-%d", i), &client, dhttp).Run(func(a *check.Action) {
a.ExecInPod(ctx, curl(dhttp))
a.ValidateFlows(ctx, client, a.GetEgressRequirements(fp))
})

Expand Down

0 comments on commit cf40b6c

Please sign in to comment.