Writing kubernetes extension

12/18/2015

I need to add a REST API for Kubernetes rolling update feature. Is there a way we can write extensions for Kubernetes API? If that so is there any documentation about writing them?

-- Dimuthu
kubernetes

1 Answer

12/18/2015

The Extending the API doc describes how you can add resources to the Kubernetes API.

If you just want a REST API for rolling update, you should check out the Deployment object.

-- CJ Cullen
Source: StackOverflow