168 lines
5.7 KiB
Go
168 lines
5.7 KiB
Go
/*
|
|
Copyright 2020 The cert-manager Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package clusterissuers
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/go-logr/logr"
|
|
k8sErrors "k8s.io/apimachinery/pkg/api/errors"
|
|
"k8s.io/apimachinery/pkg/types"
|
|
"k8s.io/client-go/tools/cache"
|
|
"k8s.io/client-go/tools/record"
|
|
"k8s.io/client-go/util/workqueue"
|
|
|
|
internalinformers "github.com/cert-manager/cert-manager/internal/informers"
|
|
cmclient "github.com/cert-manager/cert-manager/pkg/client/clientset/versioned"
|
|
cmlisters "github.com/cert-manager/cert-manager/pkg/client/listers/certmanager/v1"
|
|
controllerpkg "github.com/cert-manager/cert-manager/pkg/controller"
|
|
"github.com/cert-manager/cert-manager/pkg/issuer"
|
|
logf "github.com/cert-manager/cert-manager/pkg/logs"
|
|
)
|
|
|
|
type controller struct {
|
|
clusterIssuerLister cmlisters.ClusterIssuerLister
|
|
secretLister internalinformers.SecretLister
|
|
|
|
// maintain a reference to the workqueue for this controller
|
|
// so the handleOwnedResource method can enqueue resources
|
|
queue workqueue.TypedRateLimitingInterface[types.NamespacedName]
|
|
|
|
// logger to be used by this controller
|
|
log logr.Logger
|
|
|
|
// clientset used to update cert-manager API resources
|
|
cmClient cmclient.Interface
|
|
|
|
// used to record Events about resources to the API
|
|
recorder record.EventRecorder
|
|
|
|
// issuerFactory is used to obtain a reference to the Issuer implementation
|
|
// for each ClusterIssuer resource
|
|
issuerFactory issuer.Factory
|
|
|
|
// clusterResourceNamespace is the namespace used to store resources
|
|
// referenced by ClusterIssuer resources, e.g., acme account secrets
|
|
clusterResourceNamespace string
|
|
|
|
// fieldManager is the manager name used for the Apply operations.
|
|
fieldManager string
|
|
}
|
|
|
|
// 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 (c *controller) Register(ctx *controllerpkg.Context) (workqueue.TypedRateLimitingInterface[types.NamespacedName], []cache.InformerSynced, error) {
|
|
// construct a new named logger to be reused throughout the controller
|
|
c.log = logf.FromContext(ctx.RootContext, ControllerName)
|
|
|
|
// create a queue used to queue up items to be processed
|
|
c.queue = workqueue.NewTypedRateLimitingQueueWithConfig(
|
|
controllerpkg.DefaultItemBasedRateLimiter(),
|
|
workqueue.TypedRateLimitingQueueConfig[types.NamespacedName]{
|
|
Name: ControllerName,
|
|
},
|
|
)
|
|
|
|
// obtain references to all the informers used by this controller
|
|
clusterIssuerInformer := ctx.SharedInformerFactory.Certmanager().V1().ClusterIssuers()
|
|
secretInformer := ctx.KubeSharedInformerFactory.Secrets()
|
|
// build a list of InformerSynced functions that will be returned by the Register method.
|
|
// the controller will only begin processing items once all of these informers have synced.
|
|
mustSync := []cache.InformerSynced{
|
|
clusterIssuerInformer.Informer().HasSynced,
|
|
secretInformer.Informer().HasSynced,
|
|
}
|
|
|
|
// set all the references to the listers for used by the Sync function
|
|
c.clusterIssuerLister = clusterIssuerInformer.Lister()
|
|
c.secretLister = secretInformer.Lister()
|
|
|
|
// register handler functions
|
|
if _, err := clusterIssuerInformer.Informer().AddEventHandler(&controllerpkg.QueuingEventHandler{Queue: c.queue}); err != nil {
|
|
return nil, nil, fmt.Errorf("error setting up event handler: %v", err)
|
|
}
|
|
if _, err := secretInformer.Informer().AddEventHandler(&controllerpkg.BlockingEventHandler{WorkFunc: c.secretEvent}); err != nil {
|
|
return nil, nil, fmt.Errorf("error setting up event handler: %v", err)
|
|
}
|
|
|
|
// instantiate additional helpers used by this controller
|
|
c.issuerFactory = issuer.NewFactory(ctx)
|
|
c.cmClient = ctx.CMClient
|
|
c.fieldManager = ctx.FieldManager
|
|
c.recorder = ctx.Recorder
|
|
c.clusterResourceNamespace = ctx.IssuerOptions.ClusterResourceNamespace
|
|
|
|
return c.queue, mustSync, nil
|
|
}
|
|
|
|
// TODO: replace with generic handleObject function (like Navigator)
|
|
func (c *controller) secretEvent(obj interface{}) {
|
|
log := c.log.WithName("secretEvent")
|
|
|
|
secret, ok := controllerpkg.ToSecret(obj)
|
|
if !ok {
|
|
log.Error(nil, "object is not a secret", "object", obj)
|
|
return
|
|
}
|
|
log = logf.WithResource(log, secret)
|
|
|
|
issuers, err := c.issuersForSecret(secret)
|
|
if err != nil {
|
|
log.Error(err, "error looking up issuers observing secret")
|
|
return
|
|
}
|
|
for _, iss := range issuers {
|
|
c.queue.Add(types.NamespacedName{
|
|
Name: iss.Name,
|
|
Namespace: iss.Namespace,
|
|
})
|
|
}
|
|
}
|
|
|
|
func (c *controller) ProcessItem(ctx context.Context, key types.NamespacedName) error {
|
|
log := logf.FromContext(ctx)
|
|
|
|
name := key.Name
|
|
|
|
issuer, err := c.clusterIssuerLister.Get(name)
|
|
if err != nil && !k8sErrors.IsNotFound(err) {
|
|
return err
|
|
}
|
|
if issuer == nil || issuer.DeletionTimestamp != nil {
|
|
// If the ClusterIssuer object was/ is being deleted, we don't want to update its status.
|
|
return nil
|
|
}
|
|
|
|
ctx = logf.NewContext(ctx, logf.WithResource(log, issuer))
|
|
return c.Sync(ctx, issuer)
|
|
}
|
|
|
|
const (
|
|
// ControllerName is the name of the ClusterIssuers controller.
|
|
ControllerName = "clusterissuers"
|
|
)
|
|
|
|
func init() {
|
|
controllerpkg.Register(ControllerName, func(ctx *controllerpkg.ContextFactory) (controllerpkg.Interface, error) {
|
|
return controllerpkg.NewBuilder(ctx, ControllerName).
|
|
For(&controller{}).
|
|
Complete()
|
|
})
|
|
}
|