Using glance without authentication
I'm trying to setup a glance service for hosting images but I don't want to mess with keystone installation and configuration.
After installing glance I just removed the flavor =
setting from _glance-api.conf_, I suppose that without explicit flavor the default pipeline is used. The default pipeline doesn't include the keystone
filter so I guess the service will just answer requests without going through the token stuff. This is not the case, glance raises a exception.NotAuthenticated()
for every request.
My question: is it possible (and if so, how?) to get glance working bypassing the authentication part?