Class: Krane::DeployTask

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

Constant Summary

Constants inherited from KubernetesDeploy::DeployTask

KubernetesDeploy::DeployTask::PROTECTED_NAMESPACES

Instance Method Summary collapse

Methods inherited from KubernetesDeploy::DeployTask

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

Methods included from KubernetesDeploy::StatsD::MeasureMethods

#measure_method

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