-
Notifications
You must be signed in to change notification settings - Fork 308
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove /bin/sh from Documenation #640
Conversation
@@ -181,7 +181,7 @@ docker run \ | |||
To run `etcdctl` using API version 3: | |||
|
|||
``` | |||
docker exec etcd /bin/sh -c "export ETCDCTL_API=3 && /usr/local/bin/etcdctl put foo bar" | |||
docker exec etcd export ETCDCTL_API=3 && /usr/local/bin/etcdctl put foo bar |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
etcd main branch (3.6) doesn't need ETCDCTL_API
any more.
docker exec etcd export ETCDCTL_API=3 && /usr/local/bin/etcdctl put foo bar | |
docker exec etcd /usr/local/bin/etcdctl put foo bar |
Thank you @nickmancari for the PR. Please
|
You only signed the third commit, the other two commits are not signed yet. Please squash the commits into just one commit and signoff the final commit. |
removed ETCDCTL_API also fixed v3.5 and v3.4 Signed-off-by: Nick Mancari <[email protected]>
ac512d7
to
1be83b2
Compare
Squashed commits and signed |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm, thanks @nickmancari
…update Remove /bin/sh from Documenation
Removed the reference to
\bin\sh
to accurately reflect changes in v3.7etcd-io/etcd#15173