Skip to content

Commit

Permalink
add new var for rlease_version
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Jan 21, 2025
1 parent 641515c commit 4b291d9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ sys 0m2.015s
| <a name="input_cluster_name"></a> [cluster\_name](#input\_cluster\_name) | EKS cluster name name component used through out the EKS cluster describing its purpose (ex: dice-dev) | `string` | n/a | yes |
| <a name="input_operators_ns"></a> [operators\_ns](#input\_operators\_ns) | Namespace to create where operators will be installed. | `string` | `"operators"` | no |
| <a name="input_region"></a> [region](#input\_region) | AWS region | `string` | n/a | yes |
| <a name="input_release_version"></a> [release\_version](#input\_release\_version) | The version of helm charts to use | `string` | n/a | yes |
| <a name="input_security_group_all_worker_mgmt_id"></a> [security\_group\_all\_worker\_mgmt\_id](#input\_security\_group\_all\_worker\_mgmt\_id) | The security group representing all of the worker nodes in the cluster. | `string` | n/a | yes |
| <a name="input_subnets"></a> [subnets](#input\_subnets) | Specify the subnets used by this cluster | `list(string)` | n/a | yes |
| <a name="input_tag_costallocation"></a> [tag\_costallocation](#input\_tag\_costallocation) | Tag CostAllocation (default) | `string` | `"csvd:infrastructure"` | no |
Expand Down
2 changes: 1 addition & 1 deletion eks_console_access.tf
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,6 @@ resource "helm_release" "console_access" {
chart = each.key
name = each.key
namespace = "default"
version = local.release_version
version = var.release_version
repository = "./${each.key}"
}
9 changes: 4 additions & 5 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,10 @@ variable "tags" {
default = {}
}

# variable "kubectl_image_tag" {
# description = "The version of bitnami/kubectl image to use."
# type = string
# default = "1.30.4"
# }
variable "release_version" {
description = "The version of helm charts to use"
type = string
}

# # helm add repo autoscaler "https://kubernetes.github.io/autoscaler"
# # helm search repo -l autoscaler/cluster-autoscaler
Expand Down

0 comments on commit 4b291d9

Please sign in to comment.