Chris G.
Chris G.

Reputation: 25964

Writing a k8s client - which one to use

Starting to learn and write cli clients for kubernetes, which one to use:

  1. https://github.com/kubernetes-client/go
    or older and maybe deprecated at some point:
  2. https://github.com/kubernetes/client-go

If starting now, which one to bet on?

Upvotes: 0

Views: 56

Answers (1)

Rico
Rico

Reputation: 61551

This is an opinion based question so the answer is an opinion:

Use the official Kubernetes go client: https://github.com/kubernetes/client-go

Upvotes: 2

Related Questions