From 3065334727639ab9defe7da1d0fbfaaa69d64823 Mon Sep 17 00:00:00 2001 From: "Matthew C. Morgan" Date: Mon, 22 Jul 2024 21:31:34 -0400 Subject: [PATCH] add version and changelog to readme --- README.md | 11 +++++++++-- version.tf | 4 ++-- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0877a54..2c3290e 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,15 @@ The module configures an eks cluster with additional components after the cluste When selecting which version of the cluster-autoscaler to install, use the one that is closest to the same version as the `cluster_version` or slightly higher. The cluster-autoscaler uses the kuberentes scheduling algorithm to appropriate scale the cluster, and if the autoscaler version sufficiently divirges from the kubernetes version, the autoscaler will scale the node groups incorrectly. + +# CHANGELOG + +* 0.0.1 -- 2024-07-22 + - updated version.tf to 0.0.1 + - included module.images in depends on helm charts + - created changelog + + ## Input **cluster_name** `string` @@ -137,5 +146,3 @@ The repository portion of the URI to access the kubectl image **kubectl_image_tag** The tag portion of the URI to access the kubectl image - - diff --git a/version.tf b/version.tf index e233d91..4260d97 100644 --- a/version.tf +++ b/version.tf @@ -1,4 +1,4 @@ locals { - _module_name = "tfmod-eks-storage-classes" - _module_version = "unknown" + _module_name = "tfmod-eks-configuration" + _module_version = "0.0.1" }