You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My motivating reason is that etcd core team changed the auth API between minor versions; and also in testing I've observed that a restricted user could modify /v2/key paths outside of their authorized role. This issue didn't appear in v2.3.7 testing; but did appear in v2.2.5 testing.
Could we please upgrade to v2.3.X (2.3.7)?
My motivating reason is that etcd core team changed the auth API between minor versions; and also in testing I've observed that a restricted user could modify /v2/key paths outside of their authorized role. This issue didn't appear in v2.3.7 testing; but did appear in v2.2.5 testing.
Sample of different API for etcd v2.2 vs v2.3:
{ "users": ["alice", "bob", "eve"] }{ "users": [ { "user": "alice", "roles": [ { "role": "root", "permissions": { "kv": { "read": ["/*"], "write": ["/*"] } } } ] },And there is no one golang etcd client that can support both.