Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public V1ContainerStatusBuilder(V1ContainerStatus instance) {
public V1ContainerStatus build() {
V1ContainerStatus buildable = new V1ContainerStatus();
buildable.setAllocatedResources(fluent.getAllocatedResources());
buildable.setAllocatedResourcesStatus(fluent.buildAllocatedResourcesStatus());
buildable.setContainerID(fluent.getContainerID());
buildable.setImage(fluent.getImage());
buildable.setImageID(fluent.getImageID());
Expand All @@ -34,6 +35,7 @@ public V1ContainerStatus build() {
buildable.setRestartCount(fluent.getRestartCount());
buildable.setStarted(fluent.getStarted());
buildable.setState(fluent.buildState());
buildable.setUser(fluent.buildUser());
buildable.setVolumeMounts(fluent.buildVolumeMounts());
return buildable;
}
Expand Down
Loading
Loading