Package io.fabric8.kubernetes.client.dsl
Interface ImageEditReplacePatchable<T>
-
- All Superinterfaces:
ImageUpdateable<T>
- All Known Subinterfaces:
TimeoutImageEditReplacePatchable<T>
@Deprecated public interface ImageEditReplacePatchable<T> extends ImageUpdateable<T>
Deprecated.will be removed in future versions
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Tedit(UnaryOperator<T> function)Deprecated.client managed rollouts will be removed in future versionsTpause()Deprecated.should be called prior to the timeout methodTrestart()Deprecated.should be called prior to the timeout methodTresume()Deprecated.should be called prior to the timeout methodTundo()Deprecated.should be called prior to the timeout methodTupdateImage(String image)Deprecated.should be called prior to the rolling methodTupdateImage(Map<String,String> containerToImageMap)Deprecated.should be called prior to the rolling method
-
-
-
Method Detail
-
edit
@Deprecated T edit(UnaryOperator<T> function)
Deprecated.client managed rollouts will be removed in future versionsEdit the context or current item and apply the result to trigger a rollout. It is resource dependent how the new resource is applied.- Parameters:
function-- Returns:
-
pause
@Deprecated T pause()
Deprecated.should be called prior to the timeout methodMark the provided resource as paused- Returns:
- updated resource
-
resume
@Deprecated T resume()
Deprecated.should be called prior to the timeout methodResume a paused resource. Paused resources will not be reconciled by a controller. By resuming a resource, we allow it to be reconciled again.- Returns:
- updated resource
-
restart
@Deprecated T restart()
Deprecated.should be called prior to the timeout methodRestart a resource. Resource will be rollout restarted.- Returns:
- updated resource
-
undo
@Deprecated T undo()
Deprecated.should be called prior to the timeout methodRollback to previous rollout.- Returns:
- updated resource
-
updateImage
@Deprecated T updateImage(Map<String,String> containerToImageMap)
Deprecated.should be called prior to the rolling methodDescription copied from interface:ImageUpdateableUpdate existing container image(s) of resources- Specified by:
updateImagein interfaceImageUpdateable<T>- Parameters:
containerToImageMap- Map with keys as container name and value as image- Returns:
- updated resource
-
updateImage
@Deprecated T updateImage(String image)
Deprecated.should be called prior to the rolling methodDescription copied from interface:ImageUpdateableUpdate existing container image of single container resource- Specified by:
updateImagein interfaceImageUpdateable<T>- Parameters:
image- image to be updated- Returns:
- updated resource
-
-