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

Fix small issue with getting started doc #290

Merged
merged 1 commit into from
Jul 10, 2023
Merged
Changes from all commits
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
8 changes: 6 additions & 2 deletions docs/getstarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ This example creates a single cluster in a single VPC, then configures two route


```bash
ratesdns=$(kubectl get httproute rates -o json | jq -r .status.parents[].conditions[].message)
inventorydns=$(kubectl get httproute inventory -o json | jq -r .status.parents[].conditions[].message)
ratesdns=$(kubectl get httproute rates -o json | jq -r '.status.parents[].conditions[0].message')
inventorydns=$(kubectl get httproute inventory -o json | jq -r '.status.parents[].conditions[0].message')
```

remove preceding extra text:
Expand All @@ -128,6 +128,10 @@ confirm that the URLs are stored correctly:
echo $ratesFQDN $inventoryFQDN
```

```
rates-default-034e0056410499722.7d67968.vpc-lattice-svcs.us-west-2.on.aws inventory-default-0c54a5e5a426f92c2.7d67968.vpc-lattice-svcs.us-west-2.on.aws
```

**Check service connectivity**

1. Check Service-Inventory Pod access for Service-Rates/parking or Service-Rates/review by executing into the pod, then curling each service.
Expand Down