Skip to content

Commit

Permalink
add version and changelog to readme, update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Jul 23, 2024
1 parent ef4a610 commit 2657e3d
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 7 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
# tfmod-prometheus

# CHANGELOG

* 0.0.1 -- 2024-07-22
- updated version.tf to 0.0.1
- included module.images in depends on helm charts
- created changelog
3 changes: 3 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ locals {
}

resource "helm_release" "prometheus" {
depends_on = [
module.images,
]
chart = "prometheus"
name = "prometheus"
namespace = local.ns
Expand Down
14 changes: 7 additions & 7 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,53 +26,53 @@ variable "create_namespace" {
variable "prometheus_chart_version" {
description = "The version of prometheus to install into the cluster."
type = string
default = "24.3.0"
default = "25.24.1"
}

# The `APP VERSION` of the output found while determining the chart version
variable "prometheus_server_tag" {
description = "The image tag of prometheus server to install into the cluster."
type = string
default = "v2.46.0"
default = "v2.53.1"
}

# helm show values prometheus-community/prometheus | less
variable "prometheus_config_reloader_tag" {
description = "The image tag of the prometheus-config-reloader image."
type = string
default = "v0.67.0"
default = "v0.74.0"
}

# The `APP VERSION` of the output:
# helm search repo prometheus-community/alertmanager
variable "alertmanager_tag" {
description = "The image tag of the alertmanager image."
type = string
default = "v0.26.0"
default = "v0.27.0"
}

# The `APP VERSION` of the output:
# helm search repo prometheus-community/kube-state-metrics
variable "kube_state_metrics_tag" {
description = "The image tag of the kube-state-metrics image."
type = string
default = "v2.6.0"
default = "v2.13.0"
}

# The `APP VERSION` of the output:
# helm search repo prometheus-community/prometheus-node-exporter
variable "node_exporter_tag" {
description = "The image tag of the node-exporter image."
type = string
default = "v1.8.1"
default = "v1.8.2"
}

# The `APP VERSION` of the output:
# helm search repo prometheus-community/prometheus-pushgateway
variable "pushgateway_tag" {
description = "The image tag of the pushgateway image."
type = string
default = "v1.6.0"
default = "v1.9.0"
}

variable "rwo_storage_class" {
Expand Down
4 changes: 4 additions & 0 deletions version.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
locals {
_module_name = "tfmod-prometheus"
_module_version = "0.0.1"
}

0 comments on commit 2657e3d

Please sign in to comment.