Skip to content
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

Add clarification on the usage of etcdutl vs etcdctl #46778

Merged
merged 3 commits into from
Jun 12, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update content/en/docs/tasks/administer-cluster/configure-upgrade-etc…
…d.md

Co-authored-by: Shubham <[email protected]>
  • Loading branch information
robert-cronin and Shubham82 authored Jun 12, 2024
commit 53d76474c043f7ae731ab0fe65afecead49f18fd
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 24,9 @@ nodes. If you do not already have a cluster, you can create one by using

`etcdctl` and `etcdutl` are command-line tools used to interact with etcd clusters, but they serve different purposes:

- `etcdctl`: This is the primary command-line client for interacting with etcd over a network. It is used for day-to-day operations such as managing keys and values, administering the cluster, checking health, and more.
- `etcdctl`: This is the primary command-line client for interacting with etcd over a
network. It is used for day-to-day operations such as managing keys and values,
administering the cluster, checking health, and more.

- `etcdutl`: This is an administration utility designed to operate directly on etcd data files, including migrating data between etcd versions, defragmenting the database, restoring snapshots, and validating data consistency. For network operations, `etcdctl` should be used.
robert-cronin marked this conversation as resolved.
Show resolved Hide resolved

Expand Down