Documentation
¶
Overview ¶
Package deployments provides implementation of Deployment resources for Kubernetes
Index ¶
- type Deployments
- func (obj *Deployments) Apply(yaml string, namespace string) (k8sTypes.Deployment, error)
- func (obj *Deployments) Create(deployment k8sTypes.Deployment, namespace string, opts metav1.CreateOptions) (k8sTypes.Deployment, error)
- func (obj *Deployments) Delete(name, namespace string, opts metav1.DeleteOptions) error
- func (obj *Deployments) Get(name, namespace string, opts metav1.GetOptions) (k8sTypes.Deployment, error)
- func (obj *Deployments) Kill(name, namespace string, opts metav1.DeleteOptions) error
- func (obj *Deployments) List(namespace string) ([]k8sTypes.Deployment, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Deployments ¶
type Deployments struct {
// contains filtered or unexported fields
}
Deployments provides API for manipulating Deployment resources within a Kubernetes cluster
func New ¶
func New(ctx context.Context, client kubernetes.Interface, metaOptions metav1.ListOptions) *Deployments
New creates a new instance backed by the provided client
func (*Deployments) Apply ¶
func (obj *Deployments) Apply(yaml string, namespace string) (k8sTypes.Deployment, error)
Apply creates the Kubernetes resource given the supplied YAML configuration
func (*Deployments) Create ¶
func (obj *Deployments) Create( deployment k8sTypes.Deployment, namespace string, opts metav1.CreateOptions, ) (k8sTypes.Deployment, error)
Create creates the Kubernetes resource given the supplied object
func (*Deployments) Delete ¶
func (obj *Deployments) Delete(name, namespace string, opts metav1.DeleteOptions) error
Delete removes the named Deployment from the namespace
func (*Deployments) Get ¶
func (obj *Deployments) Get(name, namespace string, opts metav1.GetOptions) (k8sTypes.Deployment, error)
Get returns the named Deployments instance within the namespace if available
func (*Deployments) Kill ¶
func (obj *Deployments) Kill(name, namespace string, opts metav1.DeleteOptions) error
Kill removes the named Deployment from the namespace Deprecated: Use Delete instead.
func (*Deployments) List ¶
func (obj *Deployments) List(namespace string) ([]k8sTypes.Deployment, error)
List returns a collection of Deployments available within the namespace