mirror of
https://github.com/dhall-lang/dhall-kubernetes.git
synced 2024-11-03 21:05:47 +03:00
40 lines
1.6 KiB
Plaintext
40 lines
1.6 KiB
Plaintext
{ affinity = ./io.k8s.api.core.v1.Affinity.dhall
|
|
, containers = [] : List ./../types/io.k8s.api.core.v1.Container.dhall
|
|
, ephemeralContainers =
|
|
[] : List ./../types/io.k8s.api.core.v1.EphemeralContainer.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 }
|
|
, overhead = [] : 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
|
|
, topologySpreadConstraints =
|
|
[] : List ./../types/io.k8s.api.core.v1.TopologySpreadConstraint.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
|
|
, preemptionPolicy = 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
|
|
}
|