From 5a5ab5c6d97e0639be0570c6023f7bc1d8d517ed Mon Sep 17 00:00:00 2001 From: Bumsik Kim Date: Mon, 27 Feb 2023 20:03:45 +0900 Subject: [PATCH 1/2] doc(.pages): Remove empty "Node Groups" section As part of v5 migration, https://github.com/aws-ia/terraform-aws-eks-blueprints/pull/1428 removes "Node Groups" page, but forgot to remove the page button. This commit removes the "Node Groups" button in the documentation page. --- docs/.pages | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/.pages b/docs/.pages index 5956471777..882bceafbd 100644 --- a/docs/.pages +++ b/docs/.pages @@ -2,7 +2,6 @@ nav: - Overview: index.md - Getting Started: getting-started.md - Core Concepts: core-concepts.md - - Node Groups: node-groups.md - IAM: iam - Teams: teams.md - Modules: modules From 94739fccb78df60d81e7838ac1dfba2db979a0ea Mon Sep 17 00:00:00 2001 From: Bumsik Kim Date: Mon, 27 Feb 2023 20:16:35 +0900 Subject: [PATCH 2/2] doc: Mention `terraform-aws-modules` in cluster explanation. As part of v5 migration, https://github.com/aws-ia/terraform-aws-eks-blueprints/pull/1428 removes "Node Groups" page. As a result, new users likely lost what to do when configuring a cluster. We at least need to mention that we use `terraform-aws-modules/eks/aws` to avoid confusion. --- docs/core-concepts.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/core-concepts.md b/docs/core-concepts.md index 2bb0ccf69e..7798d11bf9 100644 --- a/docs/core-concepts.md +++ b/docs/core-concepts.md @@ -12,7 +12,9 @@ This document provides a high level overview of the Core Concepts that are embed ## Cluster -A `cluster` is simply an EKS cluster. EKS Blueprints provides for customizing the compute options you leverage with your `clusters`. The framework currently supports `EC2`, `Fargate` and `BottleRocket` instances. It also supports managed and self-managed node groups. To specify the type of compute you want to use for your `cluster`, you use the `managed_node_groups`, `self_managed_nodegroups`, or `fargate_profiles` variables. +A `cluster` is simply an EKS cluster. EKS Blueprints provides for customizing the compute options you leverage with your `clusters`. The framework currently supports `EC2`, `Fargate` and `BottleRocket` instances. It also supports managed and self-managed node groups. + +We rely on [`terraform-aws-modules/eks/aws`](https://registry.terraform.io/modules/terraform-aws-modules/eks/aws/latest) to configure `clusters`. See our [examples](getting-started.md) to see how `terraform-aws-modules/eks/aws` is configured for EKS Blueprints. ## Add-on