Invoking functions using HTTP #336
-
Do you have any examples of how to invoke functions using HTTP? Or any guidance on how that can be done? Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
shyamjesal
Jul 12, 2021
Replies: 1 comment 8 replies
-
Once the cluster is up and running like mentioned in this step, you can use knative client to deploy functions. kn service apply helloworld -f vhive/configs/knative_workloads/helloworld.yaml
Creating service 'helloworld' in namespace 'default':
0.056s The Route is still working to reflect the latest desired specification.
0.100s ...
0.160s Configuration "helloworld" is waiting for a Revision to become ready.
591.046s ...
591.084s Ingress has not yet been reconciled.
591.180s Waiting for load balancer to be ready
591.398s Ready to serve.
Service 'helloworld' created to latest revision 'helloworld-00001' is available at URL:
http://helloworld.default.192.168.1.240.sslip.io The |
Beta Was this translation helpful? Give feedback.
8 replies
Answer selected by
ustiugov
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Once the cluster is up and running like mentioned in this step, you can use knative client to deploy functions.
The
url
o…