Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AWSPCAClusterIssuerReconciler ¶
type AWSPCAClusterIssuerReconciler struct { client.Client Log logr.Logger Scheme *runtime.Scheme GenericController *GenericIssuerReconciler }
AWSPCAClusterIssuerReconciler reconciles a AWSPCAClusterIssuer object
func (*AWSPCAClusterIssuerReconciler) Reconcile ¶
func (r *AWSPCAClusterIssuerReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error)
Reconcile is part of the main kubernetes reconciliation loop which aims to move the current state of the cluster closer to the desired state.
For more details, check Reconcile and its Result here: - https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.7.0/pkg/reconcile
func (*AWSPCAClusterIssuerReconciler) SetupWithManager ¶
func (r *AWSPCAClusterIssuerReconciler) SetupWithManager(mgr ctrl.Manager) error
SetupWithManager sets up the controller with the Manager.
type AWSPCAIssuerReconciler ¶
type AWSPCAIssuerReconciler struct { client.Client Log logr.Logger Scheme *runtime.Scheme GenericController *GenericIssuerReconciler }
AWSPCAIssuerReconciler reconciles a AWSPCAIssuer object
func (*AWSPCAIssuerReconciler) Reconcile ¶
func (r *AWSPCAIssuerReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error)
Reconcile is part of the main kubernetes reconciliation loop which aims to move the current state of the cluster closer to the desired state.
For more details, check Reconcile and its Result here: - https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.7.0/pkg/reconcile
func (*AWSPCAIssuerReconciler) SetupWithManager ¶
func (r *AWSPCAIssuerReconciler) SetupWithManager(mgr ctrl.Manager) error
SetupWithManager sets up the controller with the Manager.
type CertificateRequestReconciler ¶
type CertificateRequestReconciler struct { client.Client Log logr.Logger Scheme *runtime.Scheme Recorder record.EventRecorder Clock clock.Clock CheckApprovedCondition bool }
CertificateRequestReconciler reconciles a AWSPCAIssuer object
func (*CertificateRequestReconciler) Reconcile ¶
func (r *CertificateRequestReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error)
Reconcile is part of the main kubernetes reconciliation loop which aims to move the current state of the cluster closer to the desired state.
For more details, check Reconcile and its Result here: - https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.7.0/pkg/reconcile
func (*CertificateRequestReconciler) SetupWithManager ¶
func (r *CertificateRequestReconciler) SetupWithManager(mgr ctrl.Manager) error
SetupWithManager sets up the controller with the Manager.
type GenericIssuerReconciler ¶
type GenericIssuerReconciler struct { client.Client Log logr.Logger Scheme *runtime.Scheme Recorder record.EventRecorder // GetCallerIdentitty should be set to true if you want to call and log the // result of sts.GetCallerIdentity. // This is useful to verify what AWS user is being authenticated by the Issuer, // but can be skipped during unit tests to avoid having a dependency on a // live STS service. GetCallerIdentity bool }
GenericIssuerReconciler reconciles both AWSPCAIssuer and AWSPCAClusterIssuer objects
func (*GenericIssuerReconciler) Reconcile ¶
func (r *GenericIssuerReconciler) Reconcile(ctx context.Context, req ctrl.Request, issuer api.GenericIssuer) (ctrl.Result, error)
Reconcile is part of the main kubernetes reconciliation loop which aims to move the current state of the cluster closer to the desired state.
For more details, check Reconcile and its Result here: - https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.7.0/pkg/reconcile