16 lines
		
	
	
		
			272 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			272 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| class StackTemplateOpenstack < StackTemplateBase
 | |
| 
 | |
|   def delete_template_file_from_storage
 | |
|     raise 'Implement me'
 | |
|   end
 | |
| 
 | |
|   class << self
 | |
|     private
 | |
| 
 | |
|     def upload_file_to_storage(filename, path)
 | |
|     "https://openstack_host/v1/my_account/#{filename}"
 | |
|     end
 | |
|   end
 | |
| 
 | |
| end
 | 
