Set order.URL in createOrder

This commit is contained in:
James Munnelly 2018-03-22 22:02:54 +00:00
parent d617bec346
commit 36c825fa48

View File

@ -154,6 +154,7 @@ func (a *Acme) createOrder(ctx context.Context, cl client.Interface, crt *v1alph
return nil, err
}
a.recorder.Eventf(crt, corev1.EventTypeNormal, "CreateOrder", "Created order for domains: %v", order.Identifiers)
crt.Status.ACMEStatus().Order.URL = order.URL
return order, nil
}