Skip to content

Commit

Permalink
BUG: fix ingress status at creation
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanmatmati committed Mar 23, 2022
1 parent 7859db4 commit 91a5c0d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions controller/kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,7 @@ func (k *K8s) EventsIngresses(channel chan SyncDataEvent, stop chan struct{}, in
k.Logger.Errorf("%s: Invalid data from k8s api, %s", INGRESS, obj)
return
}
item.Status = ADDED
k.Logger.Tracef("%s %s: %s", INGRESS, item.Status, item.Name)
channel <- SyncDataEvent{SyncType: INGRESS, Namespace: item.Namespace, Data: item}
},
Expand Down

0 comments on commit 91a5c0d

Please sign in to comment.