dhall-kubernetes/types/io.k8s.api.core.v1.NodeStatus.dhall
Greg Ziegan 7af2ab5345 Prefer "schema" syntax for examples (#93)
* Also update to the latest version of `dhall`
* Also fix `./scripts/generate.sh` to generate the `schemas*` files
2019-11-23 16:53:03 -08:00

13 lines
601 B
Plaintext

{ addresses : List ./io.k8s.api.core.v1.NodeAddress.dhall
, allocatable : List { mapKey : Text, mapValue : Text }
, capacity : List { mapKey : Text, mapValue : Text }
, conditions : List ./io.k8s.api.core.v1.NodeCondition.dhall
, daemonEndpoints : ./io.k8s.api.core.v1.NodeDaemonEndpoints.dhall
, images : List ./io.k8s.api.core.v1.ContainerImage.dhall
, volumesAttached : List ./io.k8s.api.core.v1.AttachedVolume.dhall
, volumesInUse : List Text
, config : Optional ./io.k8s.api.core.v1.NodeConfigStatus.dhall
, nodeInfo : Optional ./io.k8s.api.core.v1.NodeSystemInfo.dhall
, phase : Optional Text
}