Merge pull request #73 from negz/subdefault

Have claim reconciler default to using the status subresource
This commit is contained in:
Nic Cope 2019-11-03 19:06:59 -08:00 committed by GitHub
commit 444e96ae02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -212,7 +212,7 @@ type crClaim struct {
func defaultCRClaim(m manager.Manager) crClaim {
return crClaim{
ClaimFinalizer: NewAPIClaimFinalizer(m.GetClient(), claimFinalizerName),
Binder: NewAPIBinder(m.GetClient(), m.GetScheme()),
Binder: NewAPIStatusBinder(m.GetClient(), m.GetScheme()),
}
}