dhall-kubernetes/defaults/io.k8s.api.core.v1.PodSpec.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

34 lines
1.3 KiB
Plaintext

{ affinity = ./io.k8s.api.core.v1.Affinity.dhall
, containers = [] : List ./../types/io.k8s.api.core.v1.Container.dhall
, hostAliases = [] : List ./../types/io.k8s.api.core.v1.HostAlias.dhall
, imagePullSecrets =
[] : List ./../types/io.k8s.api.core.v1.LocalObjectReference.dhall
, initContainers = [] : List ./../types/io.k8s.api.core.v1.Container.dhall
, nodeSelector = [] : List { mapKey : Text, mapValue : Text }
, readinessGates =
[] : List ./../types/io.k8s.api.core.v1.PodReadinessGate.dhall
, tolerations = [] : List ./../types/io.k8s.api.core.v1.Toleration.dhall
, volumes = [] : List ./../types/io.k8s.api.core.v1.Volume.dhall
, activeDeadlineSeconds = None Natural
, automountServiceAccountToken = None Bool
, dnsConfig = None ./../types/io.k8s.api.core.v1.PodDNSConfig.dhall
, dnsPolicy = None Text
, enableServiceLinks = None Bool
, hostIPC = None Bool
, hostNetwork = None Bool
, hostPID = None Bool
, hostname = None Text
, nodeName = None Text
, priority = None Natural
, priorityClassName = None Text
, restartPolicy = None Text
, runtimeClassName = None Text
, schedulerName = None Text
, securityContext = None ./../types/io.k8s.api.core.v1.PodSecurityContext.dhall
, serviceAccount = None Text
, serviceAccountName = None Text
, shareProcessNamespace = None Bool
, subdomain = None Text
, terminationGracePeriodSeconds = None Natural
}