Comment 6 for bug 1671703

Revision history for this message
Yuki Yamashita (kono) wrote :

Hi Frode,
Thank you your comment.

I carefully read and understood.
1080:def run_in_apache():
1081- """Return true if cinder API is run under apache2 with mod_wsgi in
1082- this release.
1083- """
1084- return os_release('cinder-common') >= 'ocata' <-----The release of OpenStack is in alphabetical order.It is wrongly determined in "stable/mitaka"

I tried deployment use following bundle.yaml,and so deployment succeeded!!!
#######
cat cinder.yaml
series: trusty
services:
  cinder:
    charm: ./trusty/charm-cinder
    options:
      openstack-origin-git: |
        repositories:
        - {name: requirements,
           repository: 'git://github.com/openstack/requirements',
           branch: 'master',
           depth: '5'}
        - {name: cinder,
           repository: 'git://github.com/openstack/cinder',
           branch: '8.1.1',
           depth: '5'}
        release: "mitaka"

I'm sorry, misunderstood it.
I should have known that wsgi support is from the ocata release.