Skip to content
Advertisement

Kubernetes Java API (Model) Deep Copy

I am trying to deep copy items from the official Kubernetes Java V1 API models but there aren’t any copy constructors, Cloneable, nor Serializable interface implementations in any of the model objects. Does anyone have any ideas on how one may go about achieving this?


Edit:

Given the confusion of @RoddyoftheFrozenPeas I would like to clarify the situation for those who haven’t used the API.

The V1 Objects have other deeply nested V1 Objects. Take for instance the V1Pod has a V1PodSpec. Merely copying the objects fields at the top level will result in references to the nested objects. Modification of any of the nested objects will be observed in the other objects which retain references to said object.

Edit 2:

A simple self-contained test with results after execution. Perhaps I am doing something incorrectly?

JavaScript

Original:

JavaScript

Copy:

JavaScript

Advertisement

Answer

The easiest way to copy K8s Java API resources is to utilize the withNew[field name]Like methods available in the V1 object builder pattern. Here is a simple self-contained example that demonstrates usage for the case above.

Example:

JavaScript

Original:

JavaScript

Copy:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement