37 lines
1.2 KiB
Ruby
37 lines
1.2 KiB
Ruby
#
|
|
# Cookbook Name:: openstack-block-storage
|
|
# Resource:: openstack-block-storage
|
|
#
|
|
# Copyright 2014-2014, Sam Su
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
actions :create_partition, :mk_cinder_vol
|
|
|
|
attribute :device, :kind_of => String, :name_attribute => true
|
|
attribute :label_type, :kind_of => String, :default => "gpt"
|
|
attribute :file_system, :kind_of => String, :default => "ext4"
|
|
attribute :part_type, :kind_of => String, :default => "primary"
|
|
#attribute :partition, :kind_of => String, :default => "0"
|
|
|
|
attr_accessor :last_num
|
|
attr_accessor :start_size
|
|
attr_accessor :total_size
|
|
attr_accessor :partition
|
|
|
|
def initialize(*args)
|
|
super
|
|
@action = :mk_cinder_vol
|
|
end
|