1de5c3778c
Supported operations: 1. Create/delete a volume 2. Snapshot a volume 3. Create a volume from snapshot 4. Attach/detach volume to an instance Change-Id: I5b2a9ee964fc239153d6de9886cc5e4a8e743c17 Signed-off-by: Sanket <sanket@infracloud.io>
44 lines
1.7 KiB
Python
44 lines
1.7 KiB
Python
# Copyright 2017 Platform9 Systems Inc.(http://www.platform9.com)
|
|
#
|
|
# 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.
|
|
|
|
from oslo_config import cfg
|
|
|
|
gce_group = cfg.OptGroup(name='GCE',
|
|
title='Options to connect to Google cloud')
|
|
|
|
gce_opts = [
|
|
cfg.StrOpt('service_key_path', help='Service key of GCE account',
|
|
secret=True),
|
|
cfg.StrOpt('zone', help='GCE zone'),
|
|
cfg.StrOpt('region', help='GCE region'),
|
|
cfg.StrOpt('project_id', help='GCE project id'),
|
|
cfg.StrOpt('gce_pool_name', help='Storage pool name'),
|
|
cfg.IntOpt('gce_free_capacity_gb',
|
|
help='Free space available on GCE storage pool', default=1024),
|
|
cfg.IntOpt('gce_total_capacity_gb',
|
|
help='Total space available on GCE storage pool', default=1024)
|
|
] # yapf:disable
|
|
|
|
cfg.CONF.register_group(gce_group)
|
|
cfg.CONF.register_opts(gce_opts, group=gce_group)
|
|
|
|
service_key_path = cfg.CONF.GCE.service_key_path
|
|
zone = cfg.CONF.GCE.zone
|
|
region = cfg.CONF.GCE.region
|
|
project_id = cfg.CONF.GCE.project_id
|
|
|
|
gce_pool_name = cfg.CONF.GCE.gce_pool_name
|
|
gce_free_capacity_gb = cfg.CONF.GCE.gce_free_capacity_gb
|
|
gce_total_capacity_gb = cfg.CONF.GCE.gce_total_capacity_gb
|