Skip to content

cktf/terraform-kubernetes-environment

Repository files navigation

Terraform Kubernetes Environment

pipeline release license

Environment is a Terraform module useful for creating an environment resources in Kubernetes provider

Installation

Add the required configurations to your terraform config file and install module using command bellow:

terraform init

Usage

module "environment" {
  source = "cktf/environment/kubernetes"

  name = "staging"
  registry = {
    endpoint = "<REGSITRY_ENDPOINT>"
    username = "<REGSITRY_USERNAME>"
    password = "<REGSITRY_PASSWORD>"
  }
  quota = {
    cpu    = "1000"
    memory = "200Gi"
    pods   = "10"
  }
}

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

This project is licensed under the MIT.
Copyright (c) KoLiBer ([email protected])