Documentation ¶
Overview ¶
Package manager implements the controller manager for all controllers
Index ¶
- Constants
- func Run(ctx context.Context, c *Config, diagnostic util.ConfigDumpDiagnostic, ...) error
- func SetupLoggers(c *Config, output io.Writer) (logrus.FieldLogger, logr.Logger, error)
- func ShouldEnableCRDController(gvr schema.GroupVersionResource, restMapper meta.RESTMapper) bool
- type Config
- type Controller
- type ControllerDef
- type IngressAPI
- type IngressControllerConditions
Constants ¶
const DiagnosticsPort = 10256
DiagnosticsPort is the default port of the manager's diagnostics service listens on.
const HealthzPort = 10254
HealthzPort is the default port the manager's health service listens on. Changing this will result in a breaking change. Existing deployments may use the literal port number in their liveness and readiness probes, and upgrading to a controller version with a changed HealthzPort will result in crash loops until users update their probe config. Note that there are several stock manifests in this repo that also use the literal port number. If you update this value, search for the old port number and update the stock manifests also.
const KongClientEventRecorderComponentName = "kong-client"
KongClientEventRecorderComponentName is a KongClient component name used to identify the events recording component.
const MetricsPort = 10255
MetricsPort is the default port the manager's metrics service listens on. Similar to HealthzPort, it may be used in existing user deployment configurations, and its literal value is used in several stock manifests, which must be updated along with this value.
Variables ¶
This section is empty.
Functions ¶
func Run ¶
func Run(ctx context.Context, c *Config, diagnostic util.ConfigDumpDiagnostic, deprecatedLogger logrus.FieldLogger) error
Run starts the controller manager and blocks until it exits.
func SetupLoggers ¶ added in v2.5.1
SetupLoggers sets up the loggers for the controller manager.
func ShouldEnableCRDController ¶ added in v2.8.0
func ShouldEnableCRDController(gvr schema.GroupVersionResource, restMapper meta.RESTMapper) bool
Types ¶
type Config ¶
type Config struct { // Logging configurations LogLevel string LogFormat string LogReduceRedundancy bool // Kong high-level controller manager configurations KongAdminAPIConfig adminapi.HTTPClientOpts KongAdminInitializationRetries uint KongAdminInitializationRetryDelay time.Duration KongAdminToken string KongWorkspace string AnonymousReports bool EnableReverseSync bool SyncPeriod time.Duration SkipCACertificates bool CacheSyncTimeout time.Duration // Kong Proxy configurations APIServerHost string APIServerQPS int APIServerBurst int MetricsAddr string ProbeAddr string KongAdminURL string ProxySyncSeconds float32 ProxyTimeoutSeconds float32 KongCustomEntitiesSecret string // Kubernetes configurations KubeconfigPath string IngressClassName string EnableLeaderElection bool LeaderElectionNamespace string LeaderElectionID string Concurrency int FilterTags []string WatchNamespaces []string GatewayAPIControllerName string // Ingress status PublishService string PublishStatusAddress []string UpdateStatus bool // Kubernetes API toggling IngressExtV1beta1Enabled bool IngressNetV1beta1Enabled bool IngressNetV1Enabled bool IngressClassNetV1Enabled bool IngressClassParametersEnabled bool UDPIngressEnabled bool TCPIngressEnabled bool KongIngressEnabled bool KnativeIngressEnabled bool KongClusterPluginEnabled bool KongPluginEnabled bool KongConsumerEnabled bool ServiceEnabled bool // Admission Webhook server config AdmissionServer admission.ServerConfig // Diagnostics and performance EnableProfiling bool EnableConfigDumps bool DumpSensitiveConfig bool // Feature Gates FeatureGates map[string]bool // TermDelay is the time.Duration which the controller manager will wait // after receiving SIGTERM or SIGINT before shutting down. This can be // helpful for advanced cases with load-balancers so that the ingress // controller can be gracefully removed/drained from their rotation. TermDelay time.Duration }
Config collects all configuration that the controller manager takes from the environment.
func (*Config) GetKongClient ¶
type Controller ¶
Controller is a Kubernetes controller that can be plugged into Manager.
type ControllerDef ¶
type ControllerDef struct { Enabled bool Controller Controller }
ControllerDef is a specification of a Controller that can be conditionally registered with Manager.
func (*ControllerDef) MaybeSetupWithManager ¶
func (c *ControllerDef) MaybeSetupWithManager(mgr ctrl.Manager) error
MaybeSetupWithManager runs SetupWithManager on the controller if it is enabled.
func (*ControllerDef) Name ¶
func (c *ControllerDef) Name() string
Name returns a human-readable name of the controller.
type IngressAPI ¶
type IngressAPI int
const ( OtherAPI IngressAPI = iota NetworkingV1 NetworkingV1beta1 ExtensionsV1beta1 )
type IngressControllerConditions ¶ added in v2.8.0
type IngressControllerConditions struct {
// contains filtered or unexported fields
}
IngressControllerConditions negotiates the best Ingress API version supported by both KIC and the k8s apiserver and provides functions to determine if particular controllers should be enabled. TODO: https://github.com/Kong/kubernetes-ingress-controller/issues/1666
func NewIngressControllersConditions ¶ added in v2.8.0
func NewIngressControllersConditions(cfg *Config, mapper meta.RESTMapper) (*IngressControllerConditions, error)
func (*IngressControllerConditions) IngressClassNetV1Enabled ¶ added in v2.8.0
func (s *IngressControllerConditions) IngressClassNetV1Enabled() bool
IngressClassNetV1Enabled returns true if the chosen ingress class API version is networking.k8s.io/v1 and it's enabled.
func (*IngressControllerConditions) IngressExtV1beta1Enabled ¶ added in v2.8.0
func (s *IngressControllerConditions) IngressExtV1beta1Enabled() bool
IngressExtV1beta1Enabled returns true if the chosen ingress API version is extensions/v1beta1 and it's enabled.
func (*IngressControllerConditions) IngressNetV1Enabled ¶ added in v2.8.0
func (s *IngressControllerConditions) IngressNetV1Enabled() bool
IngressNetV1Enabled returns true if the chosen ingress API version is networking.k8s.io/v1 and it's enabled.
func (*IngressControllerConditions) IngressNetV1beta1Enabled ¶ added in v2.8.0
func (s *IngressControllerConditions) IngressNetV1beta1Enabled() bool
IngressNetV1beta1Enabled returns true if the chosen ingress API version is networking.k8s.io/v1beta1 and it's enabled.