Documentation ¶
Index ¶
Constants ¶
const (
ControllerName = "certificaterequests"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Controller ¶
type Controller struct {
// contains filtered or unexported fields
}
func New ¶
func New(issuerType string, issuer Issuer, extraInformers ...cache.SharedIndexInformer) *Controller
New will construct a new certificaterequest controller using the given Issuer implementation. Note: the extraInformers passed here will be 'waited' for when starting to ensure their corresponding listers have synced. An event handler will then be set on these informers that automatically resyncs CertificateRequest resources that 'own' the objects in the informer. It's the callers responsibility to ensure the Run function on the informer is called in order to start the reflector. This is handled automatically when the informer factory's Start method is called, if the given informer was obtained using a SharedInformerFactory.
func (*Controller) ProcessItem ¶
func (c *Controller) ProcessItem(ctx context.Context, key string) error
func (*Controller) Register ¶
func (c *Controller) Register(ctx *controllerpkg.Context) (workqueue.RateLimitingInterface, []cache.InformerSynced, []controllerpkg.RunFunc, error)
Register registers and constructs the controller using the provided context. It returns the workqueue to be used to enqueue items, a list of InformerSynced functions that must be synced, or an error.
func (*Controller) Sync ¶
func (c *Controller) Sync(ctx context.Context, cr *v1alpha2.CertificateRequest) (err error)
type Issuer ¶ added in v0.10.0
type Issuer interface {
Sign(context.Context, *v1alpha2.CertificateRequest, v1alpha2.GenericIssuer) (*issuer.IssueResponse, error)
}