Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(eks): support for Kubernetes version 1.22 #22604

Merged
merged 19 commits into from Oct 25, 2022
Merged

Commits on Oct 19, 2022

  1. fix(eks): kubectl layer must contain AWS CLI

    The EKS Cluster construct has a property called `kubectlLayer`. When this
    property was not given, it would add a two default layers to the custom
    resource:
    
    - One with kubectl
    - One with the AWS CLI
    
    However, if the property was given, the one layer must contain both
    kubectl as well as the AWS CLI.
    
    This makes the `kubectl` layer unnecessarily large -- it must also
    contain the AWS CLI which the CDK already has and can bundle itself.
    
    Add a separate `awscliLayer` parameter to control the AWS CLI layer,
    if the user so wants. If not, the default AWS CLI layer will be added.
    
    If some user is already using a `kubectlLayer` which includes the AWS
    CLI, we now add both the default AWS CLI layer as well as the user's
    kubectl layer with the AWS CLI in it. There is no conflict: multiple
    layers can contain the same files.  Last layer wins (which is the
    kubectl layer with the user's preferred AWS CLI).
    rix0rrr committed Oct 19, 2022
    Configuration menu
    Copy the full SHA
    c93ed9d View commit details
    Browse the repository at this point in the history
  2. Tests

    rix0rrr committed Oct 19, 2022
    Configuration menu
    Copy the full SHA
    d1e4a58 View commit details
    Browse the repository at this point in the history
  3. Update packages/@aws-cdk/aws-eks/lib/cluster.ts

    Co-authored-by: Eli Polonsky <epolon@amazon.com>
    rix0rrr and iliapolo committed Oct 19, 2022
    Configuration menu
    Copy the full SHA
    d184727 View commit details
    Browse the repository at this point in the history
  4. Snapshots some more

    rix0rrr committed Oct 19, 2022
    Configuration menu
    Copy the full SHA
    3e985be View commit details
    Browse the repository at this point in the history
  5. Merge branch 'huijbers/eks-separate-awscli-layer' of github.com:aws/a…

    …ws-cdk into huijbers/eks-separate-awscli-layer
    rix0rrr committed Oct 19, 2022
    Configuration menu
    Copy the full SHA
    4c1b57b View commit details
    Browse the repository at this point in the history
  6. Tests

    rix0rrr committed Oct 19, 2022
    Configuration menu
    Copy the full SHA
    0696a37 View commit details
    Browse the repository at this point in the history
  7. Snapshots some more

    rix0rrr committed Oct 19, 2022
    Configuration menu
    Copy the full SHA
    f1a484a View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2022

  1. Update cluster.ts

    rix0rrr committed Oct 20, 2022
    Configuration menu
    Copy the full SHA
    9892f6a View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2022

  1. Configuration menu
    Copy the full SHA
    e821907 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a0b1d71 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6ebd1b6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4e8c7ee View commit details
    Browse the repository at this point in the history
  5. update readme

    madeline-k committed Oct 21, 2022
    Configuration menu
    Copy the full SHA
    888db08 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2022

  1. integration tests

    madeline-k committed Oct 25, 2022
    Configuration menu
    Copy the full SHA
    b782726 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7bf6b0d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    67da92b View commit details
    Browse the repository at this point in the history
  4. update doc comment

    madeline-k committed Oct 25, 2022
    Configuration menu
    Copy the full SHA
    2d7b511 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c9a4f4b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    37a939f View commit details
    Browse the repository at this point in the history