What languange does Kops API require?

12/14/2018

I have a question regarding to kops developed by kubernetes. Does it provide an API and if so what programing languange? Thanks in advance

-- Radaeld
cloud
containers
kops
kubernetes

1 Answer

2/10/2019

you can also use the cluster spec, it references Kops API ( written in go ): https://godoc.org/k8s.io/kops/pkg/apis/kops

so with a small wrapper script or some midelware you can achieve a full api.

another interesting option is to use Kops toolbox and the templating ( go based ): https://github.com/kubernetes/kops/blob/master/docs/cluster_template.md

-- kbry
Source: StackOverflow