diff --git a/.github/workflows/deploy-changed-cf.yaml b/.github/workflows/deploy-changed-cf.yaml index 3ef64eda6a..1c873e7a12 100644 --- a/.github/workflows/deploy-changed-cf.yaml +++ b/.github/workflows/deploy-changed-cf.yaml @@ -239,7 +239,7 @@ jobs: capabilities: "CAPABILITY_IAM,CAPABILITY_NAMED_IAM,CAPABILITY_AUTO_EXPAND" - id: deploy-batch-job-definition-template - name: Deploy CloudFormation PostRegisterLambda template + name: Deploy CloudFormation batch-job-definition template if: ${{ matrix.template == 'cf/batch-job-definition.yaml' }} uses: aws-actions/aws-cloudformation-github-deploy@v1 with: diff --git a/.github/workflows/deploy-infra.yaml b/.github/workflows/deploy-infra.yaml index 9c39d8f779..c47218caab 100644 --- a/.github/workflows/deploy-infra.yaml +++ b/.github/workflows/deploy-infra.yaml @@ -256,13 +256,18 @@ jobs: - id: install-eksctl name: Install eksctl run: |- - curl --silent --location "https://github.com/weaveworks/eksctl/releases/latest/download/eksctl_$(uname -s)_amd64.tar.gz" | tar xz -C /tmp + ARCH=amd64 + PLATFORM=$(uname -s)_$ARCH + + curl -sLO "https://github.com/eksctl-io/eksctl/releases/latest/download/eksctl_$PLATFORM.tar.gz" + tar -xzf eksctl_$PLATFORM.tar.gz -C /tmp && rm eksctl_$PLATFORM.tar.gz + sudo mv /tmp/eksctl /usr/local/bin - id: deploy-load-balancer-role name: Deploy permissions for AWS load balancer controller run: |- - curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.7.2/docs/install/iam_policy.json + curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.10.1/docs/install/iam_policy.json aws iam create-policy \ --policy-name AWSLoadBalancerControllerIAMPolicy-$CLUSTER_ENV \ --policy-document file://iam-policy.json || true