Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
看起来 cdk8s 只被合成到 Kubernetes 清单文件中。CDK 可以直接管理 AWS 资源,例如 EKS 集群、安全组和 IAM 角色和策略。是否可以只有一个文件包含管理 AWS 资源和 Kubernetes 对象的代码?
不幸的是,目前无法直接从 cdk8s 管理 AWS 资源。您需要为 AWS 资源编写 CDK 代码,为 kube 资源编写 CDK8s 代码。
我尝试为两种类型的资源创建一个位置的当前方法是拥有一个带有 CDK 应用程序的 cfn 目录和一个带有 k8s 应用程序的 k8s 目录。然后通过管道将它们粘合在一起。高层结构如下