How to query kubernetes custom api (networking.gke.io/v1beta1) using go client?

8/28/2019

I want to play with kubernetes api with gke. But gke use a special api (networking.gke.io/v1beta1). I want to be able to query it, but the go-client of kubernetes dont have this api. How can I query it?

I try REST API, but dont know at all how to use it, and the documentation is not clear.

-- Mazout
go
kubernetes

1 Answer

8/28/2019

GKE networking apis and clients are in this repo : gke-managed-certs

Clients are in this package: /pkg/clients

-- Emruz Hossain
Source: StackOverflow