Documentation ¶
Index ¶
- Constants
- type Configuration
- type GenericController
- func (ic *GenericController) CreateDefaultSSLCertificate() (path, hash string, crt *x509.Certificate)
- func (ic *GenericController) GetCertificate(name string) (*ingress.SSLCert, error)
- func (ic *GenericController) GetConfig() *Configuration
- func (ic GenericController) GetFullResourceName(name, currentNamespace string) string
- func (ic *GenericController) GetStopCh() chan struct{}
- func (ic GenericController) Info() *ingress.BackendInfo
- func (ic *GenericController) IsValidClass(ing *extensions.Ingress) bool
- func (ic *GenericController) Start()
- func (ic *GenericController) StartControllers()
- func (ic GenericController) Stop() error
- type StatusSync
Constants ¶
const IngressClassKey = "kubernetes.io/ingress.class"
IngressClassKey ...
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Configuration ¶
type Configuration struct { Client clientset.Interface RateLimitUpdate float32 ResyncPeriod time.Duration DefaultService string IngressClass string WatchNamespace string ConfigMapName string ForceNamespaceIsolation bool WaitBeforeShutdown int AllowCrossNamespace bool DisableNodeList bool DisableExternalName bool DisableConfigKeywords string AnnPrefix string AcmeServer bool AcmeCheckPeriod time.Duration AcmeFailInitialDuration time.Duration AcmeFailMaxDuration time.Duration AcmeElectionID string AcmeSecretKeyName string AcmeTokenConfigmapName string AcmeTrackTLSAnn bool BucketsResponseTime []float64 TCPConfigMapName string DefaultSSLCertificate string VerifyHostname bool DefaultHealthzURL string StatsCollectProcPeriod time.Duration PublishService string Backend ingress.Controller UpdateStatus bool UseNodeInternalIP bool ElectionID string UpdateStatusOnShutdown bool SortBackends bool IgnoreIngressWithoutClass bool }
Configuration contains all the settings required by an Ingress controller
type GenericController ¶
type GenericController struct {
// contains filtered or unexported fields
}
GenericController holds the boilerplate code required to build an Ingress controlller.
func NewIngressController ¶
func NewIngressController(backend ingress.Controller) *GenericController
NewIngressController returns a configured Ingress controller
func (*GenericController) CreateDefaultSSLCertificate ¶ added in v0.8.1
func (ic *GenericController) CreateDefaultSSLCertificate() (path, hash string, crt *x509.Certificate)
CreateDefaultSSLCertificate ...
func (*GenericController) GetCertificate ¶ added in v0.7.1
func (ic *GenericController) GetCertificate(name string) (*ingress.SSLCert, error)
GetCertificate get a SSLCert object from a secret name
func (*GenericController) GetConfig ¶ added in v0.8.1
func (ic *GenericController) GetConfig() *Configuration
GetConfig expose the controller configuration
func (GenericController) GetFullResourceName ¶
func (ic GenericController) GetFullResourceName(name, currentNamespace string) string
GetFullResourceName add the currentNamespace prefix if name doesn't provide one and AllowCrossNamespace is allowing this
func (*GenericController) GetStopCh ¶ added in v0.9.1
func (ic *GenericController) GetStopCh() chan struct{}
GetStopCh ...
func (GenericController) Info ¶
func (ic GenericController) Info() *ingress.BackendInfo
Info returns information about the backend
func (*GenericController) IsValidClass ¶ added in v0.10.1
func (ic *GenericController) IsValidClass(ing *extensions.Ingress) bool
IsValidClass ...
func (*GenericController) Start ¶
func (ic *GenericController) Start()
Start starts the Ingress controller.
func (*GenericController) StartControllers ¶ added in v0.8.1
func (ic *GenericController) StartControllers()
StartControllers ...
func (GenericController) Stop ¶
func (ic GenericController) Stop() error
Stop stops the loadbalancer controller.
type StatusSync ¶ added in v0.10.1
type StatusSync interface { Run(stopCh <-chan struct{}) Shutdown() }
StatusSync ...
func NewStatusSyncer ¶ added in v0.10.1
func NewStatusSyncer(ic *GenericController) StatusSync
NewStatusSyncer returns a new Sync instance