Create a workload
This tutorial explains how to create a sample HttpBin service deployment and a sample Function.
Steps
Create a Namespace and export its value as an environment variable. Run:
Click to copyexport NAMESPACE={NAMESPACE_NAME}kubectl create ns $NAMESPACEkubectl label namespace $NAMESPACE istio-injection=enabled --overwriteDeploy an instance of the HttpBin service or a sample Function.
- HttpBin
- Function
To deploy an instance of the HttpBin service in your Namespace using the sample code, run:
Click to copy
kubectl -n $NAMESPACE create -f https://raw.githubusercontent.com/istio/istio/master/samples/httpbin/httpbin.yaml
Verify if an instance of the HttpBin service or a sample Function is successfully created.
- HttpBin
- Function
- To verify if an instance of the HttpBin service is created, run:Click to copykubectl get pods -l app=httpbin -n $NAMESPACE
You should get a result similar to this one:
Click to copyNAME READY STATUS RESTARTS AGEhttpbin-test 2/2 Running 0 96s