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
Kamaji project uses muti-tenant etcd so it reuqires to make the setup more secured. I think we can provide the following flag:
security:
enableAuth: true
which should do:
if etcdctl user get root &>/dev/null;thenecho"User already exists, nothing to do"else
etcdctl user add --no-password=true root &&
etcdctl role add root &&
etcdctl user grant-role root root &&
etcdctl auth enablefi
And in case of false:
etcdctl auth disable
The text was updated successfully, but these errors were encountered:
Kamaji project uses muti-tenant etcd so it reuqires to make the setup more secured. I think we can provide the following flag:
which should do:
And in case of
false
:The text was updated successfully, but these errors were encountered: