Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( ErrClusterDriverNotImplemented = errors.New("driver not implemented") ErrClusterExists = errors.New("cluster exists") )
Functions ¶
This section is empty.
Types ¶
type CertificateCA ¶
type CertificateCA struct {
// contains filtered or unexported fields
}
func NewCertificateCA ¶
func NewCertificateCA(co *resources.CertificateCA, l hclog.Logger) *CertificateCA
func (*CertificateCA) Create ¶
func (c *CertificateCA) Create() error
func (*CertificateCA) Destroy ¶
func (c *CertificateCA) Destroy() error
func (*CertificateCA) Lookup ¶
func (c *CertificateCA) Lookup() ([]string, error)
type CertificateLeaf ¶
type CertificateLeaf struct {
// contains filtered or unexported fields
}
func NewCertificateLeaf ¶
func NewCertificateLeaf(co *resources.CertificateLeaf, l hclog.Logger) *CertificateLeaf
func (*CertificateLeaf) Create ¶
func (c *CertificateLeaf) Create() error
func (*CertificateLeaf) Destroy ¶
func (c *CertificateLeaf) Destroy() error
func (*CertificateLeaf) Lookup ¶
func (c *CertificateLeaf) Lookup() ([]string, error)
type ConfigWrapper ¶
type ConfigWrapper struct { Type string Value interface{} }
ConfigWrapper alows the provider config to be deserialized to a type
type Container ¶
type Container struct {
// contains filtered or unexported fields
}
Container is a provider for creating and destroying Docker containers
func NewContainer ¶
func NewContainer(co *resources.Container, cl clients.ContainerTasks, hc clients.HTTP, l hclog.Logger) *Container
NewContainer creates a new container with the given config and Docker client
func NewContainerSidecar ¶
func (*Container) Create ¶
Create implements provider method and creates a Docker container with the given config
type Docs ¶
type Docs struct {
// contains filtered or unexported fields
}
Docs defines a provider for creating documentation containers
type Helm ¶
type Helm struct {
// contains filtered or unexported fields
}
func NewHelm ¶
func NewHelm(c *resources.Helm, kc clients.Kubernetes, hc clients.Helm, g clients.Getter, l hclog.Logger) *Helm
NewHelm creates a new Helm provider
type ImageCache ¶
type ImageCache struct {
// contains filtered or unexported fields
}
func NewImageCache ¶
func NewImageCache(co *resources.ImageCache, cl clients.ContainerTasks, hc clients.HTTP, l hclog.Logger) *ImageCache
NewContainer creates a new container with the given config and Docker client
func (*ImageCache) Create ¶
func (c *ImageCache) Create() error
func (*ImageCache) Destroy ¶
func (c *ImageCache) Destroy() error
func (*ImageCache) Lookup ¶
func (c *ImageCache) Lookup() ([]string, error)
type Ingress ¶
type Ingress struct {
// contains filtered or unexported fields
}
Ingress defines a provider for handling connection ingress for a cluster
func NewIngress ¶
func NewIngress( c *resources.Ingress, cc clients.ContainerTasks, co clients.Connector, l hclog.Logger) *Ingress
NewIngress creates a new ingress provider
type K8sCluster ¶
type K8sCluster struct {
// contains filtered or unexported fields
}
K8sCluster defines a provider which can create Kubernetes clusters
func NewK8sCluster ¶
func NewK8sCluster(c *resources.K8sCluster, cc clients.ContainerTasks, kc clients.Kubernetes, hc clients.HTTP, co clients.Connector, l hclog.Logger) *K8sCluster
NewK8sCluster creates a new Kubernetes cluster provider
func (*K8sCluster) Create ¶
func (c *K8sCluster) Create() error
Create implements interface method to create a cluster of the specified type
func (*K8sCluster) Destroy ¶
func (c *K8sCluster) Destroy() error
Destroy implements interface method to destroy a cluster
func (*K8sCluster) ImportLocalDockerImages ¶
func (c *K8sCluster) ImportLocalDockerImages(name string, id string, images []resources.Image, force bool) error
ImportLocalDockerImages fetches Docker images stored on the local client and imports them into the cluster
func (*K8sCluster) Lookup ¶
func (c *K8sCluster) Lookup() ([]string, error)
Lookup the a clusters current state
type K8sConfig ¶
type K8sConfig struct {
// contains filtered or unexported fields
}
func NewK8sConfig ¶
NewK8sConfig creates a provider which can create and destroy kubernetes configuration
type LocalExec ¶
type LocalExec struct {
// contains filtered or unexported fields
}
ExecLocal provider allows the execution of arbitrary commands on the local machine
func NewLocalExec ¶
NewExecLocal creates a new Local Exec provider
type Network ¶
type Network struct {
// contains filtered or unexported fields
}
Network is a provider for creating docker networks
func NewNetwork ¶
NewNetwork creates a new network with the given config and Docker client
type NomadCluster ¶
type NomadCluster struct {
// contains filtered or unexported fields
}
NomadCluster defines a provider which can create Kubernetes clusters
func NewNomadCluster ¶
func NewNomadCluster(c *resources.NomadCluster, cc clients.ContainerTasks, hc clients.Nomad, con clients.Connector, l hclog.Logger) *NomadCluster
NewNomadCluster creates a new Nomad cluster provider
func (*NomadCluster) Create ¶
func (c *NomadCluster) Create() error
Create implements interface method to create a cluster of the specified type
func (*NomadCluster) Destroy ¶
func (c *NomadCluster) Destroy() error
Destroy implements interface method to destroy a cluster
func (*NomadCluster) ImportLocalDockerImages ¶
func (c *NomadCluster) ImportLocalDockerImages(name string, id string, images []resources.Image, force bool) error
ImportLocalDockerImages fetches Docker images stored on the local client and imports them into the cluster
func (*NomadCluster) Lookup ¶
func (c *NomadCluster) Lookup() ([]string, error)
Lookup the a clusters current state
type NomadJob ¶
type NomadJob struct {
// contains filtered or unexported fields
}
NomadJob is a provider which enabled the creation and destruction of Nomad jobs
func NewNomadJob ¶
NewNomadJob creates a provider which can create and destroy Nomad jobs
type Null ¶
type Null struct {
// contains filtered or unexported fields
}
Null is a noop provider
type RemoteExec ¶
type RemoteExec struct {
// contains filtered or unexported fields
}
ExecRemote provider allows the execution of arbitrary commands on an existing target or can create a new container before running
func NewRemoteExec ¶
func NewRemoteExec(c *resources.RemoteExec, ex clients.ContainerTasks, l hclog.Logger) *RemoteExec
NewRemoteExec creates a new Exec provider
func (*RemoteExec) Destroy ¶
func (c *RemoteExec) Destroy() error
Destroy statisfies the interface requirements but is not used as the resource is not persistent
func (*RemoteExec) Lookup ¶
func (c *RemoteExec) Lookup() ([]string, error)
Lookup statisfies the interface requirements but is not used as the resource is not persistent
type Template ¶
type Template struct {
// contains filtered or unexported fields
}
Template provider allows parsing and output of file based templates
func NewTemplate ¶
NewTemplate creates a new Local Exec provider