fluke/devops-service/db/mongo/models/stack/stack_openstack.rb

12 lines
194 B
Ruby
Raw Normal View History

2015-03-06 12:20:30 +03:00
module Devops
module Model
class StackOpenstack < StackBase
2015-07-14 16:51:40 +03:00
self.provider = 'openstack'
2015-07-15 16:25:06 +03:00
def stack_status
2015-07-15 18:37:27 +03:00
details[:stack_status] if details
2015-07-15 16:25:06 +03:00
end
2015-03-06 12:20:30 +03:00
end
end
2015-02-12 13:01:05 +03:00
end