Versions in this module Expand all Collapse all v0 v0.1.0 Mar 2, 2016 Changes in this version + const DefaultContext + var ErrorConflict = errors.New("name/namespace combination already exists for type") + var ErrorObjectNotSupported = errors.New("could not add to deployment, object not supported") + type Deployable interface + Deployment func() (*Deployment, error) + Images func() []*image.Image + type Deployment struct + func (d *Deployment) Add(obj KubeObject) error + func (d *Deployment) AddDeployment(deployment Deployment) (err error) + func (d *Deployment) Diff(other *Deployment) string + func (d *Deployment) Equal(other *Deployment) bool + func (d *Deployment) String() string + func (d Deployment) Len() int + func (d Deployment) Objects() (obj []KubeObject) + type KubeCluster struct + func NewKubeClusterFromContext(name string) (*KubeCluster, error) + func (c *KubeCluster) Context() string + func (c *KubeCluster) Deploy(dep *Deployment, update, deleteModifiedPods bool) error + type KubeObject interface