kubernetes_runtime_class_v1

A runtime class is used to determine which container runtime is used to run all containers in a pod.

Example usage

resource "kubernetes_runtime_class_v1" "example" {
  metadata {
    name = "myclass"
  }
  handler = "abcdeagh"
}

Argument Reference

The following arguments are supported:

Nested Blocks

metadata

Arguments

Attributes

Import

Runtime class can be imported using the name only, e.g.

$ terraform import kubernetes_runtime_class_v1.example myclass