Documentation ¶
Overview ¶
Package container contains a deprecated Google Container Engine client.
Deprecated: Use google.golang.org/api/container instead.
Index ¶
- Constants
- type Client
- func (c *Client) Cluster(ctx context.Context, zone, name string) (*Resource, error)
- func (c *Client) Clusters(ctx context.Context, zone string) ([]*Resource, error)
- func (c *Client) CreateCluster(ctx context.Context, zone string, resource *Resource) (*Resource, error)
- func (c *Client) DeleteCluster(ctx context.Context, zone, name string) error
- func (c *Client) Operation(ctx context.Context, zone, name string) (*Op, error)
- func (c *Client) Operations(ctx context.Context, zone string) ([]*Op, error)
- type Op
- type Resource
- type Status
- type Type
Constants ¶
View Source
const ( TypeCreate = Type("createCluster") TypeDelete = Type("deleteCluster") )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client is a Google Container Engine client, which may be used to manage clusters with a project. It must be constructed via NewClient.
func (*Client) Clusters ¶
Clusters returns a list of cluster resources from the specified zone. If no zone is specified, it returns all clusters under the user project.
func (*Client) CreateCluster ¶
func (c *Client) CreateCluster(ctx context.Context, zone string, resource *Resource) (*Resource, error)
CreateCluster creates a new cluster with the provided metadata in the specified zone.
func (*Client) DeleteCluster ¶
DeleteCluster deletes a cluster.
type Op ¶
type Op struct { // Name is the name of the operation. Name string // Zone is the Google Compute Engine zone. Zone string // This field is ignored. It was removed from the underlying container API in v1. TargetURL string // Type is the operation type. It could be either be TypeCreate or TypeDelete. Type Type // Status is the current status of this operation. It could be either // OpDone or OpPending. Status Status }
Op represents a Google Container Engine API operation.
type Resource ¶
type Resource struct { // Name is the name of this cluster. The name must be unique // within this project and zone, and can be up to 40 characters. Name string // Description is the description of the cluster. Optional. Description string // Zone is the Google Compute Engine zone in which the cluster resides. Zone string // Status is the current status of the cluster. It could either be // StatusError, StatusProvisioning, StatusRunning or StatusStopping. Status Status // Num is the number of the nodes in this cluster resource. Num int64 // APIVersion is the version of the Kubernetes master and kubelets running // in this cluster. Allowed value is 0.4.2, or leave blank to // pick up the latest stable release. APIVersion string // Endpoint is the IP address of this cluster's Kubernetes master. // The endpoint can be accessed at https://username:password@endpoint/. // See Username and Password fields for the username and password information. Endpoint string // Username is the username to use when accessing the Kubernetes master endpoint. Username string // Password is the password to use when accessing the Kubernetes master endpoint. Password string // ContainerIPv4CIDR is the IP addresses of the container pods in // this cluster, in CIDR notation (e.g. 1.2.3.4/29). ContainerIPv4CIDR string // ServicesIPv4CIDR is the IP addresses of the Kubernetes services in this // cluster, in CIDR notation (e.g. 1.2.3.4/29). Service addresses are // always in the 10.0.0.0/16 range. ServicesIPv4CIDR string // MachineType is a Google Compute Engine machine type (e.g. n1-standard-1). // If none set, the default type is used while creating a new cluster. MachineType string // This field is ignored. It was removed from the underlying container API in v1. SourceImage string // Created is the creation time of this cluster. Created time.Time }
Resource is a Google Container Engine cluster resource.
Click to show internal directories.
Click to hide internal directories.