mirror of
https://github.com/dhall-lang/dhall-kubernetes.git
synced 2024-11-03 21:05:47 +03:00
6acb5b3e18
Switch Integer to Natural
9 lines
408 B
Plaintext
9 lines
408 B
Plaintext
\(_params : {replicas : (Natural)}) ->
|
|
{ availableReplicas = ([] : Optional (Natural))
|
|
, conditions = ([] : Optional (List ../types/io.k8s.api.apps.v1.ReplicaSetCondition.dhall))
|
|
, fullyLabeledReplicas = ([] : Optional (Natural))
|
|
, observedGeneration = ([] : Optional (Natural))
|
|
, readyReplicas = ([] : Optional (Natural))
|
|
, replicas = _params.replicas
|
|
} : ../types/io.k8s.api.apps.v1.ReplicaSetStatus.dhall
|