farrukh90 / terraform-kubernetes-namespace2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Usage

Please copy paste below code

module "testns" {
  source = "farrukh90/namespace/kubernetes"
  name             = "testns"
  pod_quota        = 50
  pod_cpu_limit    = "2096m"
  pod_memory_limit = "4Gi"
  annotations = {
    new = "application"
  }
  labels = {
    createdby = "farrukh90"
  }
}

About


Languages

Language:HCL 100.0%