Documentation ¶
Index ¶
- type Container
- type Deployment
- func CreateLinuxDeploy(image, name, namespace, miscOpts string) (*Deployment, error)
- func CreateLinuxDeployDeleteIfExists(pattern, image, name, namespace, miscOpts string) (*Deployment, error)
- func CreateLinuxDeployIfNotExist(image, name, namespace, miscOpts string) (*Deployment, error)
- func CreateWindowsDeploy(image, name, namespace string, port int, hostport int) (*Deployment, error)
- func CreateWindowsDeployDeleteIfExist(pattern, image, name, namespace string, port int, hostport int) (*Deployment, error)
- func CreateWindowsDeployIfNotExist(image, name, namespace string, port int, hostport int) (*Deployment, error)
- func Get(name, namespace string) (*Deployment, error)
- func GetAllByPrefix(prefix, namespace string) ([]Deployment, error)
- func RunLinuxDeploy(image, name, namespace, command string, replicas int) (*Deployment, error)
- func RunLinuxDeployDeleteIfExists(pattern, image, name, namespace, command string, replicas int) (*Deployment, error)
- func (d *Deployment) CreateDeploymentHPA(cpuPercent, min, max int) error
- func (d *Deployment) CreateDeploymentHPADeleteIfExist(cpuPercent, min, max int) error
- func (d *Deployment) Delete(retries int) error
- func (d *Deployment) Expose(svcType string, targetPort, exposedPort int) error
- func (d *Deployment) ExposeDeleteIfExist(pattern, namespace, svcType string, targetPort, exposedPort int) error
- func (d *Deployment) ExposeIfNotExist(svcType string, targetPort, exposedPort int) error
- func (d *Deployment) Pods() ([]pod.Pod, error)
- func (d *Deployment) ScaleDeployment(n int) error
- func (d *Deployment) WaitForReplicas(min, max int, sleep, duration time.Duration) ([]pod.Pod, error)
- type List
- type Metadata
- type Spec
- type Template
- type TemplateSpec
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Container ¶
type Container struct { Image string `json:"image"` PullPolicy string `json:"imagePullPolicy"` Name string `json:"name"` }
Container holds information like image, pull policy, name, etc...
type Deployment ¶
type Deployment struct {
Metadata Metadata `json:"metadata"`
}
Deployment repesentes a kubernetes deployment
func CreateLinuxDeploy ¶
func CreateLinuxDeploy(image, name, namespace, miscOpts string) (*Deployment, error)
CreateLinuxDeploy will create a deployment for a given image with a name in a namespace --overrides='{ "spec":{"template":{"spec": {"nodeSelector":{"beta.kubernetes.io/os":"linux"}}}}}'
func CreateLinuxDeployDeleteIfExists ¶ added in v0.36.0
func CreateLinuxDeployDeleteIfExists(pattern, image, name, namespace, miscOpts string) (*Deployment, error)
CreateLinuxDeployDeleteIfExists will create a deployment, deleting any pre-existing deployment with the same name
func CreateLinuxDeployIfNotExist ¶
func CreateLinuxDeployIfNotExist(image, name, namespace, miscOpts string) (*Deployment, error)
CreateLinuxDeployIfNotExist first checks if a deployment already exists, and return it if so If not, we call CreateLinuxDeploy
func CreateWindowsDeploy ¶
func CreateWindowsDeploy(image, name, namespace string, port int, hostport int) (*Deployment, error)
CreateWindowsDeploy will create a deployment for a given image with a name in a namespace
func CreateWindowsDeployDeleteIfExist ¶ added in v0.36.0
func CreateWindowsDeployDeleteIfExist(pattern, image, name, namespace string, port int, hostport int) (*Deployment, error)
CreateWindowsDeployDeleteIfExist first checks if a deployment already exists according to a naming pattern If a pre-existing deployment is found matching that pattern, it is deleted
func CreateWindowsDeployIfNotExist ¶ added in v0.36.0
func CreateWindowsDeployIfNotExist(image, name, namespace string, port int, hostport int) (*Deployment, error)
CreateWindowsDeployIfNotExist first checks if a deployment already exists, and return it if so If not, we call CreateWindowsDeploy
func Get ¶
func Get(name, namespace string) (*Deployment, error)
Get returns a deployment from a name and namespace
func GetAllByPrefix ¶ added in v0.36.0
func GetAllByPrefix(prefix, namespace string) ([]Deployment, error)
GetAllByPrefix will return all pods in a given namespace that match a prefix
func RunLinuxDeploy ¶
func RunLinuxDeploy(image, name, namespace, command string, replicas int) (*Deployment, error)
RunLinuxDeploy will create a deployment that runs a bash command in a pod --overrides=' "spec":{"template":{"spec": {"nodeSelector":{"beta.kubernetes.io/os":"linux"}}}}}'
func RunLinuxDeployDeleteIfExists ¶ added in v0.36.0
func RunLinuxDeployDeleteIfExists(pattern, image, name, namespace, command string, replicas int) (*Deployment, error)
RunLinuxDeployDeleteIfExists will create a deployment that runs a bash command in a pod, deleting any pre-existing deployment with the same name
func (*Deployment) CreateDeploymentHPA ¶
func (d *Deployment) CreateDeploymentHPA(cpuPercent, min, max int) error
CreateDeploymentHPA applies autoscale characteristics to deployment
func (*Deployment) CreateDeploymentHPADeleteIfExist ¶ added in v0.36.0
func (d *Deployment) CreateDeploymentHPADeleteIfExist(cpuPercent, min, max int) error
CreateDeploymentHPADeleteIfExist applies autoscale characteristics to deployment, deleting any pre-existing HPA resource first
func (*Deployment) Delete ¶
func (d *Deployment) Delete(retries int) error
Delete will delete a deployment in a given namespace
func (*Deployment) Expose ¶
func (d *Deployment) Expose(svcType string, targetPort, exposedPort int) error
Expose will create a load balancer and expose the deployment on a given port
func (*Deployment) ExposeDeleteIfExist ¶ added in v0.36.0
func (d *Deployment) ExposeDeleteIfExist(pattern, namespace, svcType string, targetPort, exposedPort int) error
ExposeDeleteIfExist will create a load balancer and expose the deployment on a given port If a service matching the passed in pattern already exists, we'll delete it first
func (*Deployment) ExposeIfNotExist ¶ added in v0.36.0
func (d *Deployment) ExposeIfNotExist(svcType string, targetPort, exposedPort int) error
ExposeIfNotExist will create a load balancer and expose the deployment on a given port if the associated service doesn't already exist
func (*Deployment) Pods ¶
func (d *Deployment) Pods() ([]pod.Pod, error)
Pods will return all pods related to a deployment
func (*Deployment) ScaleDeployment ¶
func (d *Deployment) ScaleDeployment(n int) error
ScaleDeployment scales a deployment to n instancees
func (*Deployment) WaitForReplicas ¶
func (d *Deployment) WaitForReplicas(min, max int, sleep, duration time.Duration) ([]pod.Pod, error)
WaitForReplicas waits for a pod replica count between min and max
type List ¶
type List struct {
Deployments []Deployment `json:"items"`
}
List holds a list of deployments returned from kubectl get deploy
type Metadata ¶
type Metadata struct { CreatedAt time.Time `json:"creationTimestamp"` Labels map[string]string `json:"labels"` Name string `json:"name"` Namespace string `json:"namespace"` HasHPA bool `json:"hasHPA"` }
Metadata holds information like labels, name, and namespace
type Template ¶
type Template struct {
TemplateSpec TemplateSpec `json:"spec"`
}
Template is used for fetching the deployment spec -> containers
type TemplateSpec ¶
type TemplateSpec struct { Containers []Container `json:"containers"` DNSPolicy string `json:"dnsPolicy"` RestartPolicy string `json:"restartPolicy"` }
TemplateSpec holds the list of containers for a deployment, the dns policy, and restart policy