Documentation ¶
Index ¶
- func CreateOrPatchDaemonSet(ctx context.Context, c kubernetes.Interface, meta metav1.ObjectMeta, ...) (*extensions.DaemonSet, kutil.VerbType, error)
- func CreateOrPatchDeployment(ctx context.Context, c kubernetes.Interface, meta metav1.ObjectMeta, ...) (*extensions.Deployment, kutil.VerbType, error)
- func CreateOrPatchIngress(ctx context.Context, c kubernetes.Interface, meta metav1.ObjectMeta, ...) (*extensions.Ingress, kutil.VerbType, error)
- func CreateOrPatchReplicaSet(ctx context.Context, c kubernetes.Interface, meta metav1.ObjectMeta, ...) (*extensions.ReplicaSet, kutil.VerbType, error)
- func IsOwnedByDeployment(refs []metav1.OwnerReference) bool
- func PatchDaemonSet(ctx context.Context, c kubernetes.Interface, cur *extensions.DaemonSet, ...) (*extensions.DaemonSet, kutil.VerbType, error)
- func PatchDaemonSetObject(ctx context.Context, c kubernetes.Interface, cur, mod *extensions.DaemonSet, ...) (*extensions.DaemonSet, kutil.VerbType, error)
- func PatchDeployment(ctx context.Context, c kubernetes.Interface, cur *extensions.Deployment, ...) (*extensions.Deployment, kutil.VerbType, error)
- func PatchDeploymentObject(ctx context.Context, c kubernetes.Interface, cur, mod *extensions.Deployment, ...) (*extensions.Deployment, kutil.VerbType, error)
- func PatchIngress(ctx context.Context, c kubernetes.Interface, cur *extensions.Ingress, ...) (*extensions.Ingress, kutil.VerbType, error)
- func PatchIngressObject(ctx context.Context, c kubernetes.Interface, cur, mod *extensions.Ingress, ...) (*extensions.Ingress, kutil.VerbType, error)
- func PatchReplicaSet(ctx context.Context, c kubernetes.Interface, cur *extensions.ReplicaSet, ...) (*extensions.ReplicaSet, kutil.VerbType, error)
- func PatchReplicaSetObject(ctx context.Context, c kubernetes.Interface, cur, mod *extensions.ReplicaSet, ...) (*extensions.ReplicaSet, kutil.VerbType, error)
- func TryUpdateDaemonSet(ctx context.Context, c kubernetes.Interface, meta metav1.ObjectMeta, ...) (result *extensions.DaemonSet, err error)
- func TryUpdateDeployment(ctx context.Context, c kubernetes.Interface, meta metav1.ObjectMeta, ...) (result *extensions.Deployment, err error)
- func TryUpdateIngress(ctx context.Context, c kubernetes.Interface, meta metav1.ObjectMeta, ...) (result *extensions.Ingress, err error)
- func TryUpdateReplicaSet(ctx context.Context, c kubernetes.Interface, meta metav1.ObjectMeta, ...) (result *extensions.ReplicaSet, err error)
- func WaitUntilDaemonSetReady(ctx context.Context, c kubernetes.Interface, meta metav1.ObjectMeta) error
- func WaitUntilDeploymentReady(ctx context.Context, c kubernetes.Interface, meta metav1.ObjectMeta) error
- func WaitUntilReplicaSetReady(ctx context.Context, c kubernetes.Interface, meta metav1.ObjectMeta) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CreateOrPatchDaemonSet ¶
func CreateOrPatchDaemonSet(ctx context.Context, c kubernetes.Interface, meta metav1.ObjectMeta, transform func(*extensions.DaemonSet) *extensions.DaemonSet, opts metav1.PatchOptions) (*extensions.DaemonSet, kutil.VerbType, error)
func CreateOrPatchDeployment ¶
func CreateOrPatchDeployment(ctx context.Context, c kubernetes.Interface, meta metav1.ObjectMeta, transform func(*extensions.Deployment) *extensions.Deployment, opts metav1.PatchOptions) (*extensions.Deployment, kutil.VerbType, error)
func CreateOrPatchIngress ¶
func CreateOrPatchIngress(ctx context.Context, c kubernetes.Interface, meta metav1.ObjectMeta, transform func(*extensions.Ingress) *extensions.Ingress, opts metav1.PatchOptions) (*extensions.Ingress, kutil.VerbType, error)
func CreateOrPatchReplicaSet ¶
func CreateOrPatchReplicaSet(ctx context.Context, c kubernetes.Interface, meta metav1.ObjectMeta, transform func(*extensions.ReplicaSet) *extensions.ReplicaSet, opts metav1.PatchOptions) (*extensions.ReplicaSet, kutil.VerbType, error)
func IsOwnedByDeployment ¶
func IsOwnedByDeployment(refs []metav1.OwnerReference) bool
func PatchDaemonSet ¶
func PatchDaemonSet(ctx context.Context, c kubernetes.Interface, cur *extensions.DaemonSet, transform func(*extensions.DaemonSet) *extensions.DaemonSet, opts metav1.PatchOptions) (*extensions.DaemonSet, kutil.VerbType, error)
func PatchDaemonSetObject ¶
func PatchDaemonSetObject(ctx context.Context, c kubernetes.Interface, cur, mod *extensions.DaemonSet, opts metav1.PatchOptions) (*extensions.DaemonSet, kutil.VerbType, error)
func PatchDeployment ¶
func PatchDeployment(ctx context.Context, c kubernetes.Interface, cur *extensions.Deployment, transform func(*extensions.Deployment) *extensions.Deployment, opts metav1.PatchOptions) (*extensions.Deployment, kutil.VerbType, error)
func PatchDeploymentObject ¶
func PatchDeploymentObject(ctx context.Context, c kubernetes.Interface, cur, mod *extensions.Deployment, opts metav1.PatchOptions) (*extensions.Deployment, kutil.VerbType, error)
func PatchIngress ¶
func PatchIngress(ctx context.Context, c kubernetes.Interface, cur *extensions.Ingress, transform func(*extensions.Ingress) *extensions.Ingress, opts metav1.PatchOptions) (*extensions.Ingress, kutil.VerbType, error)
func PatchIngressObject ¶
func PatchIngressObject(ctx context.Context, c kubernetes.Interface, cur, mod *extensions.Ingress, opts metav1.PatchOptions) (*extensions.Ingress, kutil.VerbType, error)
func PatchReplicaSet ¶
func PatchReplicaSet(ctx context.Context, c kubernetes.Interface, cur *extensions.ReplicaSet, transform func(*extensions.ReplicaSet) *extensions.ReplicaSet, opts metav1.PatchOptions) (*extensions.ReplicaSet, kutil.VerbType, error)
func PatchReplicaSetObject ¶
func PatchReplicaSetObject(ctx context.Context, c kubernetes.Interface, cur, mod *extensions.ReplicaSet, opts metav1.PatchOptions) (*extensions.ReplicaSet, kutil.VerbType, error)
func TryUpdateDaemonSet ¶
func TryUpdateDaemonSet(ctx context.Context, c kubernetes.Interface, meta metav1.ObjectMeta, transform func(*extensions.DaemonSet) *extensions.DaemonSet, opts metav1.UpdateOptions) (result *extensions.DaemonSet, err error)
func TryUpdateDeployment ¶
func TryUpdateDeployment(ctx context.Context, c kubernetes.Interface, meta metav1.ObjectMeta, transform func(*extensions.Deployment) *extensions.Deployment, opts metav1.UpdateOptions) (result *extensions.Deployment, err error)
func TryUpdateIngress ¶
func TryUpdateIngress(ctx context.Context, c kubernetes.Interface, meta metav1.ObjectMeta, transform func(*extensions.Ingress) *extensions.Ingress, opts metav1.UpdateOptions) (result *extensions.Ingress, err error)
func TryUpdateReplicaSet ¶
func TryUpdateReplicaSet(ctx context.Context, c kubernetes.Interface, meta metav1.ObjectMeta, transform func(*extensions.ReplicaSet) *extensions.ReplicaSet, opts metav1.UpdateOptions) (result *extensions.ReplicaSet, err error)
func WaitUntilDaemonSetReady ¶
func WaitUntilDaemonSetReady(ctx context.Context, c kubernetes.Interface, meta metav1.ObjectMeta) error
func WaitUntilDeploymentReady ¶
func WaitUntilDeploymentReady(ctx context.Context, c kubernetes.Interface, meta metav1.ObjectMeta) error
func WaitUntilReplicaSetReady ¶
func WaitUntilReplicaSetReady(ctx context.Context, c kubernetes.Interface, meta metav1.ObjectMeta) error
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.