Package io.fabric8.kubernetes.client.dsl
Interface TimeoutImageEditReplacePatchable<T>
-
- All Superinterfaces:
ImageEditReplacePatchable<T>,ImageUpdateable<T>,Timeoutable
public interface TimeoutImageEditReplacePatchable<T> extends Timeoutable, ImageEditReplacePatchable<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Tpause()Mark the provided resource as pausedTrestart()Restart a resource.Tresume()Resume a paused resource.Tundo()Rollback to previous rollout.ImageEditReplacePatchable<T>withTimeout(long timeout, TimeUnit unit)Deprecated.client managed rollouts will be removed in future versionsImageEditReplacePatchable<T>withTimeoutInMillis(long timeoutInMillis)Deprecated.client managed rollouts will be removed in future versions-
Methods inherited from interface io.fabric8.kubernetes.client.dsl.ImageEditReplacePatchable
edit, updateImage, updateImage
-
-
-
-
Method Detail
-
withTimeout
@Deprecated ImageEditReplacePatchable<T> withTimeout(long timeout, TimeUnit unit)
Deprecated.client managed rollouts will be removed in future versionsSets the timeout for each pod scaling operation during the rolloutApplies only to ReplicaSets and ReplicationControllers
- Specified by:
withTimeoutin interfaceTimeoutable- Parameters:
timeout- 0 indicates no wait
-
withTimeoutInMillis
@Deprecated ImageEditReplacePatchable<T> withTimeoutInMillis(long timeoutInMillis)
Deprecated.client managed rollouts will be removed in future versionsSets the timeout for each pod scaling operation during the rolloutApplies only to ReplicaSets and ReplicationControllers
- Specified by:
withTimeoutInMillisin interfaceTimeoutable- Parameters:
timeoutInMillis- 0 indicates no wait
-
pause
T pause()
Mark the provided resource as paused- Specified by:
pausein interfaceImageEditReplacePatchable<T>- Returns:
- updated resource
-
resume
T resume()
Resume a paused resource. Paused resources will not be reconciled by a controller. By resuming a resource, we allow it to be reconciled again.- Specified by:
resumein interfaceImageEditReplacePatchable<T>- Returns:
- updated resource
-
restart
T restart()
Restart a resource. Resource will be rollout restarted.- Specified by:
restartin interfaceImageEditReplacePatchable<T>- Returns:
- updated resource
-
undo
T undo()
Rollback to previous rollout.- Specified by:
undoin interfaceImageEditReplacePatchable<T>- Returns:
- updated resource
-
-