Class: Eien::Domains::ListTask
- Defined in:
- lib/eien/domains/list_task.rb
Instance Attribute Summary collapse
-
#app ⇒ Object
readonly
Returns the value of attribute app.
Attributes inherited from Task
#context, #namespace, #task_config
Instance Method Summary collapse
-
#initialize(context, app) ⇒ ListTask
constructor
A new instance of ListTask.
- #run! ⇒ Object
Methods included from Helpers::TimeHelpers
Constructor Details
#initialize(context, app) ⇒ ListTask
Returns a new instance of ListTask.
8 9 10 11 |
# File 'lib/eien/domains/list_task.rb', line 8 def initialize(context, app) @app = app super(context) end |
Instance Attribute Details
#app ⇒ Object (readonly)
Returns the value of attribute app.
6 7 8 |
# File 'lib/eien/domains/list_task.rb', line 6 def app @app end |
Instance Method Details
#run! ⇒ Object
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/eien/domains/list_task.rb', line 13 def run! the_app = Eien.app_from_name(context, app) client = kubeclient_builder.build_eien_kubeclient(context) domains = client.get_domains(namespace: the_app.spec.namespace) table = TTY::Table.new( [ colorize("DOMAIN").yellow, colorize("ENABLED").yellow, colorize("NAME").yellow, colorize("AGE").yellow, ], domains.map do |domain| [ domain..name, summarize_enabled(domain.spec.enabled), domain.spec.domain, summarize_age(Time.parse(domain..creationTimestamp)), ] end, ) output = table.render(:basic) puts output end |