controllers

package
v0.22.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 23, 2024 License: Apache-2.0 Imports: 50 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func PermissiveRateLimiter added in v0.22.0

func PermissiveRateLimiter() ratelimiter.RateLimiter

Types

type ApicastReconciler

type ApicastReconciler struct {
	*reconciler.Reconciler
}

ApicastReconciler reconciles a Apicast object

func (*ApicastReconciler) Reconcile

func (r *ApicastReconciler) 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.

func (*ApicastReconciler) SetupWithManager

func (r *ApicastReconciler) SetupWithManager(mgr ctrl.Manager) error

SetupWithManager sets up the controller with the Manager.

type AutoSSLReconciler

type AutoSSLReconciler struct {
	*reconciler.Reconciler
}

AutoSSLReconciler reconciles a AutoSSL object

func (*AutoSSLReconciler) Reconcile

func (r *AutoSSLReconciler) 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.

func (*AutoSSLReconciler) SetupWithManager

func (r *AutoSSLReconciler) SetupWithManager(mgr ctrl.Manager) error

SetupWithManager sets up the controller with the Manager.

type BackendReconciler

type BackendReconciler struct {
	*reconciler.Reconciler
}

BackendReconciler reconciles a Backend object

func (*BackendReconciler) Reconcile

func (r *BackendReconciler) 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.

func (*BackendReconciler) SetupWithManager

func (r *BackendReconciler) SetupWithManager(mgr ctrl.Manager) error

SetupWithManager sets up the controller with the Manager.

type CORSProxyReconciler

type CORSProxyReconciler struct {
	*reconciler.Reconciler
}

CORSProxyReconciler reconciles a CORSProxy object

func (*CORSProxyReconciler) Reconcile

func (r *CORSProxyReconciler) 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.

func (*CORSProxyReconciler) SetupWithManager

func (r *CORSProxyReconciler) SetupWithManager(mgr ctrl.Manager) error

SetupWithManager sets up the controller with the Manager.

type EchoAPIReconciler

type EchoAPIReconciler struct {
	*reconciler.Reconciler
}

EchoAPIReconciler reconciles a EchoAPI object

func (*EchoAPIReconciler) Reconcile

func (r *EchoAPIReconciler) 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.

func (*EchoAPIReconciler) SetupWithManager

func (r *EchoAPIReconciler) SetupWithManager(mgr ctrl.Manager) error

SetupWithManager sets up the controller with the Manager.

type MappingServiceReconciler

type MappingServiceReconciler struct {
	*reconciler.Reconciler
}

MappingServiceReconciler reconciles a MappingService object

func (*MappingServiceReconciler) 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.

func (*MappingServiceReconciler) SetupWithManager

func (r *MappingServiceReconciler) SetupWithManager(mgr ctrl.Manager) error

SetupWithManager sets up the controller with the Manager.

type RedisShardReconciler

type RedisShardReconciler struct {
	*reconciler.Reconciler
	Pool *redis.ServerPool
}

RedisShardReconciler reconciles a RedisShard object

func (*RedisShardReconciler) Reconcile

func (r *RedisShardReconciler) 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.

func (*RedisShardReconciler) SetupWithManager

func (r *RedisShardReconciler) SetupWithManager(mgr ctrl.Manager) error

SetupWithManager sets up the controller with the Manager.

type SentinelReconciler

type SentinelReconciler struct {
	*reconciler.Reconciler
	SentinelEvents threads.Manager
	Metrics        threads.Manager
	Pool           *redis.ServerPool
}

SentinelReconciler reconciles a Sentinel object

func (*SentinelReconciler) Reconcile

func (r *SentinelReconciler) 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.

func (*SentinelReconciler) SetupWithManager

func (r *SentinelReconciler) SetupWithManager(mgr ctrl.Manager) error

SetupWithManager sets up the controller with the Manager.

type ShardedRedisBackupReconciler

type ShardedRedisBackupReconciler struct {
	*reconciler.Reconciler
	BackupRunner threads.Manager
	Pool         *redis.ServerPool
}

ShardedRedisBackupReconciler reconciles a ShardedRedisBackup object

func (*ShardedRedisBackupReconciler) 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 ShardedRedisBackup 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.13.0/pkg/reconcile

func (*ShardedRedisBackupReconciler) SetupWithManager

func (r *ShardedRedisBackupReconciler) SetupWithManager(mgr ctrl.Manager) error

SetupWithManager sets up the controller with the Manager.

type SystemReconciler

type SystemReconciler struct {
	*reconciler.Reconciler
}

SystemReconciler reconciles a System object

func (*SystemReconciler) Reconcile

func (r *SystemReconciler) 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.

func (*SystemReconciler) SetupWithManager

func (r *SystemReconciler) SetupWithManager(mgr ctrl.Manager) error

SetupWithManager sets up the controller with the Manager.

type TwemproxyConfigReconciler

type TwemproxyConfigReconciler struct {
	*reconciler.Reconciler
	SentinelEvents threads.Manager
	Pool           *redis.ServerPool
}

TwemproxyConfigReconciler reconciles a TwemproxyConfig object

func (*TwemproxyConfigReconciler) 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.

func (*TwemproxyConfigReconciler) SetupWithManager

func (r *TwemproxyConfigReconciler) SetupWithManager(mgr ctrl.Manager) error

SetupWithManager sets up the controller with the Manager.

type ZyncReconciler

type ZyncReconciler struct {
	*reconciler.Reconciler
	Log logr.Logger
}

ZyncReconciler reconciles a Zync object

func (*ZyncReconciler) Reconcile

func (r *ZyncReconciler) 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.

func (*ZyncReconciler) SetupWithManager

func (r *ZyncReconciler) SetupWithManager(mgr ctrl.Manager) error

SetupWithManager sets up the controller with the Manager.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL