-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsolidfire_common.py
58 lines (44 loc) · 1.7 KB
/
solidfire_common.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
# Copyright (c) 2019 Rackspace US, Inc.
#
# 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.
import json
import argparse
from auth_stack2 import AuthStack
from solidfire.factory import ElementFactory
def get_solid_fire():
auth = AuthStack()
sf = ElementFactory.create(auth.solid_fire_ip, auth.solid_fire_user, auth.solid_fire_password, print_ascii_art=False)
return sf
def get_volumes():
sf = get_solid_fire()
vls = sf.list_volumes()
return vls
def get_volume_by_volume_name(name):
vls = get_volumes()
for vl in vls.volumes:
if vl.name.endswith(name):
print "Found SolidFire volume for Cinder ID " + name
print "SolidFire volume name %(name)s SolidFire volume ID: %(id)s" % {"name": vl.name, "id": vl.volume_id}
return vl.volume_id
print "No SolidFire volume found for Cinder ID " + name
return None
def copy_volume(solid_fire_id, new_volume_name):
sf = get_solid_fire()
new_vol = sf.clone_volume(volume_id=solid_fire_id, name=new_volume_name)
print "SolidFire Volume copied"
return new_vol
def main():
get_volume_by_volume_name('xxx81f16643-a50c-43bf-84e3-d67ba35cd222')
if __name__ == "__main__":
main()