Log when a UID is created

This commit is contained in:
Tim Hockin 2017-01-04 16:57:17 -08:00
parent c3b7631b01
commit 37508a11c1

View file

@ -327,6 +327,7 @@ func getClusterUID(kubeClient client.Interface, name string) (string, error) {
return "", err
}
uid := fmt.Sprintf("%x", b)
glog.Infof("Using new cluster uid %q", uid)
return uid, cfgVault.Put(uid)
}