[PATCH 0/2] aws: add dynamic kconfig support
Luis Chamberlain <[email protected]>
| Newsgroups | dev.linux.lists.kdevops |
|---|---|
| Message-ID | <[email protected]> |
Changes on this v2: - adds the docs suggested by Chuck - splits GPU amis in a separate patch - drops the static files, as they are just noise and I can instead re-generate them on the fly when we decide this is ready to merge. I've also changed the default GPU AMI to use "Deep Learning OSS Nvidia Driver AMI GPU PyTorch*Ubuntu 22.04*" as that actually has pytorch. Luis Chamberlain (2): aws: add dynamic cloud configuration support using AWS CLI aws: enable GPU AMI support for GPU instances .gitignore | 3 + defconfigs/aws-gpu-g6e-ai | 42 + docs/cloud-configuration.md | 268 ++++ .../templates/aws/terraform.tfvars.j2 | 5 + scripts/aws-cli | 436 +++++++ scripts/aws_api.py | 1161 +++++++++++++++++ scripts/dynamic-cloud-kconfig.Makefile | 101 +- scripts/generate_cloud_configs.py | 198 ++- terraform/aws/kconfigs/Kconfig.compute | 109 +- 9 files changed, 2233 insertions(+), 90 deletions(-) create mode 100644 defconfigs/aws-gpu-g6e-ai create mode 100644 docs/cloud-configuration.md create mode 100755 scripts/aws-cli create mode 100755 scripts/aws_api.py -- 2.50.1