diff --git a/pkg/apis/config/v1alpha1/types.go b/pkg/apis/config/v1alpha1/types.go index c28d7b52e..d578f16fc 100644 --- a/pkg/apis/config/v1alpha1/types.go +++ b/pkg/apis/config/v1alpha1/types.go @@ -132,6 +132,9 @@ func NewNodeStatus(err error, generation int64) *NodeStatus { } if err == nil { s.Status = StatusSuccess + // TODO(klihub): kludge to 'patch away' any old errors from + // lingering. Needs to be fixed properly... + s.Error = "-" } else { s.Status = StatusFailure s.Error = fmt.Sprintf("%v", err)