Class: Eien::Routes::DeleteTask
- Defined in:
- lib/eien/routes/delete_task.rb
Instance Attribute Summary collapse
-
#app ⇒ Object
readonly
Returns the value of attribute app.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Attributes inherited from Task
#context, #namespace, #task_config
Instance Method Summary collapse
-
#initialize(context, app, name) ⇒ DeleteTask
constructor
A new instance of DeleteTask.
- #run! ⇒ Object
Methods included from Helpers::TimeHelpers
Constructor Details
#initialize(context, app, name) ⇒ DeleteTask
Returns a new instance of DeleteTask.
8 9 10 11 12 |
# File 'lib/eien/routes/delete_task.rb', line 8 def initialize(context, app, name) @app = Eien.app_from_name(context, app) @name = name super(context) end |
Instance Attribute Details
#app ⇒ Object (readonly)
Returns the value of attribute app.
6 7 8 |
# File 'lib/eien/routes/delete_task.rb', line 6 def app @app end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
6 7 8 |
# File 'lib/eien/routes/delete_task.rb', line 6 def name @name end |
Instance Method Details
#run! ⇒ Object
14 15 16 17 |
# File 'lib/eien/routes/delete_task.rb', line 14 def run! client = kubeclient_builder.build_eien_kubeclient(context) client.delete_route(name, app.spec.namespace) end |