Skip to content

Commit ff6acae

Browse files
authored
Merge pull request #391 from weaveworks/appmesh-docs-fix
App Mesh docs fixes
2 parents 0ef05ed + 09b5295 commit ff6acae

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

docs/gitbook/install/flagger-install-on-eks-appmesh.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ Install the Horizontal Pod Autoscaler (HPA) metrics provider:
7979

8080
```bash
8181
helm upgrade -i metrics-server stable/metrics-server \
82-
--namespace kube-system
82+
--namespace kube-system \
83+
--set args[0]=--kubelet-preferred-address-types=InternalIP
8384
```
8485

8586
After a minute, the metrics API should report CPU and memory usage for pods.

docs/gitbook/usage/appmesh-progressive-delivery.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -192,15 +192,15 @@ the gateway will retry the calls for a short period of time.
192192
Deploy the gateway behind an AWS NLB:
193193
194194
```bash
195-
helm upgrade -i test flagger/appmesh-gateway \
196-
--namespace flagger-system \
195+
helm upgrade -i appmesh-gateway flagger/appmesh-gateway \
196+
--namespace test \
197197
--set mesh.name=global
198198
```
199199

200200
Find the gateway public address:
201201

202202
```bash
203-
export URL="http://$(kubectl -n demo get svc/appmesh-gateway -ojson | jq -r ".status.loadBalancer.ingress[].hostname")"
203+
export URL="http://$(kubectl -n test get svc/appmesh-gateway -ojson | jq -r ".status.loadBalancer.ingress[].hostname")"
204204
echo $URL
205205
```
206206

0 commit comments

Comments
 (0)