Merge pull request #5451 from Tristan971/master

Ensure forward-compatibility with k8s.io/apiserver's Storage interface
This commit is contained in:
jetstack-bot 2022-09-23 10:02:57 +01:00 committed by GitHub
commit 4a1fd0a63c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -100,3 +100,10 @@ func (r *REST) callSolver(req v1alpha1.ChallengeRequest) (v1alpha1.ChallengeResp
},
}, nil
}
// This resource type isn't actually persisted anywhere, it is only submitted to the
// DNS01 solver webhooks, so there's nothing to do to delete a resource/it doesn't
// make sense in this context.
// see: https://github.com/cert-manager/cert-manager/pull/5346#discussion_r959521656
func (r *REST) Destroy() {
}