Documentation ¶
Index ¶
- Constants
- type Addon
- func (a *Addon) CertificatePEM() []byte
- func (a *Addon) ClusterIP() string
- func (a *Addon) Delete(ctx context.Context, cluster clusters.Cluster) error
- func (a *Addon) Dependencies(_ context.Context, cluster clusters.Cluster) []clusters.AddonName
- func (a *Addon) Deploy(ctx context.Context, cluster clusters.Cluster) error
- func (a *Addon) DumpDiagnostics(ctx context.Context, cluster clusters.Cluster) (map[string][]byte, error)
- func (a *Addon) LoadBalancerAddress() string
- func (a *Addon) Name() clusters.AddonName
- func (a *Addon) Namespace() string
- func (a *Addon) Ready(ctx context.Context, cluster clusters.Cluster) (waitForObjects []runtime.Object, ready bool, err error)
- func (a *Addon) Version() *semver.Version
- type Builder
Constants ¶
const ( // AddonName is the unique name of the Kong cluster.Addon AddonName clusters.AddonName = "registry" // Namespace is the namespace that the Addon compontents // will be deployed under when deployment finishes Namespace = "registry" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Addon ¶
type Addon struct {
// contains filtered or unexported fields
}
Addon is a Kong Proxy addon which can be deployed on a clusters.Cluster.
func New ¶
func New() *Addon
New produces a new clusters.Addon for Kong but uses a very opionated set of default configurations (see the defaults() function for more details). If you need to customize your Kong deployment, use the kong.Builder instead.
func (*Addon) CertificatePEM ¶
Certificate returns the PEM encoded x509 certificate used for TLS communications with the registry server.
func (*Addon) Dependencies ¶
func (*Addon) DumpDiagnostics ¶ added in v0.17.0
func (*Addon) LoadBalancerAddress ¶
LoadBalancerAddress indicates the publish network address of the registry server this will return empty if the addon was not configured to use a LoadBalancer type Service (e.g. builder.WithServiceTypeLoadBalancer()).
func (*Addon) Namespace ¶
Namespace indicates the namespace where the Registry addon components are to be deployed and managed.
type Builder ¶
type Builder struct {
// contains filtered or unexported fields
}
Builder is a configuration tool to generate Registry cluster addons.
func NewBuilder ¶
func NewBuilder() *Builder
NewBuilder provides a new Builder object for configuring Registry cluster addons.
func (*Builder) Build ¶
Build generates a new kong cluster.Addon which can be loaded and deployed into a test Environment's cluster.Cluster.
func (*Builder) WithServiceTypeLoadBalancer ¶
WithServiceTypeLoadBalancer configures the Registry's Kubernetes service to be of type LoadBalancer to support access from outside the cluster network.
func (*Builder) WithVersion ¶
WithVersion configures the specific version of Registry which should be deployed.