-
Notifications
You must be signed in to change notification settings - Fork 18
Closed
Labels
featureNew feature or requestNew feature or request
Description
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: truewhich should do:
if etcdctl user get root &>/dev/null; then
echo "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 enable
fiAnd in case of false:
etcdctl auth disable
Metadata
Metadata
Assignees
Labels
featureNew feature or requestNew feature or request