With Webhook, you can easily test HTTP webhooks and other types of HTTP requests.
Upon visiting the app, you get a random URL to send your requests and webhooks to, and they’re all
The files in this directory should work with Google kubernetes Engine or Minikube, A local Rancher Configurations, or Docker configuration on a local machine.
To deploy this to a cluster or into a cloud K8s service you will need to change the ingress.yml and namespaces to match your configuration.
The namespace.yml will create a namespace for you. This will work fine but it may make the namespace hard to find in tools like Rancher. It is suggested that you create your own namespace and remove this file.
To use these files with kubectl do the following:
kubectl apply -f ./
If you created your own namespace then you will need to remover the namespace entries in the files and the namespace.yml before you run the same command but specifing the namespace to use for deployment:
kubectl apply -n <yournamespace> -f ./
## POST EXAMPLE
curl -v -H "Content-Type: application/json" -X POST \
-d '{"name":"your name","phonenumber":"111-111"}' { unique URL}