<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" id="owaParaStyle">P {margin-top:0;margin-bottom:0;}</style>
</head>
<body fpstyle="1" ocsi="0">
<div style="direction: ltr;font-family: Tahoma;color: #000000;font-size: 10pt;">So, one thing to remember, I don't think etcd has an authz mechanism yet.<br>
<br>
You usually want your fernet keys to be accessible by just the keystone nodes and no others.<br>
<br>
This might require a etcd cluster just for keystone fernet tokens, which might work great. but is an operator overhead to install/maintain.<br>
<br>
<div style="font-family: Times New Roman; color: #000000; font-size: 16px">
<hr tabindex="-1">
<div id="divRpF633558" style="direction: ltr;"><font size="2" face="Tahoma" color="#000000"><b>From:</b> Lance Bragstad [lbragstad@gmail.com]<br>
<b>Sent:</b> Thursday, June 08, 2017 10:34 AM<br>
<b>To:</b> OpenStack Development Mailing List (not for usage questions)<br>
<b>Subject:</b> Re: [openstack-dev] [all] etcd3 as base service - update<br>
</font><br>
</div>
<div></div>
<div>
<div dir="ltr">After digging into etcd a bit, one place this might be help deployer experience would be the handling of fernet keys for token encryption in keystone. Currently, all keys used to encrypt and decrypt tokens are kept on disk for each keystone node
 in the deployment. While simple, it requires operators to perform rotation on a single node and then push, or sync, the new key set to the rest of the nodes. This must be done in lock step in order to prevent early token invalidation and inconsistent token
 responses.
<div><br>
</div>
<div>An alternative would be to keep the keys in etcd and make the fernet bits pluggable so that it's possible to read keys from disk or etcd (pending configuration). The advantage would be that operators could initiate key rotations from any keystone node
 in the deployment (or using etcd directly) and not have to worry about distributing the new key set. Since etcd associates metadata to the key-value pairs, we might be able to simplify the rotation strategy as well.</div>
</div>
<div class="gmail_extra"><br>
<div class="gmail_quote">On Thu, Jun 8, 2017 at 11:37 AM, Mike Bayer <span dir="ltr">
<<a href="mailto:mbayer@redhat.com" target="_blank">mbayer@redhat.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex; border-left:1px #ccc solid; padding-left:1ex">
<span class=""><br>
<br>
On 06/08/2017 12:47 AM, Joshua Harlow wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex; border-left:1px #ccc solid; padding-left:1ex">
So just out of curiosity, but do people really even know what etcd is good for? I am thinking that there should be some guidance from folks in the community as to where etcd should be used and where it shouldn't (otherwise we just all end up in a mess).<br>
</blockquote>
<br>
</span>So far I've seen a proposal of etcd3 as a replacement for memcached in keystone, and a new dogpile connector was added to oslo.cache to handle referring to etcd3 as a cache backend.  This is a really simplistic / minimal kind of use case for a key-store.<br>
<br>
But, keeping in mind I don't know anything about etcd3 other than "it's another key-store", it's the only database used by Kubernetes as a whole, which suggests it's doing a better job than Redis in terms of "durable".   So I wouldn't be surprised if new /
 existing openstack applications express some gravitational pull towards using it as their own datastore as well.    I'll be trying to hang onto the etcd3 track as much as possible so that if/when that happens I still have a job :).
<div class="HOEnZb">
<div class="h5"><br>
<br>
<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex; border-left:1px #ccc solid; padding-left:1ex">
<br>
Perhaps a good idea to actually give examples of how it should be used, how it shouldn't be used, what it offers, what it doesn't... Or at least provide links for people to read up on this.<br>
<br>
Thoughts?<br>
<br>
Davanum Srinivas wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex; border-left:1px #ccc solid; padding-left:1ex">
One clarification: Since <a href="https://pypi.python.org/pypi/etcd3gw" rel="noreferrer" target="_blank">
https://pypi.python.org/pypi/e<wbr>tcd3gw</a> just<br>
uses the HTTP API (/v3alpha) it will work under both eventlet and<br>
non-eventlet environments.<br>
<br>
Thanks,<br>
Dims<br>
<br>
<br>
On Wed, Jun 7, 2017 at 6:47 AM, Davanum Srinivas<<a href="mailto:davanum@gmail.com" target="_blank">davanum@gmail.com</a>>  wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex; border-left:1px #ccc solid; padding-left:1ex">
Team,<br>
<br>
Here's the update to the base services resolution from the TC:<br>
<a href="https://governance.openstack.org/tc/reference/base-services.html" rel="noreferrer" target="_blank">https://governance.openstack.o<wbr>rg/tc/reference/base-services.<wbr>html</a><br>
<br>
First request is to Distros, Packagers, Deployers, anyone who<br>
installs/configures OpenStack:<br>
Please make sure you have latest etcd 3.x available in your<br>
environment for Services to use, Fedora already does, we need help in<br>
making sure all distros and architectures are covered.<br>
<br>
Any project who want to use etcd v3 API via grpc, please use:<br>
<a href="https://pypi.python.org/pypi/etcd3" rel="noreferrer" target="_blank">https://pypi.python.org/pypi/e<wbr>tcd3</a> (works only for non-eventlet services)<br>
<br>
Those that depend on eventlet, please use the etcd3 v3alpha HTTP API using:<br>
<a href="https://pypi.python.org/pypi/etcd3gw" rel="noreferrer" target="_blank">https://pypi.python.org/pypi/e<wbr>tcd3gw</a><br>
<br>
If you use tooz, there are 2 driver choices for you:<br>
<a href="https://github.com/openstack/tooz/blob/master/setup.cfg#L29" rel="noreferrer" target="_blank">https://github.com/openstack/t<wbr>ooz/blob/master/setup.cfg#L29</a><br>
<a href="https://github.com/openstack/tooz/blob/master/setup.cfg#L30" rel="noreferrer" target="_blank">https://github.com/openstack/t<wbr>ooz/blob/master/setup.cfg#L30</a><br>
<br>
If you use oslo.cache, there is a driver for you:<br>
<a href="https://github.com/openstack/oslo.cache/blob/master/setup.cfg#L33" rel="noreferrer" target="_blank">https://github.com/openstack/o<wbr>slo.cache/blob/master/setup.cf<wbr>g#L33</a><br>
<br>
Devstack installs etcd3 by default and points cinder to it:<br>
<a href="http://git.openstack.org/cgit/openstack-dev/devstack/tree/lib/etcd3" rel="noreferrer" target="_blank">http://git.openstack.org/cgit/<wbr>openstack-dev/devstack/tree/li<wbr>b/etcd3</a><br>
<a href="http://git.openstack.org/cgit/openstack-dev/devstack/tree/lib/cinder#n356" rel="noreferrer" target="_blank">http://git.openstack.org/cgit/<wbr>openstack-dev/devstack/tree/li<wbr>b/cinder#n356</a>
<br>
<br>
Review in progress for keystone to use etcd3 for caching:<br>
<a href="https://review.openstack.org/#/c/469621/" rel="noreferrer" target="_blank">https://review.openstack.org/#<wbr>/c/469621/</a><br>
<br>
Doug is working on proposal(s) for oslo.config to store some<br>
configuration in etcd3:<br>
<a href="https://review.openstack.org/#/c/454897/" rel="noreferrer" target="_blank">https://review.openstack.org/#<wbr>/c/454897/</a><br>
<br>
So, feel free to turn on / test with etcd3 and report issues.<br>
<br>
Thanks,<br>
Dims<br>
<br>
-- <br>
Davanum Srinivas :: <a href="https://twitter.com/dims" rel="noreferrer" target="_blank">
https://twitter.com/dims</a><br>
</blockquote>
<br>
<br>
<br>
</blockquote>
<br>
______________________________<wbr>______________________________<wbr>______________<br>
OpenStack Development Mailing List (not for usage questions)<br>
Unsubscribe: <a href="http://OpenStack-dev-request@lists.openstack.org?subject:unsubscribe" rel="noreferrer" target="_blank">
OpenStack-dev-request@lists.op<wbr>enstack.org?subject:unsubscrib<wbr>e</a><br>
<a href="http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev" rel="noreferrer" target="_blank">http://lists.openstack.org/cgi<wbr>-bin/mailman/listinfo/openstac<wbr>k-dev</a><br>
</blockquote>
<br>
______________________________<wbr>______________________________<wbr>______________<br>
OpenStack Development Mailing List (not for usage questions)<br>
Unsubscribe: <a href="http://OpenStack-dev-request@lists.openstack.org?subject:unsubscribe" rel="noreferrer" target="_blank">
OpenStack-dev-request@lists.op<wbr>enstack.org?subject:unsubscrib<wbr>e</a><br>
<a href="http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev" rel="noreferrer" target="_blank">http://lists.openstack.org/cgi<wbr>-bin/mailman/listinfo/openstac<wbr>k-dev</a><br>
</div>
</div>
</blockquote>
</div>
<br>
</div>
</div>
</div>
</div>
</body>
</html>