generated files

Kubernetes-commit: a76ada8d5ac5f4cea2d7fabce23d7af9c62e3eb9
This commit is contained in:
Ricky Pai
2017-04-28 22:51:35 -07:00
committed by Kubernetes Publisher
parent e7b07ed0c1
commit 750abd4711
13 changed files with 1836 additions and 1040 deletions

View File

@@ -2099,6 +2099,17 @@ type PodSpec struct {
// If specified, the pod's tolerations.
// +optional
Tolerations []Toleration
// HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts
// file if specified. This is only valid for non-hostNetwork pods.
// +optional
HostAliases []HostAlias
}
// HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the
// pod's hosts file.
type HostAlias struct {
IP string
Hostnames []string
}
// Sysctl defines a kernel parameter to be set