mirror of
https://github.com/dhall-lang/dhall-kubernetes.git
synced 2024-11-09 17:30:49 +03:00
381306bcc3
Fixes https://github.com/dhall-lang/dhall-kubernetes/issues/86 The motivation of this is to more accurately model the Kubernetes API semantics by not auto-omitting empty fields. This is because a field set to `Some ([] : List T)` is not necessarily the same as `None (List T)`. This makes the typical case a bit more verbose (more `Some`s), but the difference to the `./examples` shows that it's not too bad.
10 lines
338 B
Plaintext
10 lines
338 B
Plaintext
{ availableReplicas : Optional Natural
|
|
, collisionCount : Optional Natural
|
|
, conditions : Optional (List ./io.k8s.api.apps.v1.DeploymentCondition.dhall)
|
|
, observedGeneration : Optional Natural
|
|
, readyReplicas : Optional Natural
|
|
, replicas : Optional Natural
|
|
, unavailableReplicas : Optional Natural
|
|
, updatedReplicas : Optional Natural
|
|
}
|