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