Documentation ¶
Index ¶
- Variables
- func DeleteAllClusterState(ctx context.Context, basePath vfs.Path) error
- func NewVFSClientset(vfsContext *vfs.VFSContext, basePath vfs.Path) simple.Clientset
- type ClusterVFS
- func (r *ClusterVFS) Create(c *api.Cluster) (*api.Cluster, error)
- func (r *ClusterVFS) Delete(name string, options *metav1.DeleteOptions) error
- func (r *ClusterVFS) DeleteCollection(options *metav1.DeleteOptions, listOptions metav1.ListOptions) error
- func (c *ClusterVFS) Get(ctx context.Context, name string, options metav1.GetOptions) (*api.Cluster, error)
- func (c *ClusterVFS) List(ctx context.Context, options metav1.ListOptions) (*api.ClusterList, error)
- func (r *ClusterVFS) Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *api.Cluster, err error)
- func (r *ClusterVFS) Update(c *api.Cluster, status *api.ClusterStatus) (*api.Cluster, error)
- func (r *ClusterVFS) Watch(opts metav1.ListOptions) (watch.Interface, error)
- type InstanceGroupVFS
- func (c *InstanceGroupVFS) Create(ctx context.Context, g *kopsapi.InstanceGroup, opts metav1.CreateOptions) (*kopsapi.InstanceGroup, error)
- func (c *InstanceGroupVFS) Delete(ctx context.Context, name string, options metav1.DeleteOptions) error
- func (r *InstanceGroupVFS) DeleteCollection(ctx context.Context, options metav1.DeleteOptions, ...) error
- func (c *InstanceGroupVFS) Get(ctx context.Context, name string, options metav1.GetOptions) (*kopsapi.InstanceGroup, error)
- func (c *InstanceGroupVFS) List(ctx context.Context, options metav1.ListOptions) (*kopsapi.InstanceGroupList, error)
- func (r *InstanceGroupVFS) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, ...) (result *kopsapi.InstanceGroup, err error)
- func (c *InstanceGroupVFS) Update(ctx context.Context, g *kopsapi.InstanceGroup, opts metav1.UpdateOptions) (*kopsapi.InstanceGroup, error)
- func (r *InstanceGroupVFS) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
- type VFSClientset
- func (c *VFSClientset) AddonsFor(cluster *kops.Cluster) simple.AddonsClient
- func (c *VFSClientset) ConfigBaseFor(cluster *kops.Cluster) (vfs.Path, error)
- func (c *VFSClientset) CreateCluster(ctx context.Context, cluster *kops.Cluster) (*kops.Cluster, error)
- func (c *VFSClientset) DeleteCluster(ctx context.Context, cluster *kops.Cluster) error
- func (c *VFSClientset) GetCluster(ctx context.Context, name string) (*kops.Cluster, error)
- func (c *VFSClientset) InstanceGroupsFor(cluster *kops.Cluster) kopsinternalversion.InstanceGroupInterface
- func (c *VFSClientset) KeyStore(cluster *kops.Cluster) (fi.CAStore, error)
- func (c *VFSClientset) ListClusters(ctx context.Context, options metav1.ListOptions) (*kops.ClusterList, error)
- func (c *VFSClientset) SSHCredentialStore(cluster *kops.Cluster) (fi.SSHCredentialStore, error)
- func (c *VFSClientset) SecretStore(cluster *kops.Cluster) (fi.SecretStore, error)
- func (c *VFSClientset) UpdateCluster(ctx context.Context, cluster *kops.Cluster, status *kops.ClusterStatus) (*kops.Cluster, error)
- func (c *VFSClientset) VFSContext() *vfs.VFSContext
- type ValidationFunction
Constants ¶
This section is empty.
Variables ¶
View Source
var StoreVersion = v1alpha2.SchemeGroupVersion
Functions ¶
func DeleteAllClusterState ¶ added in v1.10.0
func NewVFSClientset ¶
Types ¶
type ClusterVFS ¶
type ClusterVFS struct {
// contains filtered or unexported fields
}
func (*ClusterVFS) Delete ¶ added in v1.10.0
func (r *ClusterVFS) Delete(name string, options *metav1.DeleteOptions) error
func (*ClusterVFS) DeleteCollection ¶ added in v1.10.0
func (r *ClusterVFS) DeleteCollection(options *metav1.DeleteOptions, listOptions metav1.ListOptions) error
func (*ClusterVFS) Get ¶
func (c *ClusterVFS) Get(ctx context.Context, name string, options metav1.GetOptions) (*api.Cluster, error)
func (*ClusterVFS) List ¶
func (c *ClusterVFS) List(ctx context.Context, options metav1.ListOptions) (*api.ClusterList, error)
func (*ClusterVFS) Update ¶
func (r *ClusterVFS) Update(c *api.Cluster, status *api.ClusterStatus) (*api.Cluster, error)
func (*ClusterVFS) Watch ¶ added in v1.10.0
func (r *ClusterVFS) Watch(opts metav1.ListOptions) (watch.Interface, error)
type InstanceGroupVFS ¶
type InstanceGroupVFS struct {
// contains filtered or unexported fields
}
func (*InstanceGroupVFS) Create ¶
func (c *InstanceGroupVFS) Create(ctx context.Context, g *kopsapi.InstanceGroup, opts metav1.CreateOptions) (*kopsapi.InstanceGroup, error)
func (*InstanceGroupVFS) Delete ¶
func (c *InstanceGroupVFS) Delete(ctx context.Context, name string, options metav1.DeleteOptions) error
func (*InstanceGroupVFS) DeleteCollection ¶ added in v1.10.0
func (r *InstanceGroupVFS) DeleteCollection(ctx context.Context, options metav1.DeleteOptions, listOptions metav1.ListOptions) error
func (*InstanceGroupVFS) Get ¶
func (c *InstanceGroupVFS) Get(ctx context.Context, name string, options metav1.GetOptions) (*kopsapi.InstanceGroup, error)
func (*InstanceGroupVFS) List ¶
func (c *InstanceGroupVFS) List(ctx context.Context, options metav1.ListOptions) (*kopsapi.InstanceGroupList, error)
func (*InstanceGroupVFS) Patch ¶ added in v1.10.0
func (r *InstanceGroupVFS) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts metav1.PatchOptions, subresources ...string) (result *kopsapi.InstanceGroup, err error)
func (*InstanceGroupVFS) Update ¶
func (c *InstanceGroupVFS) Update(ctx context.Context, g *kopsapi.InstanceGroup, opts metav1.UpdateOptions) (*kopsapi.InstanceGroup, error)
func (*InstanceGroupVFS) Watch ¶ added in v1.10.0
func (r *InstanceGroupVFS) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
type VFSClientset ¶
type VFSClientset struct {
// contains filtered or unexported fields
}
func (*VFSClientset) AddonsFor ¶ added in v1.19.0
func (c *VFSClientset) AddonsFor(cluster *kops.Cluster) simple.AddonsClient
func (*VFSClientset) ConfigBaseFor ¶ added in v1.10.0
ConfigBaseFor implements the ConfigBaseFor method of simple.Clientset for a VFS-backed state store
func (*VFSClientset) CreateCluster ¶ added in v1.10.0
func (c *VFSClientset) CreateCluster(ctx context.Context, cluster *kops.Cluster) (*kops.Cluster, error)
CreateCluster implements the CreateCluster method of simple.Clientset for a VFS-backed state store
func (*VFSClientset) DeleteCluster ¶ added in v1.10.0
func (*VFSClientset) GetCluster ¶ added in v1.10.0
GetCluster implements the GetCluster method of simple.Clientset for a VFS-backed state store
func (*VFSClientset) InstanceGroupsFor ¶ added in v1.10.0
func (c *VFSClientset) InstanceGroupsFor(cluster *kops.Cluster) kopsinternalversion.InstanceGroupInterface
InstanceGroupsFor implements the InstanceGroupsFor method of simple.Clientset for a VFS-backed state store
func (*VFSClientset) ListClusters ¶ added in v1.10.0
func (c *VFSClientset) ListClusters(ctx context.Context, options metav1.ListOptions) (*kops.ClusterList, error)
ListClusters implements the ListClusters method of simple.Clientset for a VFS-backed state store
func (*VFSClientset) SSHCredentialStore ¶ added in v1.10.0
func (c *VFSClientset) SSHCredentialStore(cluster *kops.Cluster) (fi.SSHCredentialStore, error)
func (*VFSClientset) SecretStore ¶ added in v1.10.0
func (c *VFSClientset) SecretStore(cluster *kops.Cluster) (fi.SecretStore, error)
func (*VFSClientset) UpdateCluster ¶ added in v1.10.0
func (c *VFSClientset) UpdateCluster(ctx context.Context, cluster *kops.Cluster, status *kops.ClusterStatus) (*kops.Cluster, error)
UpdateCluster implements the UpdateCluster method of simple.Clientset for a VFS-backed state store
func (*VFSClientset) VFSContext ¶ added in v1.28.0
func (c *VFSClientset) VFSContext() *vfs.VFSContext
type ValidationFunction ¶ added in v1.10.0
Click to show internal directories.
Click to hide internal directories.