Documentation ¶
Index ¶
Constants ¶
View Source
const ( // CertRotationControllerName is the controller name that will be used when reporting events. CertRotationControllerName = "cert-rotation-controller" // SignerName defines the signer name for csr, 'kubernetes.io/kube-apiserver-client-kubelet' can sign the csr automatically SignerName = "kubernetes.io/kube-apiserver-client-kubelet" // KarmadaKubeconfigName is the name of the secret containing karmada-agent certificate. KarmadaKubeconfigName = "karmada-kubeconfig" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CertRotationController ¶
type CertRotationController struct { client.Client // used to operate cluster resources in the control plane. KubeClient clientset.Interface EventRecorder record.EventRecorder RESTMapper meta.RESTMapper ClusterClient *util.ClusterClient ClusterClientSetFunc func(string, client.Client, *util.ClientOption) (*util.ClusterClient, error) // ClusterClientOption holds the attributes that should be injected to a Kubernetes client. ClusterClientOption *util.ClientOption PredicateFunc predicate.Predicate InformerManager genericmanager.MultiClusterInformerManager RatelimiterOptions ratelimiterflag.Options // CertRotationCheckingInterval defines the interval of checking if the certificate need to be rotated. CertRotationCheckingInterval time.Duration // KarmadaKubeconfigNamespace is the namespace of the secret containing karmada-agent certificate. KarmadaKubeconfigNamespace string // CertRotationRemainingTimeThreshold defines the threshold of remaining time of the valid certificate. // If the ratio of remaining time to total time is less than or equal to this threshold, the certificate rotation starts. CertRotationRemainingTimeThreshold float64 }
CertRotationController is to rotate certificates.
func (*CertRotationController) Reconcile ¶
func (c *CertRotationController) Reconcile(ctx context.Context, req controllerruntime.Request) (controllerruntime.Result, error)
Reconcile performs a full reconciliation for the object referred to by the Request. The Controller will requeue the Request to be processed again if an error is non-nil or Result.Requeue is true, otherwise upon completion it will remove the work from the queue.
func (*CertRotationController) SetupWithManager ¶
func (c *CertRotationController) SetupWithManager(mgr controllerruntime.Manager) error
SetupWithManager creates a controller and register to controller manager.
Click to show internal directories.
Click to hide internal directories.