InspectPodInfraConfig contains the configuration of the pod's infra container.
| Name | Type | Description | Notes |
|---|---|---|---|
| dnSOption | List<String> | DNSOption is a set of DNS options that will be used by the infra container's resolv.conf and shared with the remainder of the pod. | [optional] |
| dnSSearch | List<String> | DNSSearch is a set of DNS search domains that will be used by the infra container's resolv.conf and shared with the remainder of the pod. | [optional] |
| dnSServer | List<String> | DNSServer is a set of DNS Servers that will be used by the infra container's resolv.conf and shared with the remainder of the pod. | [optional] |
| hostAdd | List<String> | HostAdd adds a number of hosts to the infra container's resolv.conf which will be shared with the rest of the pod. | [optional] |
| hostNetwork | Boolean | HostNetwork is whether the infra container (and thus the whole pod) will use the host's network and not create a network namespace. | [optional] |
| hostsFile | String | HostsFile is the base file to create the `/etc/hosts` file inside the infra container which will be shared with the rest of the pod. | [optional] |
| networkOptions | Map<String, List<String>> | NetworkOptions are additional options for each network | [optional] |
| networks | List<String> | Networks is a list of networks the pod will join. | [optional] |
| noManageHostname | Boolean | NoManageHostname indicates that the pod will not manage /etc/hostname and instead each container will handle their own. | [optional] |
| noManageHosts | Boolean | NoManageHosts indicates that the pod will not manage /etc/hosts and instead each container will handle their own. | [optional] |
| noManageResolvConf | Boolean | NoManageResolvConf indicates that the pod will not manage resolv.conf and instead each container will handle their own. | [optional] |
| portBindings | Map<String, List<@Valid InspectHostPort>> | PortBindings are ports that will be forwarded to the infra container and then shared with the pod. | [optional] |
| staticIP | String | StaticIP is a static IPv4 that will be assigned to the infra container and then used by the pod. | [optional] |
| staticMAC | String | StaticMAC is a static MAC address that will be assigned to the infra container and then used by the pod. | [optional] |
| cpuPeriod | Integer | CPUPeriod contains the CPU period of the pod | [optional] |
| cpuQuota | Long | CPUQuota contains the CPU quota of the pod | [optional] |
| cpusetCpus | String | CPUSetCPUs contains linux specific CPU data for the container | [optional] |
| pidNs | String | Pid is the PID namespace mode of the pod's infra container | [optional] |
| userns | String | UserNS is the usernamespace that all the containers in the pod will join. | [optional] |
| utsNs | String | UtsNS is the uts namespace that all containers in the pod will join | [optional] |
- Serializable