Documentation
¶
Index ¶
- func FilterFailedStatus(p corev1.PodStatus, labels map[string]string) (failed bool, status kubeproberv1.ProbeCheckerStatus)
- func IsContain(items []string, item string) (int, bool)
- func ReportProbeResult(c client.Client, r kubeproberv1.ReportProbeStatusSpec) error
- type PodPredicates
- type ProbeCronJobPredicates
- type ProbePredicates
- type ProbeReconciler
- func (r *ProbeReconciler) CreateCronJob(ctx context.Context, probe *kubeproberv1.Probe) error
- func (r *ProbeReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error)
- func (r *ProbeReconciler) ReconcileCronJob(ctx context.Context, probe *kubeproberv1.Probe) (ctrl.Result, error)
- func (r *ProbeReconciler) ReconcileCronJobs(ctx context.Context, probe *kubeproberv1.Probe) (ctrl.Result, error)
- func (r *ProbeReconciler) ReconcileJob(ctx context.Context, probe *kubeproberv1.Probe) (ctrl.Result, error)
- func (r *ProbeReconciler) ReconcileJobs(ctx context.Context, probe *kubeproberv1.Probe) (ctrl.Result, error)
- func (r *ProbeReconciler) SetupWithManager(mgr ctrl.Manager) error
- func (r *ProbeReconciler) UpdateCronJob(ctx context.Context, probe *kubeproberv1.Probe) error
- type ProbeStatusPredicates
- type ProbeStatusReconciler
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func FilterFailedStatus ¶
func FilterFailedStatus(p corev1.PodStatus, labels map[string]string) (failed bool, status kubeproberv1.ProbeCheckerStatus)
func ReportProbeResult ¶
func ReportProbeResult(c client.Client, r kubeproberv1.ReportProbeStatusSpec) error
Types ¶
type PodPredicates ¶
filter exception pod
func (*PodPredicates) Create ¶
func (p *PodPredicates) Create(e event.CreateEvent) bool
func (*PodPredicates) Delete ¶
func (p *PodPredicates) Delete(e event.DeleteEvent) bool
func (*PodPredicates) Generic ¶
func (p *PodPredicates) Generic(e event.GenericEvent) bool
func (*PodPredicates) Update ¶
func (p *PodPredicates) Update(e event.UpdateEvent) bool
type ProbeCronJobPredicates ¶
func (*ProbeCronJobPredicates) Create ¶
func (pcj *ProbeCronJobPredicates) Create(e event.CreateEvent) bool
func (*ProbeCronJobPredicates) Delete ¶
func (pcj *ProbeCronJobPredicates) Delete(e event.DeleteEvent) bool
func (*ProbeCronJobPredicates) Generic ¶
func (pcj *ProbeCronJobPredicates) Generic(e event.GenericEvent) bool
func (*ProbeCronJobPredicates) Update ¶
func (pcj *ProbeCronJobPredicates) Update(e event.UpdateEvent) bool
type ProbePredicates ¶
func (*ProbePredicates) Create ¶
func (p *ProbePredicates) Create(e event.CreateEvent) bool
func (*ProbePredicates) Delete ¶
func (p *ProbePredicates) Delete(e event.DeleteEvent) bool
func (*ProbePredicates) Generic ¶
func (p *ProbePredicates) Generic(e event.GenericEvent) bool
func (*ProbePredicates) Update ¶
func (p *ProbePredicates) Update(e event.UpdateEvent) bool
type ProbeReconciler ¶
type ProbeReconciler struct { client.Client Scheme *runtime.Scheme // contains filtered or unexported fields }
ProbeReconciler reconciles a Probe object
func (*ProbeReconciler) CreateCronJob ¶
func (r *ProbeReconciler) CreateCronJob(ctx context.Context, probe *kubeproberv1.Probe) error
func (*ProbeReconciler) Reconcile ¶
Reconcile is part of the main kubernetes reconciliation loop which aims to move the current state of the cluster closer to the desired state. TODO(user): Modify the Reconcile function to compare the state specified by the Probe object against the actual cluster state, and then perform operations to make the cluster state reflect the state specified by the user.
For more details, check Reconcile and its Result here: - https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.8.3/pkg/reconcile
func (*ProbeReconciler) ReconcileCronJob ¶
func (r *ProbeReconciler) ReconcileCronJob(ctx context.Context, probe *kubeproberv1.Probe) (ctrl.Result, error)
func (*ProbeReconciler) ReconcileCronJobs ¶
func (r *ProbeReconciler) ReconcileCronJobs(ctx context.Context, probe *kubeproberv1.Probe) (ctrl.Result, error)
func (*ProbeReconciler) ReconcileJob ¶
func (r *ProbeReconciler) ReconcileJob(ctx context.Context, probe *kubeproberv1.Probe) (ctrl.Result, error)
func (*ProbeReconciler) ReconcileJobs ¶
func (r *ProbeReconciler) ReconcileJobs(ctx context.Context, probe *kubeproberv1.Probe) (ctrl.Result, error)
func (*ProbeReconciler) SetupWithManager ¶
func (r *ProbeReconciler) SetupWithManager(mgr ctrl.Manager) error
SetupWithManager sets up the controller with the Manager.
func (*ProbeReconciler) UpdateCronJob ¶
func (r *ProbeReconciler) UpdateCronJob(ctx context.Context, probe *kubeproberv1.Probe) error
type ProbeStatusPredicates ¶ added in v0.1.0
filter probestatus
type ProbeStatusReconciler ¶
type ProbeStatusReconciler struct { client.Client Scheme *runtime.Scheme // contains filtered or unexported fields }
ProbeStatusReconciler reconciles a ProbeStatus object
func (*ProbeStatusReconciler) Reconcile ¶
func (r *ProbeStatusReconciler) 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. TODO(user): Modify the Reconcile function to compare the state specified by the ProbeStatus object against the actual cluster state, and then perform operations to make the cluster state reflect the state specified by the user.
For more details, check Reconcile and its Result here: - https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.8.3/pkg/reconcile
func (*ProbeStatusReconciler) SetupWithManager ¶
func (r *ProbeStatusReconciler) SetupWithManager(mgr ctrl.Manager) error
SetupWithManager sets up the controller with the Manager.