From 1b495e7bcb7713eb9b058dc9f98a0a6d283dd026 Mon Sep 17 00:00:00 2001
From: Matthias Loibl <mail@matthiasloibl.com>
Date: Wed, 14 Nov 2018 16:19:05 +0100
Subject: [PATCH] contrib/kube-prometheus: Update README.md for
 custom-metrics-api

---
 experimental/custom-metrics-api/README.md   | 18 ++++++++++++++----
 experimental/custom-metrics-api/deploy.sh   |  2 +-
 experimental/custom-metrics-api/teardown.sh |  2 +-
 3 files changed, 16 insertions(+), 6 deletions(-)

diff --git a/experimental/custom-metrics-api/README.md b/experimental/custom-metrics-api/README.md
index 91375a42..c5c7102c 100644
--- a/experimental/custom-metrics-api/README.md
+++ b/experimental/custom-metrics-api/README.md
@@ -1,11 +1,21 @@
 # Custom Metrics API
 
-The custom metrics API allows the HPA v2 to scale on arbirary metrics.
+The custom metrics API allows the HPA v2 to scale based on arbirary metrics.
 
-This directory contains an example deployment of the custom metrics API adapter using Prometheus as the backing monitoring system.
+This directory contains an example deployment which extends the Prometheus Adapter, deployed with kube-prometheus, serve the [Custom Metrics API](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/instrumentation/custom-metrics-api.md) by talking to Prometheus running inside the cluster.
 
-In order to deploy the custom metrics adapter for Prometheus you need to generate TLS certficates used to serve the API. An example of how these could be generated can be found in `./gencerts.sh`, note that this is _not_ recommended to be used in production. You need to employ a secure PKI strategy, this is merely an example to get started and try it out quickly.
+Make sure you have the Prometheus Adapter up and running in the `monitoring` namespace.
 
-Once the generated `Secret` with the certificates is in place, you can deploy everything in the `monitoring` namespace using `./deploy.sh`.
+You can deploy everything in the `monitoring` namespace using `./deploy.sh`.
 
 When you're done, you can teardown using the `./teardown.sh` script.
+
+### Sample App
+
+Additionally, this directory contains a sample app that uses the [Horizontal Pod Autoscaler](https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/) to scale the Deployment's replicas of Pods up and down as needed.  
+Deploy this app by running `kubectl apply -f sample-app.yaml`. 
+Make the app accessible on your system, for example by using `kubectl -n monitoring port-forward svc/sample-app 8080`. Next you need to put some load on its http endpoints. 
+
+A tool like [hey](https://github.com/rakyll/hey) is helpful for doing so: `hey -c 20 -n 100000000 http://localhost:8080/metrics`
+
+There is an even more detailed information on this sample app at [luxas/kubeadm-workshop](https://github.com/luxas/kubeadm-workshop#deploying-the-prometheus-operator-for-monitoring-services-in-the-cluster).
diff --git a/experimental/custom-metrics-api/deploy.sh b/experimental/custom-metrics-api/deploy.sh
index a7324831..1ac74878 100644
--- a/experimental/custom-metrics-api/deploy.sh
+++ b/experimental/custom-metrics-api/deploy.sh
@@ -1,4 +1,4 @@
-#!/usr/bin/env bash	
+#!/usr/bin/env bash
 
 kubectl apply -n monitoring custom-metrics-apiserver-resource-reader-cluster-role-binding.yaml
 kubectl apply -n monitoring custom-metrics-apiservice.yaml
diff --git a/experimental/custom-metrics-api/teardown.sh b/experimental/custom-metrics-api/teardown.sh
index 2287c799..a62f685e 100644
--- a/experimental/custom-metrics-api/teardown.sh
+++ b/experimental/custom-metrics-api/teardown.sh
@@ -1,4 +1,4 @@
-#!/usr/bin/env bash	
+#!/usr/bin/env bash
 
 kubectl delete -n monitoring custom-metrics-apiserver-resource-reader-cluster-role-binding.yaml
 kubectl delete -n monitoring custom-metrics-apiservice.yaml
-- 
GitLab