TUN-6639: Validate cyclic ingress configuration
This reverts commit d4d9a43dd7
.
We revert this change because the value this configuration addition
brings is small (it only stops an explicit cyclic configuration versus
not accounting for local hosts and ip based cycles amongst other things)
whilst the potential inconvenience it may cause is high (for example,
someone had a cyclic configuration as an ingress rule that they weren't
even using).
This commit is contained in:
parent
065d8355c5
commit
91eba53035
|
@ -232,10 +232,6 @@ func validateIngress(ingress []config.UnvalidatedIngressRule, defaults OriginReq
|
|||
} else {
|
||||
service = newTCPOverWSService(u)
|
||||
}
|
||||
|
||||
if u.Hostname() == r.Hostname {
|
||||
return Ingress{}, fmt.Errorf("Cyclic Ingress configuration: Hostname:%s points to service:%s.", r.Hostname, r.Service)
|
||||
}
|
||||
}
|
||||
|
||||
if err := validateHostname(r, i, len(ingress)); err != nil {
|
||||
|
|
|
@ -404,16 +404,6 @@ ingress:
|
|||
service: https://localhost:8000
|
||||
- hostname: "*"
|
||||
service: https://localhost:8001
|
||||
`},
|
||||
wantErr: true,
|
||||
},
|
||||
{
|
||||
name: "Cyclic hostname definition",
|
||||
args: args{rawYAML: `
|
||||
ingress:
|
||||
- hostname: "test.example.com"
|
||||
service: https://test.example.com
|
||||
- service: http_status_404
|
||||
`},
|
||||
wantErr: true,
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue