Skip to content

Commit

Permalink
fix(addons) do not assign to telemetry namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Feb 24, 2026
1 parent a3a3d9a commit ae3b836
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 12 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,6 @@ efs-csi-controller 0 5m
| <a name="input_enable_cluster_creator_admin_permissions"></a> [enable\_cluster\_creator\_admin\_permissions](#input\_enable\_cluster\_creator\_admin\_permissions) | Grant admin permissions to the cluster creator | `bool` | `true` | no |
| <a name="input_subnets_name"></a> [subnets\_name](#input\_subnets\_name) | Name pattern for subnets to be used by EKS cluster | `string` | `"*-container-*"` | no |
| <a name="input_tags"></a> [tags](#input\_tags) | Additional tags to apply to all resources | `map(string)` | `{}` | no |
| <a name="input_telemetry_namespace"></a> [telemetry\_namespace](#input\_telemetry\_namespace) | Namespace for telemetry components | `string` | `"telemetry"` | no |
| <a name="input_vpc_name"></a> [vpc\_name](#input\_vpc\_name) | Name of the VPC where EKS cluster will be created | `string` | n/a | yes |

## Outputs
Expand Down
1 change: 0 additions & 1 deletion addons.tf
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ locals {
}
prometheus-node-exporter = {
most_recent = true
namespace = var.telemetry_namespace
}
snapshot-controller = {
most_recent = true
Expand Down
10 changes: 0 additions & 10 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -145,13 +145,3 @@ variable "cloudwatch_retention_days" {
type = string
default = "14"
}

variable "telemetry_namespace" {
description = "Namespace for telemetry components"
type = string
default = "telemetry"
validation {
condition = can(regex("^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", var.telemetry_namespace)) && length(var.telemetry_namespace) <= 63
error_message = "Namespace must consist of lower case alphanumeric characters or '-', start and end with an alphanumeric character, and be no longer than 63 characters."
}
}

0 comments on commit ae3b836

Please sign in to comment.