Sign in
agent:

Upgrade AWS EKS Cluster to 1.30

There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.

Control Plane upgrade requires ~8mins to update.

Another 10-20 mins for worker node update to eks 1.30

terraform apply \ -var environment=<env_name> \ -var aws_region=<region_name> \ -var cluster_version="1.30" \ -var remote_state_bucket=<backend_s3_bucket> \ -var remote_state_region=<backend_region>
copied
  1. 1

    Can manually drain nodes to achieve instant version update effect

    There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.

    Easy Way: Double the desired count of nodes in node group and then bring it back to original

    1
  2. 2

    To check current updates to AWS EKS

    There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
    aws eks list-updates --name <cluster_name> --region <region_name>
    copied
    2
  3. 3

    Check cluster update status for each update id

    There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
    aws eks describe-update --name <cluster_name> --region <region_name> --update-id <update_id> --query 'update.status'
    copied
    3