Skip to content

Commit

Permalink
BUG: fix ingress status at creation
Browse files Browse the repository at this point in the history
ivanmatmati authored and oktalz committed Mar 25, 2022
1 parent bb354bc commit 5c5457e
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
@@ -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}
},

0 comments on commit 5c5457e

Please sign in to comment.