Skip to content

Instantly share code, notes, and snippets.

@mdesanti
Created October 16, 2018 12:34
Show Gist options
  • Save mdesanti/112036e9cf1d66873c8c1d87465a2e4b to your computer and use it in GitHub Desktop.
Save mdesanti/112036e9cf1d66873c8c1d87465a2e4b to your computer and use it in GitHub Desktop.
eksctl logs
2018-10-15T11:04:04-03:00 [ℹ] using region us-east-1
2018-10-15T11:04:05-03:00 [▶] role ARN for the current session is "arn:aws:iam::832293009740:user/matias.desanti"
2018-10-15T11:04:06-03:00 [▶] resolving AMI using StaticGPUResolver for region us-east-1 and instanceType m5.large
2018-10-15T11:04:06-03:00 [▶] can't resolve AMI using StaticGPUResolver as instance type m5.large is non-GPU
2018-10-15T11:04:06-03:00 [▶] resolving AMI using StaticDefaultResolver for region us-east-1 and instanceType m5.large
2018-10-15T11:04:07-03:00 [ℹ] using "ami-0440e4f6b9713faf6" for nodes
2018-10-15T11:04:07-03:00 [▶] cfg = &api.ClusterConfig{Region:"us-east-1", Profile:"", Tags:map[string]string{}, ClusterName:"floral-monster-1539612246", NodeAMI:"ami-0440e4f6b9713faf6", NodeType:"m5.large", Nodes:2, MinNodes:0, MaxNodes:0, NodeVolumeSize:0, MaxPodsPerNode:0, NodePolicyARNs:[]string(nil), NodeSSH:false, SSHPublicKeyPath:"~/.ssh/id_rsa.pub", SSHPublicKey:[]uint8(nil), SSHPublicKeyName:"", WaitTimeout:1200000000000, SecurityGroup:"", Subnets:[]string(nil), VPC:"", Endpoint:"", CertificateAuthorityData:[]uint8(nil), ARN:"", ClusterStackName:"", NodeInstanceRoleARN:"", AvailabilityZones:[]string{"us-east-1a", "us-east-1b", "us-east-1c"}, Addons:api.ClusterAddons{WithIAM:api.AddonIAM{PolicyAmazonEC2ContainerRegistryPowerUser:false}, Storage:true}}
2018-10-15T11:04:07-03:00 [ℹ] creating EKS cluster "floral-monster-1539612246" in "us-east-1" region
2018-10-15T11:04:07-03:00 [▶] tags = []*cloudformation.Tag{{
Key: "eksctl.cluster.k8s.io/v1alpha1/cluster-name",
Value: "floral-monster-1539612246"
}}
2018-10-15T11:04:07-03:00 [ℹ] will create 2 separate CloudFormation stacks for cluster itself and the initial nodegroup
2018-10-15T11:04:07-03:00 [ℹ] if you encounter any issues, check CloudFormation console or try 'eksctl utils describe-stacks --region=us-east-1 --name=floral-monster-1539612246'
2018-10-15T11:04:07-03:00 [▶] waiting for 1 tasks to complete
2018-10-15T11:04:07-03:00 [▶] task 0 started
2018-10-15T11:04:07-03:00 [ℹ] creating cluster stack "eksctl-floral-monster-1539612246-cluster"
2018-10-15T11:04:07-03:00 [▶] templateBody = {"AWSTemplateFormatVersion":"2010-09-09","Description":"EKS cluster (with dedicated VPC \u0026 IAM role) [created and managed by eksctl]","Resources":{"ControlPlane":{"Type":"AWS::EKS::Cluster","Properties":{"Name":"floral-monster-1539612246","ResourcesVpcConfig":{"SecurityGroupIds":[{"Ref":"ControlPlaneSecurityGroup"}],"SubnetIds":[{"Ref":"SubnetUSEAST1A"},{"Ref":"SubnetUSEAST1B"},{"Ref":"SubnetUSEAST1C"}]},"RoleArn":{"Fn::GetAtt":"ServiceRole.Arn"},"Version":"1.10"}},"ControlPlaneSecurityGroup":{"Type":"AWS::EC2::SecurityGroup","Properties":{"GroupDescription":"Communication between the control plane and worker node groups","Tags":[{"Key":"Name","Value":{"Fn::Sub":"${AWS::StackName}/ControlPlaneSecurityGroup"}}],"VpcId":{"Ref":"VPC"}}},"InternetGateway":{"Type":"AWS::EC2::InternetGateway","Properties":{"Tags":[{"Key":"Name","Value":{"Fn::Sub":"${AWS::StackName}/InternetGateway"}}]}},"PolicyNLB":{"Type":"AWS::IAM::Policy","Properties":{"PolicyDocument":{"Statement":[{"Action":["elasticloadbalancing:*","ec2:CreateSecurityGroup","ec2:Describe*"],"Effect":"Allow","Resource":"*"}],"Version":"2012-10-17"},"PolicyName":{"Fn::Sub":"${AWS::StackName}-PolicyNLB"},"Roles":[{"Ref":"ServiceRole"}]}},"PublicSubnetRoute":{"Type":"AWS::EC2::Route","Properties":{"DestinationCidrBlock":"0.0.0.0/0","GatewayId":{"Ref":"InternetGateway"},"RouteTableId":{"Ref":"RouteTable"}}},"RouteTable":{"Type":"AWS::EC2::RouteTable","Properties":{"Tags":[{"Key":"Name","Value":{"Fn::Sub":"${AWS::StackName}/RouteTable"}}],"VpcId":{"Ref":"VPC"}}},"RouteTableAssociationUSEAST1A":{"Type":"AWS::EC2::SubnetRouteTableAssociation","Properties":{"RouteTableId":{"Ref":"RouteTable"},"SubnetId":{"Ref":"SubnetUSEAST1A"}}},"RouteTableAssociationUSEAST1B":{"Type":"AWS::EC2::SubnetRouteTableAssociation","Properties":{"RouteTableId":{"Ref":"RouteTable"},"SubnetId":{"Ref":"SubnetUSEAST1B"}}},"RouteTableAssociationUSEAST1C":{"Type":"AWS::EC2::SubnetRouteTableAssociation","Properties":{"RouteTableId":{"Ref":"RouteTable"},"SubnetId":{"Ref":"SubnetUSEAST1C"}}},"ServiceRole":{"Type":"AWS::IAM::Role","Properties":{"AssumeRolePolicyDocument":{"Statement":[{"Action":["sts:AssumeRole"],"Effect":"Allow","Principal":{"Service":["eks.amazonaws.com"]}}],"Version":"2012-10-17"},"ManagedPolicyArns":["arn:aws:iam::aws:policy/AmazonEKSServicePolicy","arn:aws:iam::aws:policy/AmazonEKSClusterPolicy"]}},"SubnetUSEAST1A":{"Type":"AWS::EC2::Subnet","Properties":{"AvailabilityZone":"us-east-1a","CidrBlock":"192.168.64.0/18","Tags":[{"Key":"Name","Value":{"Fn::Sub":"${AWS::StackName}/SubnetUSEAST1A"}}],"VpcId":{"Ref":"VPC"}}},"SubnetUSEAST1B":{"Type":"AWS::EC2::Subnet","Properties":{"AvailabilityZone":"us-east-1b","CidrBlock":"192.168.128.0/18","Tags":[{"Key":"Name","Value":{"Fn::Sub":"${AWS::StackName}/SubnetUSEAST1B"}}],"VpcId":{"Ref":"VPC"}}},"SubnetUSEAST1C":{"Type":"AWS::EC2::Subnet","Properties":{"AvailabilityZone":"us-east-1c","CidrBlock":"192.168.192.0/18","Tags":[{"Key":"Name","Value":{"Fn::Sub":"${AWS::StackName}/SubnetUSEAST1C"}}],"VpcId":{"Ref":"VPC"}}},"VPC":{"Type":"AWS::EC2::VPC","Properties":{"CidrBlock":"192.168.0.0/16","EnableDnsHostnames":true,"EnableDnsSupport":true,"Tags":[{"Key":"Name","Value":{"Fn::Sub":"${AWS::StackName}/VPC"}}]}},"VPCGatewayAttachment":{"Type":"AWS::EC2::VPCGatewayAttachment","Properties":{"InternetGatewayId":{"Ref":"InternetGateway"},"VpcId":{"Ref":"VPC"}}}},"Outputs":{"ARN":{"Export":{"Name":{"Fn::Sub":"${AWS::StackName}::ARN"}},"Value":{"Fn::GetAtt":"ControlPlane.Arn"}},"CertificateAuthorityData":{"Value":{"Fn::GetAtt":"ControlPlane.CertificateAuthorityData"}},"ClusterStackName":{"Value":{"Ref":"AWS::StackName"}},"Endpoint":{"Export":{"Name":{"Fn::Sub":"${AWS::StackName}::Endpoint"}},"Value":{"Fn::GetAtt":"ControlPlane.Endpoint"}},"SecurityGroup":{"Export":{"Name":{"Fn::Sub":"${AWS::StackName}::SecurityGroup"}},"Value":{"Fn::Join":[",",[{"Ref":"ControlPlaneSecurityGroup"}]]}},"Subnets":{"Export":{"Name":{"Fn::Sub":"${AWS::StackName}::Subnets"}},"Value":{"Fn::Join":[",",[{"Ref":"SubnetUSEAST1A"},{"Ref":"SubnetUSEAST1B"},{"Ref":"SubnetUSEAST1C"}]]}},"VPC":{"Export":{"Name":{"Fn::Sub":"${AWS::StackName}::VPC"}},"Value":{"Ref":"VPC"}}}}
2018-10-15T11:04:07-03:00 [▶] input = {
Capabilities: ["CAPABILITY_IAM"],
StackName: "eksctl-floral-monster-1539612246-cluster",
Tags: [{
Key: "eksctl.cluster.k8s.io/v1alpha1/cluster-name",
Value: "floral-monster-1539612246"
}],
TemplateBody: "{\"AWSTemplateFormatVersion\":\"2010-09-09\",\"Description\":\"EKS cluster (with dedicated VPC \\u0026 IAM role) [created and managed by eksctl]\",\"Resources\":{\"ControlPlane\":{\"Type\":\"AWS::EKS::Cluster\",\"Properties\":{\"Name\":\"floral-monster-1539612246\",\"ResourcesVpcConfig\":{\"SecurityGroupIds\":[{\"Ref\":\"ControlPlaneSecurityGroup\"}],\"SubnetIds\":[{\"Ref\":\"SubnetUSEAST1A\"},{\"Ref\":\"SubnetUSEAST1B\"},{\"Ref\":\"SubnetUSEAST1C\"}]},\"RoleArn\":{\"Fn::GetAtt\":\"ServiceRole.Arn\"},\"Version\":\"1.10\"}},\"ControlPlaneSecurityGroup\":{\"Type\":\"AWS::EC2::SecurityGroup\",\"Properties\":{\"GroupDescription\":\"Communication between the control plane and worker node groups\",\"Tags\":[{\"Key\":\"Name\",\"Value\":{\"Fn::Sub\":\"${AWS::StackName}/ControlPlaneSecurityGroup\"}}],\"VpcId\":{\"Ref\":\"VPC\"}}},\"InternetGateway\":{\"Type\":\"AWS::EC2::InternetGateway\",\"Properties\":{\"Tags\":[{\"Key\":\"Name\",\"Value\":{\"Fn::Sub\":\"${AWS::StackName}/InternetGateway\"}}]}},\"PolicyNLB\":{\"Type\":\"AWS::IAM::Policy\",\"Properties\":{\"PolicyDocument\":{\"Statement\":[{\"Action\":[\"elasticloadbalancing:*\",\"ec2:CreateSecurityGroup\",\"ec2:Describe*\"],\"Effect\":\"Allow\",\"Resource\":\"*\"}],\"Version\":\"2012-10-17\"},\"PolicyName\":{\"Fn::Sub\":\"${AWS::StackName}-PolicyNLB\"},\"Roles\":[{\"Ref\":\"ServiceRole\"}]}},\"PublicSubnetRoute\":{\"Type\":\"AWS::EC2::Route\",\"Properties\":{\"DestinationCidrBlock\":\"0.0.0.0/0\",\"GatewayId\":{\"Ref\":\"InternetGateway\"},\"RouteTableId\":{\"Ref\":\"RouteTable\"}}},\"RouteTable\":{\"Type\":\"AWS::EC2::RouteTable\",\"Properties\":{\"Tags\":[{\"Key\":\"Name\",\"Value\":{\"Fn::Sub\":\"${AWS::StackName}/RouteTable\"}}],\"VpcId\":{\"Ref\":\"VPC\"}}},\"RouteTableAssociationUSEAST1A\":{\"Type\":\"AWS::EC2::SubnetRouteTableAssociation\",\"Properties\":{\"RouteTableId\":{\"Ref\":\"RouteTable\"},\"SubnetId\":{\"Ref\":\"SubnetUSEAST1A\"}}},\"RouteTableAssociationUSEAST1B\":{\"Type\":\"AWS::EC2::SubnetRouteTableAssociation\",\"Properties\":{\"RouteTableId\":{\"Ref\":\"RouteTable\"},\"SubnetId\":{\"Ref\":\"SubnetUSEAST1B\"}}},\"RouteTableAssociationUSEAST1C\":{\"Type\":\"AWS::EC2::SubnetRouteTableAssociation\",\"Properties\":{\"RouteTableId\":{\"Ref\":\"RouteTable\"},\"SubnetId\":{\"Ref\":\"SubnetUSEAST1C\"}}},\"ServiceRole\":{\"Type\":\"AWS::IAM::Role\",\"Properties\":{\"AssumeRolePolicyDocument\":{\"Statement\":[{\"Action\":[\"sts:AssumeRole\"],\"Effect\":\"Allow\",\"Principal\":{\"Service\":[\"eks.amazonaws.com\"]}}],\"Version\":\"2012-10-17\"},\"ManagedPolicyArns\":[\"arn:aws:iam::aws:policy/AmazonEKSServicePolicy\",\"arn:aws:iam::aws:policy/AmazonEKSClusterPolicy\"]}},\"SubnetUSEAST1A\":{\"Type\":\"AWS::EC2::Subnet\",\"Properties\":{\"AvailabilityZone\":\"us-east-1a\",\"CidrBlock\":\"192.168.64.0/18\",\"Tags\":[{\"Key\":\"Name\",\"Value\":{\"Fn::Sub\":\"${AWS::StackName}/SubnetUSEAST1A\"}}],\"VpcId\":{\"Ref\":\"VPC\"}}},\"SubnetUSEAST1B\":{\"Type\":\"AWS::EC2::Subnet\",\"Properties\":{\"AvailabilityZone\":\"us-east-1b\",\"CidrBlock\":\"192.168.128.0/18\",\"Tags\":[{\"Key\":\"Name\",\"Value\":{\"Fn::Sub\":\"${AWS::StackName}/SubnetUSEAST1B\"}}],\"VpcId\":{\"Ref\":\"VPC\"}}},\"SubnetUSEAST1C\":{\"Type\":\"AWS::EC2::Subnet\",\"Properties\":{\"AvailabilityZone\":\"us-east-1c\",\"CidrBlock\":\"192.168.192.0/18\",\"Tags\":[{\"Key\":\"Name\",\"Value\":{\"Fn::Sub\":\"${AWS::StackName}/SubnetUSEAST1C\"}}],\"VpcId\":{\"Ref\":\"VPC\"}}},\"VPC\":{\"Type\":\"AWS::EC2::VPC\",\"Properties\":{\"CidrBlock\":\"192.168.0.0/16\",\"EnableDnsHostnames\":true,\"EnableDnsSupport\":true,\"Tags\":[{\"Key\":\"Name\",\"Value\":{\"Fn::Sub\":\"${AWS::StackName}/VPC\"}}]}},\"VPCGatewayAttachment\":{\"Type\":\"AWS::EC2::VPCGatewayAttachment\",\"Properties\":{\"InternetGatewayId\":{\"Ref\":\"InternetGateway\"},\"VpcId\":{\"Ref\":\"VPC\"}}}},\"Outputs\":{\"ARN\":{\"Export\":{\"Name\":{\"Fn::Sub\":\"${AWS::StackName}::ARN\"}},\"Value\":{\"Fn::GetAtt\":\"ControlPlane.Arn\"}},\"CertificateAuthorityData\":{\"Value\":{\"Fn::GetAtt\":\"ControlPlane.CertificateAuthorityData\"}},\"ClusterStackName\":{\"Value\":{\"Ref\":\"AWS::StackName\"}},\"Endpoint\":{\"Export\":{\"Name\":{\"Fn::Sub\":\"${AWS::StackName}::Endpoint\"}},\"Value\":{\"Fn::GetAtt\":\"ControlPlane.Endpoint\"}},\"SecurityGroup\":{\"Export\":{\"Name\":{\"Fn::Sub\":\"${AWS::StackName}::SecurityGroup\"}},\"Value\":{\"Fn::Join\":[\",\",[{\"Ref\":\"ControlPlaneSecurityGroup\"}]]}},\"Subnets\":{\"Export\":{\"Name\":{\"Fn::Sub\":\"${AWS::StackName}::Subnets\"}},\"Value\":{\"Fn::Join\":[\",\",[{\"Ref\":\"SubnetUSEAST1A\"},{\"Ref\":\"SubnetUSEAST1B\"},{\"Ref\":\"SubnetUSEAST1C\"}]]}},\"VPC\":{\"Export\":{\"Name\":{\"Fn::Sub\":\"${AWS::StackName}::VPC\"}},\"Value\":{\"Ref\":\"VPC\"}}}}"
}
2018-10-15T11:04:08-03:00 [▶] stack = {
StackId: "arn:aws:cloudformation:us-east-1:832293009740:stack/eksctl-floral-monster-1539612246-cluster/2f59fd40-d083-11e8-8145-50d5ca6e60e6"
}
2018-10-15T11:04:08-03:00 [▶] start waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:04:08-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:04:26-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:04:46-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:05:06-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:05:26-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:05:45-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:06:06-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:06:25-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:06:43-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:07:03-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:07:20-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:07:38-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:07:58-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:08:19-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:08:39-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:08:59-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:09:20-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:09:36-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:09:53-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:10:10-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:10:28-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:10:47-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:11:06-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:11:22-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:11:39-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:11:59-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:12:17-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:12:36-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:12:53-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:13:10-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:13:30-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:13:47-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:14:05-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:14:23-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:14:40-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:15:01-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:15:01-03:00 [▶] done after 10m53.347020449s of waiting for CloudFormation stack "eksctl-floral-monster-1539612246-cluster" to reach "CREATE_COMPLETE" status
2018-10-15T11:15:02-03:00 [▶] processing stack outputs
2018-10-15T11:15:02-03:00 [▶] obj = &api.ClusterConfig{Region:"us-east-1", Profile:"", Tags:map[string]string{}, ClusterName:"floral-monster-1539612246", NodeAMI:"ami-0440e4f6b9713faf6", NodeType:"m5.large", Nodes:2, MinNodes:0, MaxNodes:0, NodeVolumeSize:0, MaxPodsPerNode:0, NodePolicyARNs:[]string(nil), NodeSSH:false, SSHPublicKeyPath:"~/.ssh/id_rsa.pub", SSHPublicKey:[]uint8(nil), SSHPublicKeyName:"", WaitTimeout:1200000000000, SecurityGroup:"sg-053c27a2b5d0f8135", Subnets:[]string{"subnet-055e69a4642ed3988", "subnet-084d095c679e05059", "subnet-08a4873e1806e9628"}, VPC:"vpc-0f117eac3e633e5df", Endpoint:"https://D4AC1342560A057C2A54C73D0212EBA3.yl4.us-east-1.eks.amazonaws.com", CertificateAuthorityData:[]uint8{0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x42, 0x45, 0x47, 0x49, 0x4e, 0x20, 0x43, 0x45, 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0xa, 0x4d, 0x49, 0x49, 0x43, 0x79, 0x44, 0x43, 0x43, 0x41, 0x62, 0x43, 0x67, 0x41, 0x77, 0x49, 0x42, 0x41, 0x67, 0x49, 0x42, 0x41, 0x44, 0x41, 0x4e, 0x42, 0x67, 0x6b, 0x71, 0x68, 0x6b, 0x69, 0x47, 0x39, 0x77, 0x30, 0x42, 0x41, 0x51, 0x73, 0x46, 0x41, 0x44, 0x41, 0x56, 0x4d, 0x52, 0x4d, 0x77, 0x45, 0x51, 0x59, 0x44, 0x56, 0x51, 0x51, 0x44, 0x45, 0x77, 0x70, 0x72, 0x64, 0x57, 0x4a, 0x6c, 0xa, 0x63, 0x6d, 0x35, 0x6c, 0x64, 0x47, 0x56, 0x7a, 0x4d, 0x42, 0x34, 0x58, 0x44, 0x54, 0x45, 0x34, 0x4d, 0x54, 0x41, 0x78, 0x4e, 0x54, 0x45, 0x30, 0x4d, 0x54, 0x49, 0x77, 0x4e, 0x6c, 0x6f, 0x58, 0x44, 0x54, 0x49, 0x34, 0x4d, 0x54, 0x41, 0x78, 0x4d, 0x6a, 0x45, 0x30, 0x4d, 0x54, 0x49, 0x77, 0x4e, 0x6c, 0x6f, 0x77, 0x46, 0x54, 0x45, 0x54, 0x4d, 0x42, 0x45, 0x47, 0x41, 0x31, 0x55, 0x45, 0xa, 0x41, 0x78, 0x4d, 0x4b, 0x61, 0x33, 0x56, 0x69, 0x5a, 0x58, 0x4a, 0x75, 0x5a, 0x58, 0x52, 0x6c, 0x63, 0x7a, 0x43, 0x43, 0x41, 0x53, 0x49, 0x77, 0x44, 0x51, 0x59, 0x4a, 0x4b, 0x6f, 0x5a, 0x49, 0x68, 0x76, 0x63, 0x4e, 0x41, 0x51, 0x45, 0x42, 0x42, 0x51, 0x41, 0x44, 0x67, 0x67, 0x45, 0x50, 0x41, 0x44, 0x43, 0x43, 0x41, 0x51, 0x6f, 0x43, 0x67, 0x67, 0x45, 0x42, 0x41, 0x4d, 0x76, 0x56, 0xa, 0x77, 0x54, 0x6b, 0x69, 0x4f, 0x58, 0x6e, 0x31, 0x6e, 0x30, 0x65, 0x41, 0x78, 0x51, 0x5a, 0x36, 0x4d, 0x78, 0x6b, 0x44, 0x44, 0x56, 0x37, 0x33, 0x4a, 0x35, 0x68, 0x53, 0x56, 0x35, 0x74, 0x2f, 0x71, 0x54, 0x64, 0x33, 0x59, 0x49, 0x2f, 0x44, 0x45, 0x50, 0x48, 0x31, 0x6d, 0x61, 0x49, 0x79, 0x4d, 0x4b, 0x64, 0x69, 0x5a, 0x71, 0x49, 0x48, 0x59, 0x48, 0x44, 0x4b, 0x38, 0x2b, 0x51, 0x7a, 0xa, 0x73, 0x37, 0x66, 0x52, 0x79, 0x39, 0x6a, 0x41, 0x4b, 0x32, 0x6a, 0x67, 0x45, 0x64, 0x61, 0x6b, 0x52, 0x4f, 0x31, 0x51, 0x66, 0x4c, 0x31, 0x41, 0x5a, 0x49, 0x6f, 0x41, 0x33, 0x2b, 0x71, 0x47, 0x4b, 0x78, 0x55, 0x54, 0x78, 0x43, 0x65, 0x72, 0x68, 0x72, 0x33, 0x61, 0x6b, 0x75, 0x61, 0x75, 0x66, 0x4c, 0x32, 0x7a, 0x6d, 0x79, 0x45, 0x30, 0x62, 0x2f, 0x57, 0x76, 0x58, 0x66, 0x74, 0x74, 0xa, 0x31, 0x4b, 0x59, 0x4f, 0x6a, 0x32, 0x65, 0x4d, 0x71, 0x35, 0x32, 0x41, 0x62, 0x78, 0x67, 0x66, 0x67, 0x77, 0x4b, 0x67, 0x6c, 0x6e, 0x72, 0x4a, 0x4f, 0x58, 0x58, 0x63, 0x4e, 0x58, 0x6c, 0x48, 0x56, 0x50, 0x37, 0x54, 0x30, 0x31, 0x50, 0x36, 0x73, 0x64, 0x4b, 0x75, 0x79, 0x59, 0x4d, 0x79, 0x52, 0x51, 0x2f, 0x44, 0x76, 0x54, 0x35, 0x61, 0x76, 0x50, 0x2f, 0x58, 0x56, 0x39, 0x72, 0x50, 0xa, 0x58, 0x38, 0x77, 0x6b, 0x37, 0x77, 0x54, 0x48, 0x56, 0x78, 0x72, 0x4a, 0x44, 0x70, 0x72, 0x4e, 0x36, 0x5a, 0x44, 0x31, 0x67, 0x49, 0x30, 0x56, 0x74, 0x53, 0x72, 0x57, 0x32, 0x35, 0x79, 0x4c, 0x59, 0x56, 0x42, 0x75, 0x70, 0x6e, 0x58, 0x41, 0x51, 0x74, 0x67, 0x4d, 0x39, 0x4a, 0x66, 0x56, 0x4a, 0x34, 0x71, 0x6b, 0x73, 0x42, 0x56, 0x7a, 0x5a, 0x49, 0x7a, 0x61, 0x37, 0x49, 0x52, 0x67, 0xa, 0x37, 0x63, 0x71, 0x67, 0x7a, 0x42, 0x2f, 0x63, 0x6b, 0x67, 0x78, 0x64, 0x6b, 0x79, 0x73, 0x66, 0x44, 0x4e, 0x45, 0x61, 0x6c, 0x5a, 0x61, 0x57, 0x57, 0x43, 0x6f, 0x64, 0x77, 0x44, 0x7a, 0x4c, 0x79, 0x2f, 0x6e, 0x38, 0x66, 0x68, 0x30, 0x68, 0x69, 0x6e, 0x52, 0x53, 0x61, 0x61, 0x52, 0x42, 0x6e, 0x4e, 0x6d, 0x33, 0x57, 0x2f, 0x38, 0x76, 0x4f, 0x51, 0x72, 0x36, 0x59, 0x42, 0x2f, 0x45, 0xa, 0x47, 0x4c, 0x72, 0x78, 0x70, 0x34, 0x39, 0x59, 0x6d, 0x52, 0x70, 0x55, 0x43, 0x77, 0x6f, 0x79, 0x61, 0x5a, 0x73, 0x43, 0x41, 0x77, 0x45, 0x41, 0x41, 0x61, 0x4d, 0x6a, 0x4d, 0x43, 0x45, 0x77, 0x44, 0x67, 0x59, 0x44, 0x56, 0x52, 0x30, 0x50, 0x41, 0x51, 0x48, 0x2f, 0x42, 0x41, 0x51, 0x44, 0x41, 0x67, 0x4b, 0x6b, 0x4d, 0x41, 0x38, 0x47, 0x41, 0x31, 0x55, 0x64, 0x45, 0x77, 0x45, 0x42, 0xa, 0x2f, 0x77, 0x51, 0x46, 0x4d, 0x41, 0x4d, 0x42, 0x41, 0x66, 0x38, 0x77, 0x44, 0x51, 0x59, 0x4a, 0x4b, 0x6f, 0x5a, 0x49, 0x68, 0x76, 0x63, 0x4e, 0x41, 0x51, 0x45, 0x4c, 0x42, 0x51, 0x41, 0x44, 0x67, 0x67, 0x45, 0x42, 0x41, 0x4c, 0x6c, 0x33, 0x69, 0x34, 0x70, 0x63, 0x57, 0x78, 0x30, 0x51, 0x75, 0x4b, 0x43, 0x75, 0x46, 0x63, 0x70, 0x50, 0x33, 0x45, 0x6d, 0x62, 0x5a, 0x53, 0x58, 0x2b, 0xa, 0x59, 0x36, 0x53, 0x6a, 0x68, 0x34, 0x2b, 0x30, 0x4f, 0x77, 0x4f, 0x79, 0x6d, 0x35, 0x54, 0x50, 0x33, 0x51, 0x71, 0x74, 0x56, 0x7a, 0x64, 0x62, 0x76, 0x44, 0x69, 0x70, 0x5a, 0x32, 0x47, 0x4a, 0x6c, 0x4b, 0x79, 0x69, 0x39, 0x32, 0x38, 0x65, 0x45, 0x45, 0x2b, 0x50, 0x7a, 0x54, 0x70, 0x49, 0x33, 0x52, 0x50, 0x46, 0x6e, 0x73, 0x73, 0x49, 0x34, 0x2f, 0x66, 0x54, 0x73, 0x4a, 0x41, 0x45, 0xa, 0x54, 0x42, 0x61, 0x6e, 0x38, 0x77, 0x45, 0x6f, 0x78, 0x6d, 0x6a, 0x4c, 0x74, 0x4d, 0x48, 0x68, 0x6a, 0x56, 0x79, 0x68, 0x4c, 0x4f, 0x78, 0x6d, 0x2f, 0x53, 0x5a, 0x33, 0x5a, 0x36, 0x31, 0x78, 0x39, 0x51, 0x49, 0x79, 0x63, 0x75, 0x4f, 0x32, 0x68, 0x30, 0x42, 0x4e, 0x6f, 0x70, 0x52, 0x57, 0x4a, 0x4a, 0x41, 0x43, 0x64, 0x44, 0x38, 0x59, 0x42, 0x63, 0x55, 0x67, 0x51, 0x6c, 0x57, 0x61, 0xa, 0x52, 0x4b, 0x6a, 0x53, 0x4d, 0x67, 0x33, 0x68, 0x67, 0x70, 0x38, 0x5a, 0x68, 0x35, 0x79, 0x33, 0x52, 0x33, 0x6a, 0x46, 0x35, 0x51, 0x69, 0x74, 0x4b, 0x58, 0x53, 0x79, 0x62, 0x78, 0x68, 0x6e, 0x4b, 0x4b, 0x4e, 0x4e, 0x55, 0x34, 0x59, 0x37, 0x4e, 0x62, 0x32, 0x67, 0x61, 0x47, 0x32, 0x47, 0x52, 0x39, 0x33, 0x35, 0x74, 0x58, 0x35, 0x62, 0x59, 0x53, 0x53, 0x72, 0x47, 0x63, 0x69, 0x68, 0xa, 0x66, 0x56, 0x71, 0x37, 0x6a, 0x32, 0x45, 0x4a, 0x2b, 0x51, 0x62, 0x7a, 0x31, 0x35, 0x54, 0x30, 0x41, 0x6b, 0x7a, 0x45, 0x4b, 0x4f, 0x6d, 0x37, 0x36, 0x6e, 0x42, 0x47, 0x41, 0x72, 0x73, 0x42, 0x70, 0x63, 0x5a, 0x6e, 0x4e, 0x50, 0x55, 0x53, 0x53, 0x70, 0x2b, 0x4e, 0x71, 0x46, 0x39, 0x6d, 0x79, 0x57, 0x7a, 0x6b, 0x33, 0x35, 0x35, 0x74, 0x45, 0x43, 0x76, 0x79, 0x50, 0x63, 0x33, 0x6d, 0xa, 0x32, 0x32, 0x66, 0x30, 0x7a, 0x32, 0x49, 0x51, 0x56, 0x44, 0x41, 0x47, 0x45, 0x50, 0x4a, 0x51, 0x55, 0x6a, 0x31, 0x4d, 0x30, 0x56, 0x33, 0x6e, 0x4a, 0x68, 0x72, 0x33, 0x77, 0x73, 0x47, 0x6f, 0x53, 0x49, 0x5a, 0x2f, 0x31, 0x68, 0x4a, 0x4a, 0x4d, 0x72, 0x74, 0x43, 0x5a, 0x65, 0x46, 0x77, 0x4e, 0x74, 0x74, 0x64, 0x5a, 0x55, 0x68, 0x57, 0x59, 0x6c, 0x49, 0x3d, 0xa, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x45, 0x4e, 0x44, 0x20, 0x43, 0x45, 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0xa}, ARN:"arn:aws:eks:us-east-1:832293009740:cluster/floral-monster-1539612246", ClusterStackName:"eksctl-floral-monster-1539612246-cluster", NodeInstanceRoleARN:"", AvailabilityZones:[]string{"us-east-1a", "us-east-1b", "us-east-1c"}, Addons:api.ClusterAddons{WithIAM:api.AddonIAM{PolicyAmazonEC2ContainerRegistryPowerUser:false}, Storage:true}}
2018-10-15T11:15:02-03:00 [▶] task 0 returned without errors
2018-10-15T11:15:02-03:00 [▶] waiting for 1 tasks to complete
2018-10-15T11:15:02-03:00 [▶] task 0 started
2018-10-15T11:15:02-03:00 [ℹ] creating nodegroup stack "eksctl-floral-monster-1539612246-nodegroup-0"
2018-10-15T11:15:02-03:00 [▶] user-data = H4sIAAAAAAAA/6xYa3PiONb+nl/ht7s/zFTa+AYkoYq31sYOMWDAQLjtbqWELWzFtuRIMgZ6+79v2SZpkvTsZHvWqUrqSEeP9JybjvLZi0nmix7BWxRcpMCLQABZS8BZHF/QDHuJ37oQBVGQdoBKMdpI5QKJeRSlnEkppCLCjAPsQWlDCGecgrQGYrXGwoucIg4ftiiGrEDxCOYQ85bwrwtBEITPAoyYx2ORpdBDW+QJ7MA4THzBpyQVERYyjLiwJVSIsg2MIf9aCnoCjgQLA4SzvaAKv+kD9feLEvHvU0h3yIP/POEPiAdiIYEc+IADIQUUJJBDylrCxOrao+FXQV9MH0zrVr8fzB6qsXKthXeIEpxAzG9RDNsS5J5UHVd6xqtBvDtt1I3JBsQCwL7AOODIe7WXoy8fxiNz+lXoDO6nM2vyYA6nf7rNifPZLhUdTLD4k02GI9N6sMcfho0LsBK8WrKH3pQDyttvRCljVNog/LxQ+EepIAiiCHyfQsbacq38OZvBxIciSttfvp2O9f1s0oszxiEVfczaX76dmeRcKQF7MSV+ofFsvvNpkPEQYo48wBHBIicRxGIONyEh0Rs1QtGx0kqID9uL90pxTHIxpWiHYhhAv81pBs/mU+KLCG8pKNKEA4SLmE9AANtNWa3LilLX6g215ke0Bj1a+/LtfUx9r4EyaEHOah5JCl9IKcgYFEHiN+straa8MlCRkyklO+RD2gY5+5n1SAIQbp/Eyp3nahiJG4RFH9G2RFIueRgVbnyjUiR+pVOESKGDIa/551ovnGmGOUpg2ydeBOm5tyHPCY3ENM6C4kgYna8PKMlS0adoB2m7krbnhCgMUMmoCJq3ti+CripO74K4Gq4dQHLOewsBzygUA8Aha08IBxz2q8gtigOkHUh5UWwAf7cZwAQfEpKxMm7aWxAz+MryCGIuekDcvk0qD9Q8yi8EgeQY0pZACeGt4teFIKSAhy2h1D7Vt9Pfl1RkVdWq+ZIiiwVizMsKWjAsACBNEGOIYNYSPsnNev3T+2IKUjSHtFBqCTulHDqFBmuVkvgst06EBMH7YYrnTOGH01HfEqs+VpqwJYScp6wlSWZd7yhaXW00ZV1uXHVUvVHvXGmmrCqqZeha7RDXaxkTIWBcVGowYq8T4QSMQQJbwjYmFMRiQnAZDkpDu2kqqlpvvkbweFxDpGJY2GDPfzCs5DOGJ8q/gF18GSvWntz0t1/BqJj9OoKXUVoG3YnZX4CKEPZbQqe66YuBlMItpBB7xYX/7fvFM+MXc/7Vw58M+GJOuIfeD+l1zFbJVXtd12vRNashIu0UEKchUM7X0oCdY4lCeQe8GhHRK/EPCZxpeSRJQGEnkDMRgeT8oiH0TBHi3alL+rOk/3nJ+kBei+V27y+T9ou9XxSs/vTh+SId6o7V/s9cn5dYQ3M8soez9v8wnz9kjDct1Mcs8dwHtNWbUj7rHNqKXFPkogtR5P/GIT/6qw8VWbH4DKtrD4WONZnZt3ZHn1nlaHVC2+4czE5H33QCPbcNPbAN3dSHRhA9hRHq3uSyobvsVjf1uTNxcstdmXPXNa08pf6iF1cpnzRivzs/OkZ9ac6sujPT98OZJTszOx/GZGnO7HLMeXwZy29n1swxrK6u3FuVh/dOH2hztF72svVyEnvHTkef2rnprnp9srbDnTfUXcswXN0MAmusF6d2SScILEN3dvMSJJ9FaLTECpahvnfXTWcfmeb8Sus1wum8waWnma+tbMm0xndKAuyD0/fR+sm+W92Z/etL91iCsKvt5HDzqPfVx8DyQTQZKe52oOhrm+ja5VO3v7+f7TuQhlQDUQay7UA9JgdL3kiL3XLLq7tH6a9Gjyp0nhqqvtkH2yDvBzGmvdFy6Q2X8d18fDWTlXGT+f3ssHIOE1cyd7MG2I2l5fyGVl3x8jqPrvLZ3XxPe2ZKh821qQS2POdTulAbh8FqbmQpXuouD5yb3nbeqz9FzJgf1/YRXNmTqmheeU/B0ZC8KNj70YFtzaEF4jVYLDrEz83j4CDh620ohwhPpgBMDDxMtIV0vRu5tLkypMo73QHdp/WbVTJJ7zs5OYA16+i5pevAeXQ6Vm4GK3M+kce6eycZumvqQT9y9OvCvb6VW0YJIuXuraM7hr69fuvWwcmthj6INVRPvcVedrN+J7v10rFmJZv1dHlZgqya08ewfimP8tEhaczGmvvE50d/szNRula7vbh/QDfqNbSsy/FxltraZHyLGbPr0nbGenpFZ2YAfJ1bZJ88DrhzFz7OD+FgtE+k6VpbN5X9jWsfvGykhrIxJOlk0evpHd+8XhnefeDGC1CCTPqPUyfQwiC9XoeNgzbRHm8bLuL95fSw2Ye43x8O7+urq+FGDUBX7U5utAZfNjar6ZR2PRSWINv509WjavUu3c1RacxkPTpa/VFy1cRGV6fMSL01Ho7vp9P0cvh0e5McFsdIazS41dkdxp5W9SOqupWPqu3OTb1rjXvu/aPiyHMN90Kq5axLpvZaUsJez6G8s4a3+ZBzf30fLlax3f5RJqyh+bMi8aHS9NJ1fagqff6/8n3GQkGEWfWag15IhE+nt1f7y28hYby4zQUR/f5J+P+f1sE3D8KqR/V4LPgAJgSLFMYE+G/mIAabGD73CG8mWfGAPJv7Y+6/8s+Fd9a5ajQ+Xfw7AAD//2fHDH7REAAA
2018-10-15T11:15:02-03:00 [▶] templateBody = {"AWSTemplateFormatVersion":"2010-09-09","Description":"EKS nodes (Amazon Linux 2 with SSH) [created and managed by eksctl]","Resources":{"EgressInterCluster":{"Type":"AWS::EC2::SecurityGroupEgress","Properties":{"Description":"Allow control plane to communicate with worker nodes in group floral-monster-1539612246-0 (kubelet and workload TCP ports)","DestinationSecurityGroupId":{"Ref":"SG"},"FromPort":1025,"GroupId":{"Fn::ImportValue":"eksctl-floral-monster-1539612246-cluster::SecurityGroup"},"IpProtocol":"tcp","ToPort":65535}},"EgressInterClusterAPI":{"Type":"AWS::EC2::SecurityGroupEgress","Properties":{"Description":"Allow control plane to communicate with worker nodes in group floral-monster-1539612246-0 (workloads using HTTPS port, commonly used with extension API servers)","DestinationSecurityGroupId":{"Ref":"SG"},"FromPort":443,"GroupId":{"Fn::ImportValue":"eksctl-floral-monster-1539612246-cluster::SecurityGroup"},"IpProtocol":"tcp","ToPort":443}},"IngressInterCluster":{"Type":"AWS::EC2::SecurityGroupIngress","Properties":{"Description":"Allow worker nodes in group floral-monster-1539612246-0 to communicate with control plane (kubelet and workload TCP ports)","FromPort":1025,"GroupId":{"Ref":"SG"},"IpProtocol":"tcp","SourceSecurityGroupId":{"Fn::ImportValue":"eksctl-floral-monster-1539612246-cluster::SecurityGroup"},"ToPort":65535}},"IngressInterClusterAPI":{"Type":"AWS::EC2::SecurityGroupIngress","Properties":{"Description":"Allow worker nodes in group floral-monster-1539612246-0 to communicate with control plane (workloads using HTTPS port, commonly used with extension API servers)","FromPort":443,"GroupId":{"Ref":"SG"},"IpProtocol":"tcp","SourceSecurityGroupId":{"Fn::ImportValue":"eksctl-floral-monster-1539612246-cluster::SecurityGroup"},"ToPort":443}},"IngressInterClusterCP":{"Type":"AWS::EC2::SecurityGroupIngress","Properties":{"Description":"Allow control plane to receive API requests from worker nodes in group floral-monster-1539612246-0","FromPort":443,"GroupId":{"Fn::ImportValue":"eksctl-floral-monster-1539612246-cluster::SecurityGroup"},"IpProtocol":"tcp","SourceSecurityGroupId":{"Ref":"SG"},"ToPort":443}},"IngressInterSG":{"Type":"AWS::EC2::SecurityGroupIngress","Properties":{"Description":"Allow worker nodes in group floral-monster-1539612246-0 to communicate with each other (all ports)","FromPort":0,"GroupId":{"Ref":"SG"},"IpProtocol":"-1","SourceSecurityGroupId":{"Ref":"SG"},"ToPort":65535}},"NodeGroup":{"Type":"AWS::AutoScaling::AutoScalingGroup","Properties":{"DesiredCapacity":"2","LaunchConfigurationName":{"Ref":"NodeLaunchConfig"},"MaxSize":"2","MinSize":"2","Tags":[{"Key":"Name","PropagateAtLaunch":"true","Value":"floral-monster-1539612246-0-Node"},{"Key":"kubernetes.io/cluster/floral-monster-1539612246","PropagateAtLaunch":"true","Value":"owned"}],"VPCZoneIdentifier":{"Fn::Split":[",",{"Fn::ImportValue":"eksctl-floral-monster-1539612246-cluster::Subnets"}]}},"UpdatePolicy":{"AutoScalingRollingUpdate":{"MaxBatchSize":"1","MinInstancesInService":"1"}}},"NodeInstanceProfile":{"Type":"AWS::IAM::InstanceProfile","Properties":{"Path":"/","Roles":[{"Ref":"NodeInstanceRole"}]}},"NodeInstanceRole":{"Type":"AWS::IAM::Role","Properties":{"AssumeRolePolicyDocument":{"Statement":[{"Action":["sts:AssumeRole"],"Effect":"Allow","Principal":{"Service":["ec2.amazonaws.com"]}}],"Version":"2012-10-17"},"ManagedPolicyArns":["arn:aws:iam::aws:policy/AmazonEKSWorkerNodePolicy","arn:aws:iam::aws:policy/AmazonEKS_CNI_Policy","arn:aws:iam::aws:policy/AmazonEC2ContainerRegistryReadOnly"],"Path":"/"}},"NodeLaunchConfig":{"Type":"AWS::AutoScaling::LaunchConfiguration","Properties":{"AssociatePublicIpAddress":true,"IamInstanceProfile":{"Ref":"NodeInstanceProfile"},"ImageId":"ami-0440e4f6b9713faf6","InstanceType":"m5.large","SecurityGroups":[{"Ref":"SG"}],"UserData":"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"}},"PolicyStackSignal":{"Type":"AWS::IAM::Policy","Properties":{"PolicyDocument":{"Statement":[{"Action":["cloudformation:SignalResource"],"Effect":"Allow","Resource":{"Fn::Join":[":",["arn:aws:cloudformation",{"Ref":"AWS::Region"},{"Ref":"AWS::AccountId"},{"Fn::Join":["/",["stack",{"Ref":"AWS::StackName"},"*"]]}]]}}],"Version":"2012-10-17"},"PolicyName":{"Fn::Sub":"${AWS::StackName}-PolicyStackSignal"},"Roles":[{"Ref":"NodeInstanceRole"}]}},"PolicyTagDiscovery":{"Type":"AWS::IAM::Policy","Properties":{"PolicyDocument":{"Statement":[{"Action":["ec2:DescribeTags"],"Effect":"Allow","Resource":"*"}],"Version":"2012-10-17"},"PolicyName":{"Fn::Sub":"${AWS::StackName}-PolicyTagDiscovery"},"Roles":[{"Ref":"NodeInstanceRole"}]}},"SG":{"Type":"AWS::EC2::SecurityGroup","Properties":{"GroupDescription":"Communication between the control plane and worker nodes in group floral-monster-1539612246-0","Tags":[{"Key":"kubernetes.io/cluster/floral-monster-1539612246","Value":"owned"},{"Key":"Name","Value":{"Fn::Sub":"${AWS::StackName}/SG"}}],"VpcId":{"Fn::ImportValue":"eksctl-floral-monster-1539612246-cluster::VPC"}}}},"Outputs":{"NodeInstanceRoleARN":{"Export":{"Name":{"Fn::Sub":"${AWS::StackName}::NodeInstanceRoleARN"}},"Value":{"Fn::GetAtt":"NodeInstanceRole.Arn"}}}}
2018-10-15T11:15:02-03:00 [▶] input = {
Capabilities: ["CAPABILITY_IAM"],
StackName: "eksctl-floral-monster-1539612246-nodegroup-0",
Tags: [{
Key: "eksctl.cluster.k8s.io/v1alpha1/cluster-name",
Value: "floral-monster-1539612246"
},{
Key: "eksctl.cluster.k8s.io/v1alpha1/nodegroup-id",
Value: "0"
}],
TemplateBody: "{\"AWSTemplateFormatVersion\":\"2010-09-09\",\"Description\":\"EKS nodes (Amazon Linux 2 with SSH) [created and managed by eksctl]\",\"Resources\":{\"EgressInterCluster\":{\"Type\":\"AWS::EC2::SecurityGroupEgress\",\"Properties\":{\"Description\":\"Allow control plane to communicate with worker nodes in group floral-monster-1539612246-0 (kubelet and workload TCP ports)\",\"DestinationSecurityGroupId\":{\"Ref\":\"SG\"},\"FromPort\":1025,\"GroupId\":{\"Fn::ImportValue\":\"eksctl-floral-monster-1539612246-cluster::SecurityGroup\"},\"IpProtocol\":\"tcp\",\"ToPort\":65535}},\"EgressInterClusterAPI\":{\"Type\":\"AWS::EC2::SecurityGroupEgress\",\"Properties\":{\"Description\":\"Allow control plane to communicate with worker nodes in group floral-monster-1539612246-0 (workloads using HTTPS port, commonly used with extension API servers)\",\"DestinationSecurityGroupId\":{\"Ref\":\"SG\"},\"FromPort\":443,\"GroupId\":{\"Fn::ImportValue\":\"eksctl-floral-monster-1539612246-cluster::SecurityGroup\"},\"IpProtocol\":\"tcp\",\"ToPort\":443}},\"IngressInterCluster\":{\"Type\":\"AWS::EC2::SecurityGroupIngress\",\"Properties\":{\"Description\":\"Allow worker nodes in group floral-monster-1539612246-0 to communicate with control plane (kubelet and workload TCP ports)\",\"FromPort\":1025,\"GroupId\":{\"Ref\":\"SG\"},\"IpProtocol\":\"tcp\",\"SourceSecurityGroupId\":{\"Fn::ImportValue\":\"eksctl-floral-monster-1539612246-cluster::SecurityGroup\"},\"ToPort\":65535}},\"IngressInterClusterAPI\":{\"Type\":\"AWS::EC2::SecurityGroupIngress\",\"Properties\":{\"Description\":\"Allow worker nodes in group floral-monster-1539612246-0 to communicate with control plane (workloads using HTTPS port, commonly used with extension API servers)\",\"FromPort\":443,\"GroupId\":{\"Ref\":\"SG\"},\"IpProtocol\":\"tcp\",\"SourceSecurityGroupId\":{\"Fn::ImportValue\":\"eksctl-floral-monster-1539612246-cluster::SecurityGroup\"},\"ToPort\":443}},\"IngressInterClusterCP\":{\"Type\":\"AWS::EC2::SecurityGroupIngress\",\"Properties\":{\"Description\":\"Allow control plane to receive API requests from worker nodes in group floral-monster-1539612246-0\",\"FromPort\":443,\"GroupId\":{\"Fn::ImportValue\":\"eksctl-floral-monster-1539612246-cluster::SecurityGroup\"},\"IpProtocol\":\"tcp\",\"SourceSecurityGroupId\":{\"Ref\":\"SG\"},\"ToPort\":443}},\"IngressInterSG\":{\"Type\":\"AWS::EC2::SecurityGroupIngress\",\"Properties\":{\"Description\":\"Allow worker nodes in group floral-monster-1539612246-0 to communicate with each other (all ports)\",\"FromPort\":0,\"GroupId\":{\"Ref\":\"SG\"},\"IpProtocol\":\"-1\",\"SourceSecurityGroupId\":{\"Ref\":\"SG\"},\"ToPort\":65535}},\"NodeGroup\":{\"Type\":\"AWS::AutoScaling::AutoScalingGroup\",\"Properties\":{\"DesiredCapacity\":\"2\",\"LaunchConfigurationName\":{\"Ref\":\"NodeLaunchConfig\"},\"MaxSize\":\"2\",\"MinSize\":\"2\",\"Tags\":[{\"Key\":\"Name\",\"PropagateAtLaunch\":\"true\",\"Value\":\"floral-monster-1539612246-0-Node\"},{\"Key\":\"kubernetes.io/cluster/floral-monster-1539612246\",\"PropagateAtLaunch\":\"true\",\"Value\":\"owned\"}],\"VPCZoneIdentifier\":{\"Fn::Split\":[\",\",{\"Fn::ImportValue\":\"eksctl-floral-monster-1539612246-cluster::Subnets\"}]}},\"UpdatePolicy\":{\"AutoScalingRollingUpdate\":{\"MaxBatchSize\":\"1\",\"MinInstancesInService\":\"1\"}}},\"NodeInstanceProfile\":{\"Type\":\"AWS::IAM::InstanceProfile\",\"Properties\":{\"Path\":\"/\",\"Roles\":[{\"Ref\":\"NodeInstanceRole\"}]}},\"NodeInstanceRole\":{\"Type\":\"AWS::IAM::Role\",\"Properties\":{\"AssumeRolePolicyDocument\":{\"Statement\":[{\"Action\":[\"sts:AssumeRole\"],\"Effect\":\"Allow\",\"Principal\":{\"Service\":[\"ec2.amazonaws.com\"]}}],\"Version\":\"2012-10-17\"},\"ManagedPolicyArns\":[\"arn:aws:iam::aws:policy/AmazonEKSWorkerNodePolicy\",\"arn:aws:iam::aws:policy/AmazonEKS_CNI_Policy\",\"arn:aws:iam::aws:policy/AmazonEC2ContainerRegistryReadOnly\"],\"Path\":\"/\"}},\"NodeLaunchConfig\":{\"Type\":\"AWS::AutoScaling::LaunchConfiguration\",\"Properties\":{\"AssociatePublicIpAddress\":true,\"IamInstanceProfile\":{\"Ref\":\"NodeInstanceProfile\"},\"ImageId\":\"ami-0440e4f6b9713faf6\",\"InstanceType\":\"m5.large\",\"SecurityGroups\":[{\"Ref\":\"SG\"}],\"UserData\":\"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\"}},\"PolicyStackSignal\":{\"Type\":\"AWS::IAM::Policy\",\"Properties\":{\"PolicyDocument\":{\"Statement\":[{\"Action\":[\"cloudformation:SignalResource\"],\"Effect\":\"Allow\",\"Resource\":{\"Fn::Join\":[\":\",[\"arn:aws:cloudformation\",{\"Ref\":\"AWS::Region\"},{\"Ref\":\"AWS::AccountId\"},{\"Fn::Join\":[\"/\",[\"stack\",{\"Ref\":\"AWS::StackName\"},\"*\"]]}]]}}],\"Version\":\"2012-10-17\"},\"PolicyName\":{\"Fn::Sub\":\"${AWS::StackName}-PolicyStackSignal\"},\"Roles\":[{\"Ref\":\"NodeInstanceRole\"}]}},\"PolicyTagDiscovery\":{\"Type\":\"AWS::IAM::Policy\",\"Properties\":{\"PolicyDocument\":{\"Statement\":[{\"Action\":[\"ec2:DescribeTags\"],\"Effect\":\"Allow\",\"Resource\":\"*\"}],\"Version\":\"2012-10-17\"},\"PolicyName\":{\"Fn::Sub\":\"${AWS::StackName}-PolicyTagDiscovery\"},\"Roles\":[{\"Ref\":\"NodeInstanceRole\"}]}},\"SG\":{\"Type\":\"AWS::EC2::SecurityGroup\",\"Properties\":{\"GroupDescription\":\"Communication between the control plane and worker nodes in group floral-monster-1539612246-0\",\"Tags\":[{\"Key\":\"kubernetes.io/cluster/floral-monster-1539612246\",\"Value\":\"owned\"},{\"Key\":\"Name\",\"Value\":{\"Fn::Sub\":\"${AWS::StackName}/SG\"}}],\"VpcId\":{\"Fn::ImportValue\":\"eksctl-floral-monster-1539612246-cluster::VPC\"}}}},\"Outputs\":{\"NodeInstanceRoleARN\":{\"Export\":{\"Name\":{\"Fn::Sub\":\"${AWS::StackName}::NodeInstanceRoleARN\"}},\"Value\":{\"Fn::GetAtt\":\"NodeInstanceRole.Arn\"}}}}"
}
2018-10-15T11:15:02-03:00 [▶] stack = {
StackId: "arn:aws:cloudformation:us-east-1:832293009740:stack/eksctl-floral-monster-1539612246-nodegroup-0/b55cf9f0-d084-11e8-9bf5-50d5cd12e2d2"
}
2018-10-15T11:15:02-03:00 [▶] start waiting for CloudFormation stack "eksctl-floral-monster-1539612246-nodegroup-0" to reach "CREATE_COMPLETE" status
2018-10-15T11:15:02-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-nodegroup-0" to reach "CREATE_COMPLETE" status
2018-10-15T11:15:22-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-nodegroup-0" to reach "CREATE_COMPLETE" status
2018-10-15T11:15:42-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-nodegroup-0" to reach "CREATE_COMPLETE" status
2018-10-15T11:16:01-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-nodegroup-0" to reach "CREATE_COMPLETE" status
2018-10-15T11:16:17-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-nodegroup-0" to reach "CREATE_COMPLETE" status
2018-10-15T11:16:33-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-nodegroup-0" to reach "CREATE_COMPLETE" status
2018-10-15T11:16:53-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-nodegroup-0" to reach "CREATE_COMPLETE" status
2018-10-15T11:17:13-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-nodegroup-0" to reach "CREATE_COMPLETE" status
2018-10-15T11:17:30-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-nodegroup-0" to reach "CREATE_COMPLETE" status
2018-10-15T11:17:51-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-nodegroup-0" to reach "CREATE_COMPLETE" status
2018-10-15T11:18:10-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-nodegroup-0" to reach "CREATE_COMPLETE" status
2018-10-15T11:18:28-03:00 [▶] waiting for CloudFormation stack "eksctl-floral-monster-1539612246-nodegroup-0" to reach "CREATE_COMPLETE" status
2018-10-15T11:18:28-03:00 [▶] done after 3m25.49258924s of waiting for CloudFormation stack "eksctl-floral-monster-1539612246-nodegroup-0" to reach "CREATE_COMPLETE" status
2018-10-15T11:18:29-03:00 [▶] processing stack outputs
2018-10-15T11:18:29-03:00 [▶] obj = &api.ClusterConfig{Region:"us-east-1", Profile:"", Tags:map[string]string{}, ClusterName:"floral-monster-1539612246", NodeAMI:"ami-0440e4f6b9713faf6", NodeType:"m5.large", Nodes:2, MinNodes:2, MaxNodes:2, NodeVolumeSize:0, MaxPodsPerNode:29, NodePolicyARNs:[]string{"arn:aws:iam::aws:policy/AmazonEKSWorkerNodePolicy", "arn:aws:iam::aws:policy/AmazonEKS_CNI_Policy", "arn:aws:iam::aws:policy/AmazonEC2ContainerRegistryReadOnly"}, NodeSSH:false, SSHPublicKeyPath:"~/.ssh/id_rsa.pub", SSHPublicKey:[]uint8(nil), SSHPublicKeyName:"", WaitTimeout:1200000000000, SecurityGroup:"sg-053c27a2b5d0f8135", Subnets:[]string{"subnet-055e69a4642ed3988", "subnet-084d095c679e05059", "subnet-08a4873e1806e9628"}, VPC:"vpc-0f117eac3e633e5df", Endpoint:"https://D4AC1342560A057C2A54C73D0212EBA3.yl4.us-east-1.eks.amazonaws.com", CertificateAuthorityData:[]uint8{0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x42, 0x45, 0x47, 0x49, 0x4e, 0x20, 0x43, 0x45, 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0xa, 0x4d, 0x49, 0x49, 0x43, 0x79, 0x44, 0x43, 0x43, 0x41, 0x62, 0x43, 0x67, 0x41, 0x77, 0x49, 0x42, 0x41, 0x67, 0x49, 0x42, 0x41, 0x44, 0x41, 0x4e, 0x42, 0x67, 0x6b, 0x71, 0x68, 0x6b, 0x69, 0x47, 0x39, 0x77, 0x30, 0x42, 0x41, 0x51, 0x73, 0x46, 0x41, 0x44, 0x41, 0x56, 0x4d, 0x52, 0x4d, 0x77, 0x45, 0x51, 0x59, 0x44, 0x56, 0x51, 0x51, 0x44, 0x45, 0x77, 0x70, 0x72, 0x64, 0x57, 0x4a, 0x6c, 0xa, 0x63, 0x6d, 0x35, 0x6c, 0x64, 0x47, 0x56, 0x7a, 0x4d, 0x42, 0x34, 0x58, 0x44, 0x54, 0x45, 0x34, 0x4d, 0x54, 0x41, 0x78, 0x4e, 0x54, 0x45, 0x30, 0x4d, 0x54, 0x49, 0x77, 0x4e, 0x6c, 0x6f, 0x58, 0x44, 0x54, 0x49, 0x34, 0x4d, 0x54, 0x41, 0x78, 0x4d, 0x6a, 0x45, 0x30, 0x4d, 0x54, 0x49, 0x77, 0x4e, 0x6c, 0x6f, 0x77, 0x46, 0x54, 0x45, 0x54, 0x4d, 0x42, 0x45, 0x47, 0x41, 0x31, 0x55, 0x45, 0xa, 0x41, 0x78, 0x4d, 0x4b, 0x61, 0x33, 0x56, 0x69, 0x5a, 0x58, 0x4a, 0x75, 0x5a, 0x58, 0x52, 0x6c, 0x63, 0x7a, 0x43, 0x43, 0x41, 0x53, 0x49, 0x77, 0x44, 0x51, 0x59, 0x4a, 0x4b, 0x6f, 0x5a, 0x49, 0x68, 0x76, 0x63, 0x4e, 0x41, 0x51, 0x45, 0x42, 0x42, 0x51, 0x41, 0x44, 0x67, 0x67, 0x45, 0x50, 0x41, 0x44, 0x43, 0x43, 0x41, 0x51, 0x6f, 0x43, 0x67, 0x67, 0x45, 0x42, 0x41, 0x4d, 0x76, 0x56, 0xa, 0x77, 0x54, 0x6b, 0x69, 0x4f, 0x58, 0x6e, 0x31, 0x6e, 0x30, 0x65, 0x41, 0x78, 0x51, 0x5a, 0x36, 0x4d, 0x78, 0x6b, 0x44, 0x44, 0x56, 0x37, 0x33, 0x4a, 0x35, 0x68, 0x53, 0x56, 0x35, 0x74, 0x2f, 0x71, 0x54, 0x64, 0x33, 0x59, 0x49, 0x2f, 0x44, 0x45, 0x50, 0x48, 0x31, 0x6d, 0x61, 0x49, 0x79, 0x4d, 0x4b, 0x64, 0x69, 0x5a, 0x71, 0x49, 0x48, 0x59, 0x48, 0x44, 0x4b, 0x38, 0x2b, 0x51, 0x7a, 0xa, 0x73, 0x37, 0x66, 0x52, 0x79, 0x39, 0x6a, 0x41, 0x4b, 0x32, 0x6a, 0x67, 0x45, 0x64, 0x61, 0x6b, 0x52, 0x4f, 0x31, 0x51, 0x66, 0x4c, 0x31, 0x41, 0x5a, 0x49, 0x6f, 0x41, 0x33, 0x2b, 0x71, 0x47, 0x4b, 0x78, 0x55, 0x54, 0x78, 0x43, 0x65, 0x72, 0x68, 0x72, 0x33, 0x61, 0x6b, 0x75, 0x61, 0x75, 0x66, 0x4c, 0x32, 0x7a, 0x6d, 0x79, 0x45, 0x30, 0x62, 0x2f, 0x57, 0x76, 0x58, 0x66, 0x74, 0x74, 0xa, 0x31, 0x4b, 0x59, 0x4f, 0x6a, 0x32, 0x65, 0x4d, 0x71, 0x35, 0x32, 0x41, 0x62, 0x78, 0x67, 0x66, 0x67, 0x77, 0x4b, 0x67, 0x6c, 0x6e, 0x72, 0x4a, 0x4f, 0x58, 0x58, 0x63, 0x4e, 0x58, 0x6c, 0x48, 0x56, 0x50, 0x37, 0x54, 0x30, 0x31, 0x50, 0x36, 0x73, 0x64, 0x4b, 0x75, 0x79, 0x59, 0x4d, 0x79, 0x52, 0x51, 0x2f, 0x44, 0x76, 0x54, 0x35, 0x61, 0x76, 0x50, 0x2f, 0x58, 0x56, 0x39, 0x72, 0x50, 0xa, 0x58, 0x38, 0x77, 0x6b, 0x37, 0x77, 0x54, 0x48, 0x56, 0x78, 0x72, 0x4a, 0x44, 0x70, 0x72, 0x4e, 0x36, 0x5a, 0x44, 0x31, 0x67, 0x49, 0x30, 0x56, 0x74, 0x53, 0x72, 0x57, 0x32, 0x35, 0x79, 0x4c, 0x59, 0x56, 0x42, 0x75, 0x70, 0x6e, 0x58, 0x41, 0x51, 0x74, 0x67, 0x4d, 0x39, 0x4a, 0x66, 0x56, 0x4a, 0x34, 0x71, 0x6b, 0x73, 0x42, 0x56, 0x7a, 0x5a, 0x49, 0x7a, 0x61, 0x37, 0x49, 0x52, 0x67, 0xa, 0x37, 0x63, 0x71, 0x67, 0x7a, 0x42, 0x2f, 0x63, 0x6b, 0x67, 0x78, 0x64, 0x6b, 0x79, 0x73, 0x66, 0x44, 0x4e, 0x45, 0x61, 0x6c, 0x5a, 0x61, 0x57, 0x57, 0x43, 0x6f, 0x64, 0x77, 0x44, 0x7a, 0x4c, 0x79, 0x2f, 0x6e, 0x38, 0x66, 0x68, 0x30, 0x68, 0x69, 0x6e, 0x52, 0x53, 0x61, 0x61, 0x52, 0x42, 0x6e, 0x4e, 0x6d, 0x33, 0x57, 0x2f, 0x38, 0x76, 0x4f, 0x51, 0x72, 0x36, 0x59, 0x42, 0x2f, 0x45, 0xa, 0x47, 0x4c, 0x72, 0x78, 0x70, 0x34, 0x39, 0x59, 0x6d, 0x52, 0x70, 0x55, 0x43, 0x77, 0x6f, 0x79, 0x61, 0x5a, 0x73, 0x43, 0x41, 0x77, 0x45, 0x41, 0x41, 0x61, 0x4d, 0x6a, 0x4d, 0x43, 0x45, 0x77, 0x44, 0x67, 0x59, 0x44, 0x56, 0x52, 0x30, 0x50, 0x41, 0x51, 0x48, 0x2f, 0x42, 0x41, 0x51, 0x44, 0x41, 0x67, 0x4b, 0x6b, 0x4d, 0x41, 0x38, 0x47, 0x41, 0x31, 0x55, 0x64, 0x45, 0x77, 0x45, 0x42, 0xa, 0x2f, 0x77, 0x51, 0x46, 0x4d, 0x41, 0x4d, 0x42, 0x41, 0x66, 0x38, 0x77, 0x44, 0x51, 0x59, 0x4a, 0x4b, 0x6f, 0x5a, 0x49, 0x68, 0x76, 0x63, 0x4e, 0x41, 0x51, 0x45, 0x4c, 0x42, 0x51, 0x41, 0x44, 0x67, 0x67, 0x45, 0x42, 0x41, 0x4c, 0x6c, 0x33, 0x69, 0x34, 0x70, 0x63, 0x57, 0x78, 0x30, 0x51, 0x75, 0x4b, 0x43, 0x75, 0x46, 0x63, 0x70, 0x50, 0x33, 0x45, 0x6d, 0x62, 0x5a, 0x53, 0x58, 0x2b, 0xa, 0x59, 0x36, 0x53, 0x6a, 0x68, 0x34, 0x2b, 0x30, 0x4f, 0x77, 0x4f, 0x79, 0x6d, 0x35, 0x54, 0x50, 0x33, 0x51, 0x71, 0x74, 0x56, 0x7a, 0x64, 0x62, 0x76, 0x44, 0x69, 0x70, 0x5a, 0x32, 0x47, 0x4a, 0x6c, 0x4b, 0x79, 0x69, 0x39, 0x32, 0x38, 0x65, 0x45, 0x45, 0x2b, 0x50, 0x7a, 0x54, 0x70, 0x49, 0x33, 0x52, 0x50, 0x46, 0x6e, 0x73, 0x73, 0x49, 0x34, 0x2f, 0x66, 0x54, 0x73, 0x4a, 0x41, 0x45, 0xa, 0x54, 0x42, 0x61, 0x6e, 0x38, 0x77, 0x45, 0x6f, 0x78, 0x6d, 0x6a, 0x4c, 0x74, 0x4d, 0x48, 0x68, 0x6a, 0x56, 0x79, 0x68, 0x4c, 0x4f, 0x78, 0x6d, 0x2f, 0x53, 0x5a, 0x33, 0x5a, 0x36, 0x31, 0x78, 0x39, 0x51, 0x49, 0x79, 0x63, 0x75, 0x4f, 0x32, 0x68, 0x30, 0x42, 0x4e, 0x6f, 0x70, 0x52, 0x57, 0x4a, 0x4a, 0x41, 0x43, 0x64, 0x44, 0x38, 0x59, 0x42, 0x63, 0x55, 0x67, 0x51, 0x6c, 0x57, 0x61, 0xa, 0x52, 0x4b, 0x6a, 0x53, 0x4d, 0x67, 0x33, 0x68, 0x67, 0x70, 0x38, 0x5a, 0x68, 0x35, 0x79, 0x33, 0x52, 0x33, 0x6a, 0x46, 0x35, 0x51, 0x69, 0x74, 0x4b, 0x58, 0x53, 0x79, 0x62, 0x78, 0x68, 0x6e, 0x4b, 0x4b, 0x4e, 0x4e, 0x55, 0x34, 0x59, 0x37, 0x4e, 0x62, 0x32, 0x67, 0x61, 0x47, 0x32, 0x47, 0x52, 0x39, 0x33, 0x35, 0x74, 0x58, 0x35, 0x62, 0x59, 0x53, 0x53, 0x72, 0x47, 0x63, 0x69, 0x68, 0xa, 0x66, 0x56, 0x71, 0x37, 0x6a, 0x32, 0x45, 0x4a, 0x2b, 0x51, 0x62, 0x7a, 0x31, 0x35, 0x54, 0x30, 0x41, 0x6b, 0x7a, 0x45, 0x4b, 0x4f, 0x6d, 0x37, 0x36, 0x6e, 0x42, 0x47, 0x41, 0x72, 0x73, 0x42, 0x70, 0x63, 0x5a, 0x6e, 0x4e, 0x50, 0x55, 0x53, 0x53, 0x70, 0x2b, 0x4e, 0x71, 0x46, 0x39, 0x6d, 0x79, 0x57, 0x7a, 0x6b, 0x33, 0x35, 0x35, 0x74, 0x45, 0x43, 0x76, 0x79, 0x50, 0x63, 0x33, 0x6d, 0xa, 0x32, 0x32, 0x66, 0x30, 0x7a, 0x32, 0x49, 0x51, 0x56, 0x44, 0x41, 0x47, 0x45, 0x50, 0x4a, 0x51, 0x55, 0x6a, 0x31, 0x4d, 0x30, 0x56, 0x33, 0x6e, 0x4a, 0x68, 0x72, 0x33, 0x77, 0x73, 0x47, 0x6f, 0x53, 0x49, 0x5a, 0x2f, 0x31, 0x68, 0x4a, 0x4a, 0x4d, 0x72, 0x74, 0x43, 0x5a, 0x65, 0x46, 0x77, 0x4e, 0x74, 0x74, 0x64, 0x5a, 0x55, 0x68, 0x57, 0x59, 0x6c, 0x49, 0x3d, 0xa, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x45, 0x4e, 0x44, 0x20, 0x43, 0x45, 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0xa}, ARN:"arn:aws:eks:us-east-1:832293009740:cluster/floral-monster-1539612246", ClusterStackName:"eksctl-floral-monster-1539612246-cluster", NodeInstanceRoleARN:"arn:aws:iam::832293009740:role/eksctl-floral-monster-1539612246-NodeInstanceRole-D94FVQFFU3P3", AvailabilityZones:[]string{"us-east-1a", "us-east-1b", "us-east-1c"}, Addons:api.ClusterAddons{WithIAM:api.AddonIAM{PolicyAmazonEC2ContainerRegistryPowerUser:false}, Storage:true}}
2018-10-15T11:18:29-03:00 [▶] task 0 returned without errors
2018-10-15T11:18:29-03:00 [✔] all EKS cluster resource for "floral-monster-1539612246" had been created
2018-10-15T11:18:29-03:00 [▶] merging kubeconfig files
2018-10-15T11:18:29-03:00 [▶] setting current-context to [email protected]
2018-10-15T11:18:29-03:00 [✔] saved kubeconfig as "/Users/matiasdesanti/.kube/config"
2018-10-15T11:18:30-03:00 [ℹ] the cluster has 0 nodes
2018-10-15T11:18:30-03:00 [ℹ] waiting for at least 2 nodes to become ready
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment