From db08974e87c50e8eb2165f444c4f7fd273440543 Mon Sep 17 00:00:00 2001 From: alex-treebeard Date: Thu, 22 Feb 2024 16:52:56 +0000 Subject: [PATCH] aks/eks examples --- examples/eks/README.md | 8 ++++++++ examples/eks/main.tf | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/examples/eks/README.md b/examples/eks/README.md index 988057d..73b9a08 100644 --- a/examples/eks/README.md +++ b/examples/eks/README.md @@ -1,3 +1,11 @@ +# Kubeflow Terraform EKS Example + +* We recommend deploying the eks cluster alone then adding kubeflow +* When eks is ready you can use the aws CLI to setup kubectl + ```sh + aws eks update-kubeconfig --name cluster --region us-east-1 + ``` + ## Requirements | Name | Version | diff --git a/examples/eks/main.tf b/examples/eks/main.tf index 4f8ec00..e3cdb69 100644 --- a/examples/eks/main.tf +++ b/examples/eks/main.tf @@ -55,7 +55,7 @@ module "vpc" { source = "terraform-aws-modules/vpc/aws" version = "5.1.2" - name = "kubesky-eks-dev-vpc" + name = "kubeflow-vpc" cidr = local.cloud_cidr map_public_ip_on_launch = true