probe Node

get_all_node_status_conditions

Retrieve all nodes conditions and statuses.

Run it now
View details
Typeprobe
Modulechaosk8s.node.probes
Nameget_all_node_status_conditions
Returnlist

Usage

JSON

{
  "name": "get-all-node-status-conditions",
  "type": "probe",
  "provider": {
    "type": "python",
    "module": "chaosk8s.node.probes",
    "func": "get_all_node_status_conditions"
  }
}

YAML

name: get-all-node-status-conditions
provider:
  func: get_all_node_status_conditions
  module: chaosk8s.node.probes
  type: python
type: probe

Arguments

NameTypeDefaultRequiredTitleDescription
label_selectorstringNoLabel SelectorTarget a subset of all the nodes only

Retrieve all nodes conditions and statuses.

Signature

def get_all_node_status_conditions(
        label_selector: str = None,
        configuration: Dict[str, Dict[str, str]] = None,
        secrets: Dict[str, Dict[str, str]] = None) -> List[Dict[str, str]]:
    pass