apply:
kubectl apply -k base
view resources:
kubectl get -k base
get your nginx ingress external ip address
kubectl get -k ./base
SERVICE_IP='...'
# or
SERVICE_IP=$(kubectl get service -n ingress-nginx ingress-nginx-controller --output jsonpath='{.status.loadBalancer.ingress[0].ip}')
echo $SERVICE_IP
curl "http://${SERVICE_IP}/test/hello"
kubectl apply -k keda-http
curl "http://${SERVICE_IP}/test/hello/wait?ms=5000"
curl "http://${SERVICE_IP}/keda/wait?ms=450"
hey -c 250 -n 10000 "http://${SERVICE_IP}/keda/wait?ms=350"