fluke/devops-service/db/mongo/models/stack_template/stack_template_openstack.rb

20 lines
355 B
Ruby
Raw Normal View History

2015-03-06 12:20:30 +03:00
module Devops
module Model
class StackTemplateOpenstack < StackTemplateBase
2015-02-12 13:01:05 +03:00
2015-03-06 12:20:30 +03:00
def delete_template_file_from_storage
raise 'Implement me'
end
class << self
private
2015-02-12 13:01:05 +03:00
2015-03-06 12:20:30 +03:00
def upload_file_to_storage(filename, path)
"https://openstack_host/v1/my_account/#{filename}"
end
end
2015-02-12 13:01:05 +03:00
end
end
end