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

PLAT-6117: Upgrade CDK for EKS 1.24 #127

Merged
merged 1 commit into from
Jan 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
test-build-deploy:
runs-on: ubuntu-latest
env:
DEPLOYER_IMAGE: quay.io/domino/deployer:develop.fd54002c320071e9133074d545843c7aac8d3e44
DEPLOYER_IMAGE: quay.io/domino/deployer:develop.f72b81d5db7e04cc48478d310eafa4abb927ce7f
defaults:
run:
working-directory: ./cdk
Expand Down
2 changes: 1 addition & 1 deletion cdk/domino_cdk/config/template.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def add_nodegroups(
)

eks = EKS(
version="1.21",
version="1.24",
private_api=private_api,
secrets_encryption_key_arn=secrets_encryption_key_arn,
max_nodegroup_azs=3,
Expand Down
14 changes: 7 additions & 7 deletions cdk/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
-e .

coverage~=5.5
pytest~=6.2
flake8~=3.9
isort~=5.8.0
types-requests~=2.25.0
types-PyYAML~=5.4.1
black~=22.3.0
coverage~=7.0
pytest~=7.2
flake8~=6.0.0
isort~=5.11.4
types-requests~=2.28.0
types-PyYAML~=6.0.12
black~=22.12.0
36 changes: 18 additions & 18 deletions cdk/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,26 @@
("domino-cdk", ["app.py", "cdk.json", "util.py"]),
],
install_requires=[
"aws-cdk.assertions~=1.153.1",
"aws-cdk.aws-backup~=1.153.1",
"aws-cdk.aws-ec2~=1.153.1",
"aws-cdk.aws-ecr~=1.153.1",
"aws-cdk.aws-efs~=1.153.1",
"aws-cdk.aws-eks~=1.153.1",
"aws-cdk.aws-iam~=1.153.1",
"aws-cdk.aws-lambda~=1.153.1",
"aws-cdk.aws-s3~=1.153.1",
"aws-cdk.aws-stepfunctions-tasks~=1.153.1",
"aws-cdk.core~=1.153.1",
"aws-cdk.lambda-layer-awscli~=1.153.1",
"aws-cdk.lambda-layer-kubectl~=1.153.1",
"boto3~=1.21.0",
"aws-cdk.assertions~=1.187.0",
"aws-cdk.aws-backup~=1.187.0",
"aws-cdk.aws-ec2~=1.187.0",
"aws-cdk.aws-ecr~=1.187.0",
"aws-cdk.aws-efs~=1.187.0",
"aws-cdk.aws-eks~=1.187.0",
"aws-cdk.aws-iam~=1.187.0",
"aws-cdk.aws-lambda~=1.187.0",
"aws-cdk.aws-s3~=1.187.0",
"aws-cdk.aws-stepfunctions-tasks~=1.187.0",
"aws-cdk.core~=1.187.0",
"aws-cdk.lambda-layer-awscli~=1.187.0",
"aws-cdk.lambda-layer-kubectl~=1.187.0",
"boto3~=1.26.0",
"field_properties~=0.1",
"requests~=2.25.1",
"ruamel.yaml~=0.17.7",
"semantic_version~=2.8.5",
"requests~=2.28.1",
"ruamel.yaml~=0.17.21",
"semantic_version~=2.10.0",
],
python_requires=">=3.6",
python_requires=">=3.9",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
Expand Down
2 changes: 1 addition & 1 deletion cdk/tests/unit/config/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
),
route53=Route53(zone_ids=[]),
eks=EKS(
version="1.21",
version="1.24",
private_api=False,
max_nodegroup_azs=3,
global_node_labels={'dominodatalab.com/domino-node': 'true'},
Expand Down