fix status updated: make sure ingress.status is copied
This commit is contained in:
parent
ee3a8fe581
commit
7a00d52141
2 changed files with 2 additions and 1 deletions
|
|
@ -602,6 +602,7 @@ func (s *k8sStore) syncIngress(ing *extensions.Ingress) {
|
|||
copyIng := &extensions.Ingress{}
|
||||
ing.ObjectMeta.DeepCopyInto(©Ing.ObjectMeta)
|
||||
ing.Spec.DeepCopyInto(©Ing.Spec)
|
||||
ing.Status.DeepCopyInto(©Ing.Status)
|
||||
|
||||
for ri, rule := range copyIng.Spec.Rules {
|
||||
if rule.HTTP == nil {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue