This Terraform sub-module manages the kubelet configs for ROSA HCP clusters. It enables you to efficiently configure kubelet configs after cluster deployment. With this module, you can easily adjust the value of the pod pid limit in the custom KubeletConfig object to allow custom configuration of nodes in a machine pool.
module "kubeletconfig" {
source = "terraform-redhat/rosa-hcp/rhcs//modules/kubelet-configs"
cluster_id = "cluster-id-123"
name = "my-kubelet-config"
pod_pids_limit = 4096
}
Name |
Version |
rhcs |
>= 1.6.2 |
No modules.
Name |
Description |
Type |
Default |
Required |
cluster_id |
Identifier of the cluster. |
string |
n/a |
yes |
name |
Name of the KubeletConfig. |
string |
n/a |
yes |
pod_pids_limit |
Sets the requested podPidsLimit to be applied as part of the custom KubeletConfig. |
number |
null |
no |
No outputs.