Skip to content

Commit 7fa9887

Browse files
committed
fix(documentation): change variable description and fix documentation
1 parent a28060b commit 7fa9887

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ In this module, we have created simple Terraform variables to easily configure s
2626
|------|-------------|------|---------|:--------:|
2727
| <a name="input_additional_values"></a> [additional\_values](#input\_additional\_values) | Additional values to pass to the helm chart. | `list(string)` | `[]` | no |
2828
| <a name="input_chart_version"></a> [chart\_version](#input\_chart\_version) | Chart version to install. | `string` | `"0.29.0"` | no |
29-
| <a name="input_create_namespace"></a> [create\_namespace](#input\_create\_namespace) | Create namespace for the ingress controller. If false, the namespace must be created before using this module. | `bool` | `true` | no |
29+
| <a name="input_create_namespace"></a> [create\_namespace](#input\_create\_namespace) | Create namespace for the descheduler application. If false, the namespace must be created before using this module. | `bool` | `true` | no |
3030
| <a name="input_helm_release_name"></a> [helm\_release\_name](#input\_helm\_release\_name) | Name of the helm release. | `string` | `"descheduler"` | no |
3131
| <a name="input_k8s_additional_labels"></a> [k8s\_additional\_labels](#input\_k8s\_additional\_labels) | Set of additional labels to apply to all resources. | `map(string)` | `{}` | no |
3232
| <a name="input_k8s_labels"></a> [k8s\_labels](#input\_k8s\_labels) | Set of labels to apply to all resources. | `map(string)` | <pre>{<br> "managed-by": "terraform"<br>}</pre> | no |

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
variable "create_namespace" {
2-
description = "Create namespace for the ingress controller. If false, the namespace must be created before using this module."
2+
description = "Create namespace for the descheduler application. If false, the namespace must be created before using this module."
33
type = bool
44
default = true
55
}

0 commit comments

Comments
 (0)