Class: Seira::Proxy

Inherits:
Object
  • Object
show all
Defined in:
lib/seira/proxy.rb

Constant Summary collapse

SUMMARY =
"Open up the proxy UI for a given cluster.".freeze

Instance Method Summary collapse

Constructor Details

#initializeProxy

Returns a new instance of Proxy.



5
6
# File 'lib/seira/proxy.rb', line 5

def initialize
end

Instance Method Details

#runObject



8
9
10
11
12
13
# File 'lib/seira/proxy.rb', line 8

def run
  begin
    system("kubectl proxy")
  rescue
  end
end