class Kubes::Docker::Strategy::Build::Gcloud

Public Instance Methods

perform() click to toggle source
# File lib/kubes/docker/strategy/build/gcloud.rb, line 3
def perform
  command = "gcloud builds submit --tag #{@@image_name}"
  run_hooks("docker.rb", name: "build") do
    sh(command)
  end
end