2020-10-21 05:49:41 +00:00
|
|
|
/*
|
|
|
|
Copyright 2018 The Kubernetes 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 reconcile
|
|
|
|
|
|
|
|
import (
|
2021-06-25 05:02:01 +00:00
|
|
|
"context"
|
2023-06-01 17:01:19 +00:00
|
|
|
"errors"
|
2020-10-21 05:49:41 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"k8s.io/apimachinery/pkg/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Result contains the result of a Reconciler invocation.
|
|
|
|
type Result struct {
|
|
|
|
// Requeue tells the Controller to requeue the reconcile key. Defaults to false.
|
|
|
|
Requeue bool
|
|
|
|
|
|
|
|
// RequeueAfter if greater than 0, tells the Controller to requeue the reconcile key after the Duration.
|
|
|
|
// Implies that Requeue is true, there is no need to set Requeue to true at the same time as RequeueAfter.
|
|
|
|
RequeueAfter time.Duration
|
|
|
|
}
|
|
|
|
|
2021-06-25 05:02:01 +00:00
|
|
|
// IsZero returns true if this result is empty.
|
|
|
|
func (r *Result) IsZero() bool {
|
|
|
|
if r == nil {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return *r == Result{}
|
|
|
|
}
|
|
|
|
|
2020-10-21 05:49:41 +00:00
|
|
|
// Request contains the information necessary to reconcile a Kubernetes object. This includes the
|
|
|
|
// information to uniquely identify the object - its Name and Namespace. It does NOT contain information about
|
|
|
|
// any specific Event or the object contents itself.
|
|
|
|
type Request struct {
|
|
|
|
// NamespacedName is the name and namespace of the object to reconcile.
|
|
|
|
types.NamespacedName
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Reconciler implements a Kubernetes API for a specific Resource by Creating, Updating or Deleting Kubernetes
|
|
|
|
objects, or by making changes to systems external to the cluster (e.g. cloudproviders, github, etc).
|
|
|
|
|
|
|
|
reconcile implementations compare the state specified in an object by a user against the actual cluster state,
|
|
|
|
and then perform operations to make the actual cluster state reflect the state specified by the user.
|
|
|
|
|
|
|
|
Typically, reconcile is triggered by a Controller in response to cluster Events (e.g. Creating, Updating,
|
|
|
|
Deleting Kubernetes objects) or external Events (GitHub Webhooks, polling external sources, etc).
|
|
|
|
|
|
|
|
Example reconcile Logic:
|
|
|
|
|
2023-02-01 17:06:36 +00:00
|
|
|
* Read an object and all the Pods it owns.
|
|
|
|
* Observe that the object spec specifies 5 replicas but actual cluster contains only 1 Pod replica.
|
|
|
|
* Create 4 Pods and set their OwnerReferences to the object.
|
2020-10-21 05:49:41 +00:00
|
|
|
|
|
|
|
reconcile may be implemented as either a type:
|
|
|
|
|
2023-02-01 17:06:36 +00:00
|
|
|
type reconciler struct {}
|
2020-10-21 05:49:41 +00:00
|
|
|
|
2023-02-01 17:06:36 +00:00
|
|
|
func (reconciler) Reconcile(ctx context.Context, o reconcile.Request) (reconcile.Result, error) {
|
2020-10-21 05:49:41 +00:00
|
|
|
// Implement business logic of reading and writing objects here
|
2023-02-01 17:06:36 +00:00
|
|
|
return reconcile.Result{}, nil
|
2020-10-21 05:49:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Or as a function:
|
|
|
|
|
2023-02-01 17:06:36 +00:00
|
|
|
reconcile.Func(func(ctx context.Context, o reconcile.Request) (reconcile.Result, error) {
|
2020-10-21 05:49:41 +00:00
|
|
|
// Implement business logic of reading and writing objects here
|
2023-02-01 17:06:36 +00:00
|
|
|
return reconcile.Result{}, nil
|
2020-10-21 05:49:41 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
Reconciliation is level-based, meaning action isn't driven off changes in individual Events, but instead is
|
|
|
|
driven by actual cluster state read from the apiserver or a local cache.
|
|
|
|
For example if responding to a Pod Delete Event, the Request won't contain that a Pod was deleted,
|
|
|
|
instead the reconcile function observes this when reading the cluster state and seeing the Pod as missing.
|
|
|
|
*/
|
|
|
|
type Reconciler interface {
|
2021-12-08 13:50:47 +00:00
|
|
|
// Reconcile performs a full reconciliation for the object referred to by the Request.
|
2023-08-28 20:44:55 +00:00
|
|
|
//
|
|
|
|
// If the returned error is non-nil, the Result is ignored and the request will be
|
|
|
|
// requeued using exponential backoff. The only exception is if the error is a
|
|
|
|
// TerminalError in which case no requeuing happens.
|
|
|
|
//
|
|
|
|
// If the error is nil and the returned Result has a non-zero result.RequeueAfter, the request
|
|
|
|
// will be requeued after the specified duration.
|
|
|
|
//
|
|
|
|
// If the error is nil and result.RequeueAfter is zero and result.Reque is true, the request
|
|
|
|
// will be requeued using exponential backoff.
|
2021-06-25 05:02:01 +00:00
|
|
|
Reconcile(context.Context, Request) (Result, error)
|
2020-10-21 05:49:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Func is a function that implements the reconcile interface.
|
2021-06-25 05:02:01 +00:00
|
|
|
type Func func(context.Context, Request) (Result, error)
|
2020-10-21 05:49:41 +00:00
|
|
|
|
|
|
|
var _ Reconciler = Func(nil)
|
|
|
|
|
|
|
|
// Reconcile implements Reconciler.
|
2021-06-25 05:02:01 +00:00
|
|
|
func (r Func) Reconcile(ctx context.Context, o Request) (Result, error) { return r(ctx, o) }
|
2023-06-01 17:01:19 +00:00
|
|
|
|
|
|
|
// TerminalError is an error that will not be retried but still be logged
|
|
|
|
// and recorded in metrics.
|
|
|
|
func TerminalError(wrapped error) error {
|
|
|
|
return &terminalError{err: wrapped}
|
|
|
|
}
|
|
|
|
|
|
|
|
type terminalError struct {
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
2023-08-28 20:44:55 +00:00
|
|
|
// This function will return nil if te.err is nil.
|
2023-06-01 17:01:19 +00:00
|
|
|
func (te *terminalError) Unwrap() error {
|
|
|
|
return te.err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (te *terminalError) Error() string {
|
2023-08-28 20:44:55 +00:00
|
|
|
if te.err == nil {
|
|
|
|
return "nil terminal error"
|
|
|
|
}
|
2023-06-01 17:01:19 +00:00
|
|
|
return "terminal error: " + te.err.Error()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (te *terminalError) Is(target error) bool {
|
|
|
|
tp := &terminalError{}
|
|
|
|
return errors.As(target, &tp)
|
|
|
|
}
|