From 40bdea7dabf8458bec58dd5ff1a8e0393032f23b Mon Sep 17 00:00:00 2001 From: "Matthew C. Morgan" Date: Mon, 22 Jul 2024 20:45:10 -0400 Subject: [PATCH] add force_delete update readme add output rwo_storage_class --- README.md | 9 +++++++++ copy_images.tf | 1 + outputs.tf | 5 ++++- 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1fed409..9275fee 100644 --- a/README.md +++ b/README.md @@ -6,3 +6,12 @@ to loki. * Requires additional Node HD space - 40GB is not enough. # tfmod-loki + + + +# CHANGELOG + +* 0.0.1 -- 2024-07-22 + - updated version.tf to 0.0.1 + - included module.images in depends on helm charts + - created changelog diff --git a/copy_images.tf b/copy_images.tf index 8a9fe95..fa07696 100644 --- a/copy_images.tf +++ b/copy_images.tf @@ -94,4 +94,5 @@ module "images" { enable_lifecycle_policy = true lifecycle_policy_all = true + force_delete = true } diff --git a/outputs.tf b/outputs.tf index 8f016cc..158d38c 100644 --- a/outputs.tf +++ b/outputs.tf @@ -1,3 +1,7 @@ +output "rwo_storage_class" { + description = "Specify the storage class for read/write/once persistent volumes." + value = var.rwo_storage_class +} output "gateway_internal_endpoint" { description = "The endpoint which can be used inside of the cluster to access loki-gateway." @@ -7,4 +11,3 @@ output "gateway_internal_endpoint" { url = local.gateway_internal_url } } -