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

fixes #923 update cookbook examples and fix some typo #924

Merged
merged 7 commits into from
Feb 9, 2023
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
add -i option to grep for insensitive matching
  • Loading branch information
grootpiano committed Feb 6, 2023
commit 471a80e5821da3fb1f0cbec0a71e8379cdacd1f8
18 changes: 9 additions & 9 deletions doc/cookbook/multi-node-cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,13 @@ easegress-server \
Now you can list cluster members

```bash
egctl --server $HOST1:2381 member list | grep " name"
egctl --server $HOST1:2381 member list | grep -i " name"
```
should print
```bash
name: machine-1
name: machine-2
name: machine-3
Name: machine-1
Name: machine-2
Name: machine-3
```

### Add New Member
Expand All @@ -122,14 +122,14 @@ Here `primary-listen-peer-urls` tell, where to find a *primary* cluster members

We can now see also the 4th instance:
```bash
egctl --server $HOST1:2381 member list | grep " name"
egctl --server $HOST1:2381 member list | grep -i " name"
```
prints to output:
```bash
name: machine-1
name: machine-2
name: machine-3
name: machine-4
Name: machine-1
Name: machine-2
Name: machine-3
Name: machine-4
```
Congratulations, you now have your Easegress instances running! You can now start applying resources to Easegress, like [pipeline](./pipeline.md) or [workflow](./workflow.md) for example.

Expand Down