Skip to content

Commit

Permalink
Merge branch 'mcmCluster'
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Jul 31, 2024
2 parents dfe0317 + 7d7ef36 commit 157f842
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 6 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,12 @@ This modules uses Helm to deploy Prometheus to a cluster using the official char
Versions are module variables, but latest versions are intended to be be reflected in the default values.

# CHANGELOG

* 0.0.1 -- 2024-07-23
- updated to latest versions for all components and helm chart (defined in default variables)
- created content in the README
* 0.0.2 -- 2024-07-30
- formatting
- added module default outputs
- updated images module
- add prometheus_namespace as output
* 0.0.1 -- 2024-07-22
- add force_delete and lifecycle policies to copy_images
- updated version.tf to 0.0.1
- included module.images in depends on helm charts
Expand Down Expand Up @@ -77,4 +79,4 @@ Versions are module variables, but latest versions are intended to be be reflect
| <a name="output_alertmanager_internal_endpoint"></a> [alertmanager\_internal\_endpoint](#output\_alertmanager\_internal\_endpoint) | n/a |
| <a name="output_prometheus_server_internal_endpoint"></a> [prometheus\_server\_internal\_endpoint](#output\_prometheus\_server\_internal\_endpoint) | n/a |
| <a name="output_pushgateway_internal_endpoint"></a> [pushgateway\_internal\_endpoint](#output\_pushgateway\_internal\_endpoint) | n/a |
<!-- END_TF_DOCS -->
<!-- END_TF_DOCS -->
17 changes: 17 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,20 @@ output "prometheus_server_internal_endpoint" {
}
}

output "prometheus_namespace" {
value = local.prometheus_namespace
}

################################################################################
# Module information
################################################################################

output "module_name" {
description = "The name of this module."
value = local._module_name
}

output "module_version" {
description = "The version of this module."
value = local._module_version
}
2 changes: 1 addition & 1 deletion version.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
locals {
_module_name = "tfmod-prometheus"
_module_version = "0.0.1"
_module_version = "0.0.2"
}

0 comments on commit 157f842

Please sign in to comment.