mirror of
https://github.com/dhall-lang/dhall-kubernetes.git
synced 2024-11-03 21:05:47 +03:00
6acb5b3e18
Switch Integer to Natural
11 lines
582 B
Plaintext
11 lines
582 B
Plaintext
\(_params : {selector : (../types/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector.dhall), template : (../types/io.k8s.api.core.v1.PodTemplateSpec.dhall)}) ->
|
|
{ minReadySeconds = ([] : Optional (Natural))
|
|
, paused = ([] : Optional (Bool))
|
|
, progressDeadlineSeconds = ([] : Optional (Natural))
|
|
, replicas = ([] : Optional (Natural))
|
|
, revisionHistoryLimit = ([] : Optional (Natural))
|
|
, selector = _params.selector
|
|
, strategy = ([] : Optional (../types/io.k8s.api.apps.v1.DeploymentStrategy.dhall))
|
|
, template = _params.template
|
|
} : ../types/io.k8s.api.apps.v1.DeploymentSpec.dhall
|