feat: update more than one LoadBalancer ip

Co-authored-by: kevinpollet <pollet.kevin@gmail.com>
This commit is contained in:
Eli Mallon 2020-09-15 04:48:32 -07:00 committed by GitHub
parent 76f42a3013
commit 498e8545b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 119 additions and 23 deletions

View file

@ -125,6 +125,6 @@ func (c clientMock) WatchAll(namespaces []string, stopCh <-chan struct{}) (<-cha
return c.watchChan, nil
}
func (c clientMock) UpdateIngressStatus(_ *networkingv1beta1.Ingress, _, _ string) error {
func (c clientMock) UpdateIngressStatus(_ *networkingv1beta1.Ingress, _ []corev1.LoadBalancerIngress) error {
return c.apiIngressStatusError
}