Skip to content

Latest commit

 

History

History

kubelet-configs

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

kubelet-configs

Introduction

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.

Example Usage

module "kubeletconfig" {
  source = "terraform-redhat/rosa-hcp/rhcs//modules/kubelet-configs"

  cluster_id = "cluster-id-123"
  name = "my-kubelet-config"
  pod_pids_limit = 4096
}

Requirements

Name Version
terraform >= 1.0
rhcs >= 1.6.2

Providers

Name Version
rhcs >= 1.6.2

Modules

No modules.

Resources

Name Type
rhcs_kubeletconfig.rosa_kubeletconfig resource

Inputs

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

Outputs

No outputs.