On Thu, Jul 8, 2021 at 5:36 AM Ignazio Cassano <ignaziocassano@gmail.com> wrote:
Hello,
probably we discovered a new bug in kolla wallaby manila generic driver.
Starting by victoria release, the manila share conf requires the section [glance] otherwise it cannot create the service instance.
We modified the manila conf inserting the section [glance] like the following:
[glance]
auth_uri = http://10.102.119.194:5000
auth_url = http://10.102.119.194:35357
auth_type = password
project_domain_id = default
user_domain_id = default
region_name = RegionOne
endpoint_type = internalURL
project_name = service
username = glance
password = password
cafile =
memcache_security_strategy = ENCRYPT
memcache_secret_key = password
memcached_servers = 10.102.119.195:11211,10.102.119.196:11211,10.102.119.197:11211


And now it can create the service instance.

Could anyone verify it, please ?

yes, this looks like a bug in kolla-ansible; the template used needs a [glance] section: https://opendev.org/openstack/kolla-ansible/src/commit/2ecf0a8783a71777ab1082329bb3ae778f41e949/ansible/roles/manila/templates/manila-share.conf.j2#L25-L36

It was called out in this bug report: https://bugs.launchpad.net/kolla-ansible/+bug/1921935 
 

Ignazio