Bug 1491597
Summary: | Volume create fails, when heat template configures nfs for both Cinder & Glance. | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Product: | Red Hat OpenStack | Reporter: | Tzach Shefi <tshefi> | ||||||||||
Component: | openstack-tripleo-heat-templates | Assignee: | Alan Bishop <abishop> | ||||||||||
Status: | CLOSED EOL | QA Contact: | Gurenko Alex <agurenko> | ||||||||||
Severity: | medium | Docs Contact: | |||||||||||
Priority: | medium | ||||||||||||
Version: | 11.0 (Ocata) | CC: | aschultz, mburns, pgrist, rhel-osp-director-maint | ||||||||||
Target Milestone: | --- | Keywords: | Triaged, ZStream | ||||||||||
Target Release: | 11.0 (Ocata) | ||||||||||||
Hardware: | Unspecified | ||||||||||||
OS: | Unspecified | ||||||||||||
Whiteboard: | |||||||||||||
Fixed In Version: | Doc Type: | If docs needed, set a value | |||||||||||
Doc Text: | Story Points: | --- | |||||||||||
Clone Of: | Environment: | ||||||||||||
Last Closed: | 2018-06-22 12:33:31 UTC | Type: | Bug | ||||||||||
Regression: | --- | Mount Type: | --- | ||||||||||
Documentation: | --- | CRM: | |||||||||||
Verified Versions: | Category: | --- | |||||||||||
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||||||||
Cloudforms Team: | --- | Target Upstream Version: | |||||||||||
Embargoed: | |||||||||||||
Attachments: |
|
Description
Tzach Shefi
2017-09-14 08:58:01 UTC
Created attachment 1325844 [details]
nfs11_GlanceCinder.yaml
Created attachment 1325846 [details]
nfs11Cinder.yaml
Created attachment 1325941 [details]
Logs
Some mode debugging info, deleted overcloud
Attempted with this template
parameter_defaults:
CinderEnableIscsiBackend: false
CinderEnableRbdBackend: false
CinderEnableNfsBackend: true
CinderNfsMountOptions: '' --> removed the retry=1, which was here before.
CinderNfsServers: '10.35.160.111:/export/ins_cinder'
GlanceBackend: 'file'
GlanceNfsEnabled: true
GlanceNfsShare: '10.35.160.111:/export/ins_glance'
Cinder create still fails, Cinder mount still missing.
OK looks like setting mount option-> nosharecache resolves the issue. On this last attempt used this heat template: parameter_defaults: CinderEnableIscsiBackend: false CinderEnableRbdBackend: false CinderEnableNfsBackend: true CinderNfsMountOptions: 'nosharecache' CinderNfsServers: '10.35.160.111:/export/ins_cinder' GlanceBackend: 'file' GlanceNfsEnabled: true GlanceNfsMountOptions: 'nosharecache' GlanceNfsShare: '10.35.160.111:/export/ins_glance' Volume is available $ cinder list +--------------------------------------+-----------+------+------+-------------+----------+-------------+ | ID | Status | Name | Size | Volume Type | Bootable | Attached to | +--------------------------------------+-----------+------+------+-------------+----------+-------------+ | 08945b6f-83f9-442c-bbd5-b19bc2a6dc13 | available | - | 1 | - | false | | +--------------------------------------+-----------+------+------+-------------+----------+-------------+ Not sure what the outcome of this bug is: 1. Maybe check if we should add nosharecache by default? 2. At least document this issue. Is this one worth fixing or do we want to set the fields to just make sure we document it? OSP11 is now retired, see details at https://access.redhat.com/errata/product/191/ver=11/rhel---7/x86_64/RHBA-2018:1828 |