Questions tagged [openstack-cinder]

Cinder is a Block Storage service for OpenStack. It's designed to allow the use of either a reference implementation (LVM) to present storage resources to end users that can be consumed by the OpenStack Compute Project (Nova).

Cinder virtualizes pools of block storage devices and provides end users with a self service API to request and consume those resources without requiring any knowledge of where their storage is actually deployed or on what type of device.

Source

73 questions
0
votes
1 answer

What diff between `cinder-manage db sync` and `cinder-manage db online_data_migrations` command?

I am trying to upgrade database's schema of cinder from Newton to Ocata version. I found two command to do that is cinder-manage db sync and cinder-manage db online_data_migrations but can anyone explain for me what exactly those command do? Thanks!
lamth
  • 149
  • 9
0
votes
0 answers

Shell script to wait till the command execute and status change

I am creating a shell script to Backup openstack cinder volume to glance image as like below. test1 is volume name in the script. #!/bin/bash DATE=`date +%Y-%m-%d` BACKUPDIR=/mnt/osbk/ declare -a VMS=( test1 ) source /root/admin-openrc echo…
0
votes
1 answer

Openstack Cinder version not supported

I am trying to create a cinder storage with a size of 5Gb and I get the following error. # cinder create 5 --display-name FileStorage ERROR: Version 3.52 is not supported by the API. Minimum is 3.0 and maximum is 3.50. (HTTP 406) (Request-ID:…
newbieCoder
  • 11
  • 1
  • 7
0
votes
1 answer

Cinder volume creation failing on openstack: No valid host was found

I'm posting this as a question to report a problem (and workaround) I encountered that doesn't seem to be covered by other questions. It's probably quite specific to the software setup I'm using, but in case it helps... This was on a single-node…
Graham Klyne
  • 816
  • 10
  • 16
0
votes
1 answer

Kubernetes associate cinder storage with pod

I have a K8 cluster and need to associate my pods with a cinder storage options. I tried two options but both fail. Can anyone shed light on what is happening? Option1: Manually created the volume in OpenStack and integrated it in my yaml…
ram
  • 21
  • 1
  • 7
0
votes
1 answer

Openstack heat : Stack deletion behaviour in case of attaching a volume as a part of HEAT templete

I have a HEAT template where I am creating one server instance and attaching the CINDER volume with the instance. CINDER volume is created manually and cinder_instance_id is passed as an environmental variable in HEAT template. Now, when I delete…
sauumum
  • 1,638
  • 1
  • 19
  • 36
0
votes
1 answer

kubernetes 1.7 - dynamic volume plugin openstack

I do not manage to make cinder volume plugin work. I use kubeadm 1.7. As the documentation is missing, and all the questions concerning dynamic volume provisioning stay unanswered, I was wondering if someone has already succeeded in using it ? I…
matth3o
  • 3,229
  • 3
  • 20
  • 24
0
votes
1 answer

What is the difference between ceph rbd and iscsi in the context of Cinder volume (of type ceph)?

I am trying to get a volume driver to work on a docker swarm which uses nova instances and cinder volume and makes persistent storage available for the swarm services. I can only create cinder volumes of type ceph. I am modifying the driver and…
Anu
  • 400
  • 1
  • 4
  • 19
0
votes
1 answer

How to use openstack API v3 to list accessible volumes

I am learning OpenStack now and I want to list all accessible volumes on my OpenStack controller by HTTP get request with x_auth_token: http://{OpenStack controller IP}:8776/v3/{project_id}/volumes (Reference URL:…
lyn
  • 53
  • 8
0
votes
1 answer

Attach volume failed, how to post `os-initialize_connection`

In the Official Document https://developer.openstack.org/api-ref/block-storage/v2/index.html , there is only one step to attach a volume to server: POST /v2/{tenant_id}/volumes/{volume_id}/action { "os-attach": { "instance_uuid":…
Honghe.Wu
  • 5,899
  • 6
  • 36
  • 47
0
votes
1 answer

Cinder Driver failed to start

I have written a cinder driver but it is failing to start. It is giving me following error 2016-11-29 17:01:56.807 INFO cinder.volume.manager [req-4fe59a59-bb73-48e4-bfca-e8730e9a74c8 None None] Determined volume DB was empty at…
Atul K.
  • 352
  • 1
  • 6
  • 16
0
votes
0 answers

mount LVM volume

I have installed openstack cinder module. Everything works great. but i want to mount a volume in order to see its contents. I typed lvscan command on cinder storage computer. I can see my volume list. ACTIVE …
Bob5421
  • 7,757
  • 14
  • 81
  • 175
0
votes
1 answer

openstack cinder : volume:create: No valid host was found. No weighed hosts available

I am trying to get a working openstack liberty in one of our dev servers that has minimal configuration and has ubuntu 14:04. All the components looks good and I was able to create instance and view the dashboard too. Now, I am trying to create a…
Sbal
  • 343
  • 7
  • 20
0
votes
1 answer

Openstack instance snapshot is creates an empty image

I have a local devstack deployment of openstack kilo, I wanted to backup a running instance in openstack. So I wanted to create snapshot of a running instance. I did create snapshot of running instances (both with API and Horizon); however, it is…
nick
  • 29
  • 8
0
votes
2 answers

Error-Openstack Installation Cinder API did not Start

I tried installing devstack OpenStack-liberty on Ubuntu 14.04 Using VM Virtualbox. I want to integrate nova,swift,cinder along with OpenStack. I have enabled services for cinder in localrc file. After trying so many times i.e stacking(run…