Class: Krane::DeployTask

Inherits:
DeprecatedDeployTask show all
Defined in:
lib/krane/deploy_task.rb

Constant Summary

Constants inherited from DeprecatedDeployTask

Krane::DeprecatedDeployTask::PROTECTED_NAMESPACES

Instance Method Summary collapse

Methods inherited from DeprecatedDeployTask

#predeploy_sequence, #prune_whitelist, #run, #run!, #server_version

Methods included from StatsD::MeasureMethods

#measure_method

Methods included from TemplateReporting

#add_para_from_list, #record_invalid_template, #record_warnings

Constructor Details

#initialize(**args) ⇒ DeployTask

Returns a new instance of DeployTask.



7
8
9
10
# File 'lib/krane/deploy_task.rb', line 7

def initialize(**args)
  raise "Use Krane::DeployGlobalTask to deploy global resources" if args[:allow_globals]
  super(args.merge(allow_globals: false))
end