diff --git a/examples/hotrod/README.md b/examples/hotrod/README.md index e944b94a9f9b..305096f7fc9c 100644 --- a/examples/hotrod/README.md +++ b/examples/hotrod/README.md @@ -35,6 +35,9 @@ kustomize build ./kubernetes | kubectl apply -f - kubectl port-forward -n example-hotrod service/example-hotrod 8080:frontend # In another terminal kubectl port-forward -n example-hotrod service/jaeger 16686:frontend + +# To cleanup +kustomize build ./kubernetes | kubectl delete -f - ``` Access Jaeger UI at http://localhost:16686 and HotROD app at http://localhost:8080 diff --git a/examples/hotrod/kubernetes/README.md b/examples/hotrod/kubernetes/README.md index bd7b8da63edd..e58aa2f93a73 100644 --- a/examples/hotrod/kubernetes/README.md +++ b/examples/hotrod/kubernetes/README.md @@ -2,8 +2,16 @@ Example k8s manifests for deploying the [hotrod app](..) to your k8s environment of choice. e.g. minikube, k3s, EKS, GKE -## Deploy with Kustomize +## Usage -``` +```bash kustomize build . | kubectl apply -f - +kubectl port-forward -n example-hotrod service/example-hotrod 8080:frontend +# In another terminal +kubectl port-forward -n example-hotrod service/jaeger 16686:frontend + +# To cleanup +kustomize build . | kubectl delete -f - ``` + +Access Jaeger UI at and HotROD app at