public static interface V1.ContainerStatusOrBuilder
extends com.google.protobuf.MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
String |
getContainerID()
Container's ID in the format 'docker://<container_id>'.
|
com.google.protobuf.ByteString |
getContainerIDBytes()
Container's ID in the format 'docker://<container_id>'.
|
String |
getImage()
The image the container is running.
|
com.google.protobuf.ByteString |
getImageBytes()
The image the container is running.
|
String |
getImageID()
ImageID of the container's image.
|
com.google.protobuf.ByteString |
getImageIDBytes()
ImageID of the container's image.
|
V1.ContainerState |
getLastState()
Details about the container's last termination condition.
|
V1.ContainerStateOrBuilder |
getLastStateOrBuilder()
Details about the container's last termination condition.
|
String |
getName()
This must be a DNS_LABEL.
|
com.google.protobuf.ByteString |
getNameBytes()
This must be a DNS_LABEL.
|
boolean |
getReady()
Specifies whether the container has passed its readiness probe.
|
int |
getRestartCount()
The number of times the container has been restarted, currently based on
the number of dead containers that have not yet been removed.
|
V1.ContainerState |
getState()
Details about the container's current condition.
|
V1.ContainerStateOrBuilder |
getStateOrBuilder()
Details about the container's current condition.
|
boolean |
hasContainerID()
Container's ID in the format 'docker://<container_id>'.
|
boolean |
hasImage()
The image the container is running.
|
boolean |
hasImageID()
ImageID of the container's image.
|
boolean |
hasLastState()
Details about the container's last termination condition.
|
boolean |
hasName()
This must be a DNS_LABEL.
|
boolean |
hasReady()
Specifies whether the container has passed its readiness probe.
|
boolean |
hasRestartCount()
The number of times the container has been restarted, currently based on
the number of dead containers that have not yet been removed.
|
boolean |
hasState()
Details about the container's current condition.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
boolean hasName()
This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated.
optional string name = 1;
String getName()
This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated.
optional string name = 1;
com.google.protobuf.ByteString getNameBytes()
This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated.
optional string name = 1;
boolean hasState()
Details about the container's current condition. +optional
optional .k8s.io.api.core.v1.ContainerState state = 2;
V1.ContainerState getState()
Details about the container's current condition. +optional
optional .k8s.io.api.core.v1.ContainerState state = 2;
V1.ContainerStateOrBuilder getStateOrBuilder()
Details about the container's current condition. +optional
optional .k8s.io.api.core.v1.ContainerState state = 2;
boolean hasLastState()
Details about the container's last termination condition. +optional
optional .k8s.io.api.core.v1.ContainerState lastState = 3;
V1.ContainerState getLastState()
Details about the container's last termination condition. +optional
optional .k8s.io.api.core.v1.ContainerState lastState = 3;
V1.ContainerStateOrBuilder getLastStateOrBuilder()
Details about the container's last termination condition. +optional
optional .k8s.io.api.core.v1.ContainerState lastState = 3;
boolean hasReady()
Specifies whether the container has passed its readiness probe.
optional bool ready = 4;
boolean getReady()
Specifies whether the container has passed its readiness probe.
optional bool ready = 4;
boolean hasRestartCount()
The number of times the container has been restarted, currently based on the number of dead containers that have not yet been removed. Note that this is calculated from dead containers. But those containers are subject to garbage collection. This value will get capped at 5 by GC.
optional int32 restartCount = 5;
int getRestartCount()
The number of times the container has been restarted, currently based on the number of dead containers that have not yet been removed. Note that this is calculated from dead containers. But those containers are subject to garbage collection. This value will get capped at 5 by GC.
optional int32 restartCount = 5;
boolean hasImage()
The image the container is running. More info: https://kubernetes.io/docs/concepts/containers/images TODO(dchen1107): Which image the container is running with?
optional string image = 6;
String getImage()
The image the container is running. More info: https://kubernetes.io/docs/concepts/containers/images TODO(dchen1107): Which image the container is running with?
optional string image = 6;
com.google.protobuf.ByteString getImageBytes()
The image the container is running. More info: https://kubernetes.io/docs/concepts/containers/images TODO(dchen1107): Which image the container is running with?
optional string image = 6;
boolean hasImageID()
ImageID of the container's image.
optional string imageID = 7;
String getImageID()
ImageID of the container's image.
optional string imageID = 7;
com.google.protobuf.ByteString getImageIDBytes()
ImageID of the container's image.
optional string imageID = 7;
boolean hasContainerID()
Container's ID in the format 'docker://<container_id>'. +optional
optional string containerID = 8;
String getContainerID()
Container's ID in the format 'docker://<container_id>'. +optional
optional string containerID = 8;
com.google.protobuf.ByteString getContainerIDBytes()
Container's ID in the format 'docker://<container_id>'. +optional
optional string containerID = 8;
Copyright © 2021. All rights reserved.