class Kubeclient::Client

Kubernetes Client

Public Class Methods

new( uri, version = 'v1', **options ) click to toggle source
# File lib/kubeclient.rb, line 21
def initialize(
  uri,
  version = 'v1',
  **options
)
  initialize_client(
    uri,
    '/api',
    version,
    options
  )
end