The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Paws::EKS - Perl Interface to AWS Amazon Elastic Container Service for Kubernetes

SYNOPSIS

  use Paws;

  my $obj = Paws->service('EKS');
  my $res = $obj->Method(
    Arg1 => $val1,
    Arg2 => [ 'V1', 'V2' ],
    # if Arg3 is an object, the HashRef will be used as arguments to the constructor
    # of the arguments type
    Arg3 => { Att1 => 'Val1' },
    # if Arg4 is an array of objects, the HashRefs will be passed as arguments to
    # the constructor of the arguments type
    Arg4 => [ { Att1 => 'Val1'  }, { Att1 => 'Val2' } ],
  );

DESCRIPTION

Amazon Elastic Container Service for Kubernetes (Amazon EKS) is a managed service that makes it easy for you to run Kubernetes on AWS without needing to stand up or maintain your own Kubernetes control plane. Kubernetes is an open-source system for automating the deployment, scaling, and management of containerized applications.

Amazon EKS runs up-to-date versions of the open-source Kubernetes software, so you can use all the existing plugins and tooling from the Kubernetes community. Applications running on Amazon EKS are fully compatible with applications running on any standard Kubernetes environment, whether running in on-premises data centers or public clouds. This means that you can easily migrate any standard Kubernetes application to Amazon EKS without any code modification required.

For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01

METHODS

CreateCluster

Name => Str
ResourcesVpcConfig => Paws::EKS::VpcConfigRequest
RoleArn => Str
[ClientRequestToken => Str]
[Version => Str]

Each argument is described in detail in: Paws::EKS::CreateCluster

Returns: a Paws::EKS::CreateClusterResponse instance

Creates an Amazon EKS control plane.

The Amazon EKS control plane consists of control plane instances that run the Kubernetes software, like etcd and the API server. The control plane runs in an account managed by AWS, and the Kubernetes API is exposed via the Amazon EKS API server endpoint.

Amazon EKS worker nodes run in your AWS account and connect to your cluster's control plane via the Kubernetes API server endpoint and a certificate file that is created for your cluster.

The cluster control plane is provisioned across multiple Availability Zones and fronted by an Elastic Load Balancing Network Load Balancer. Amazon EKS also provisions elastic network interfaces in your VPC subnets to provide connectivity from the control plane instances to the worker nodes (for example, to support kubectl exec, logs, and proxy data flows).

After you create an Amazon EKS cluster, you must configure your Kubernetes tooling to communicate with the API server and launch worker nodes into your cluster. For more information, see Managing Cluster Authentication (http://docs.aws.amazon.com/eks/latest/userguide/managing-auth.html) and Launching Amazon EKS Worker Nodes (http://docs.aws.amazon.com/eks/latest/userguide/launch-workers.html)in the Amazon EKS User Guide.

DeleteCluster

Name => Str

Each argument is described in detail in: Paws::EKS::DeleteCluster

Returns: a Paws::EKS::DeleteClusterResponse instance

Deletes the Amazon EKS cluster control plane.

If you have active services in your cluster that are associated with a load balancer, you must delete those services before deleting the cluster so that the load balancers are deleted properly. Otherwise, you can have orphaned resources in your VPC that prevent you from being able to delete the VPC. For more information, see Deleting a Cluster (http://docs.aws.amazon.com/eks/latest/userguide/delete-cluster.html) in the Amazon EKS User Guide.

DescribeCluster

Name => Str

Each argument is described in detail in: Paws::EKS::DescribeCluster

Returns: a Paws::EKS::DescribeClusterResponse instance

Returns descriptive information about an Amazon EKS cluster.

The API server endpoint and certificate authority data returned by this operation are required for kubelet and kubectl to communicate with your Kubernetes API server. For more information, see Create a kubeconfig for Amazon EKS (http://docs.aws.amazon.com/eks/latest/userguide/create-kubeconfig.html).

The API server endpoint and certificate authority data are not available until the cluster reaches the ACTIVE state.

DescribeUpdate

Name => Str
UpdateId => Str

Each argument is described in detail in: Paws::EKS::DescribeUpdate

Returns: a Paws::EKS::DescribeUpdateResponse instance

Returns descriptive information about an update against your Amazon EKS cluster.

When the status of the update is Succeeded, the update is complete. If an update fails, the status is Failed, and an error detail explains the reason for the failure.

ListClusters

[MaxResults => Int]
[NextToken => Str]

Each argument is described in detail in: Paws::EKS::ListClusters

Returns: a Paws::EKS::ListClustersResponse instance

Lists the Amazon EKS clusters in your AWS account in the specified Region.

ListUpdates

Name => Str
[MaxResults => Int]
[NextToken => Str]

Each argument is described in detail in: Paws::EKS::ListUpdates

Returns: a Paws::EKS::ListUpdatesResponse instance

Lists the updates associated with an Amazon EKS cluster in your AWS account, in the specified Region.

UpdateClusterVersion

Name => Str
Version => Str
[ClientRequestToken => Str]

Each argument is described in detail in: Paws::EKS::UpdateClusterVersion

Returns: a Paws::EKS::UpdateClusterVersionResponse instance

Updates an Amazon EKS cluster to the specified Kubernetes version. Your cluster continues to function during the update. The response output includes an update ID that you can use to track the status of your cluster update with the DescribeUpdate API operation.

Cluster updates are asynchronous, and they should finish within a few minutes. During an update, the cluster status moves to UPDATING (this status transition is eventually consistent). When the update is complete (either Failed or Successful), the cluster status moves to Active.

PAGINATORS

Paginator methods are helpers that repetively call methods that return partial results

ListAllClusters(sub { },[MaxResults => Int, NextToken => Str])

ListAllClusters([MaxResults => Int, NextToken => Str])

If passed a sub as first parameter, it will call the sub for each element found in :

 - clusters, passing the object as the first parameter, and the string 'clusters' as the second parameter 

If not, it will return a a Paws::EKS::ListClustersResponse instance with all the params; from all the responses. Please take into account that this mode can potentially consume vasts ammounts of memory.

ListAllUpdates(sub { },Name => Str, [MaxResults => Int, NextToken => Str])

ListAllUpdates(Name => Str, [MaxResults => Int, NextToken => Str])

If passed a sub as first parameter, it will call the sub for each element found in :

 - updateIds, passing the object as the first parameter, and the string 'updateIds' as the second parameter 

If not, it will return a a Paws::EKS::ListUpdatesResponse instance with all the params; from all the responses. Please take into account that this mode can potentially consume vasts ammounts of memory.

SEE ALSO

This service class forms part of Paws

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues