probeEKS

describe_cluster

Describe an EKS cluster

Activity as code

Below are the details and signature of the activity Python module.

Typeprobe
Modulechaosaws.eks.probes
Namedescribe_cluster
Returnmapping

Usage

JSON

{
  "name": "describe-cluster",
  "type": "probe",
  "provider": {
    "type": "python",
    "module": "chaosaws.eks.probes",
    "func": "describe_cluster",
    "arguments": {
      "name": ""
    }
  }
}

YAML

name: describe-cluster
provider:
  arguments:
    name: ""
  func: describe_cluster
  module: chaosaws.eks.probes
  type: python
type: probe

Arguments

NameTypeDefaultRequiredTitleDescription
namestringYesCluster Name

Signature

def describe_cluster(
        name: str,
        configuration: Dict[str, Dict[str, str]] = None,
        secrets: Dict[str, Dict[str, str]] = None) -> Dict[str, Any]:
    pass