Create the Meshed Application
Using the YAML we just reviewed, apply the meshed application resources with kubectl.
kubectl apply -f 2_meshed_application/meshed_app.yaml
This creates the Kubernetes objects, and the App Mesh controller in turn creates resources within AWS App Mesh for you.
You can see that your mesh object was created using kubectl.
kubectl get meshes
You can also see that the mesh was created in App Mesh using the aws CLI.
aws appmesh list-meshes
Examine the objects within the prod namespace and you will see your App Mesh resources along with your native Kubernetes objects.
kubectl get all -n prod