Create a workload

This tutorial explains how to create a sample HttpBin service deployment and a sample Function.

Steps

  1. Create a Namespace and export its value as an environment variable. Run:

    Click to copy
    export NAMESPACE={NAMESPACE_NAME}
    kubectl create ns $NAMESPACE
    kubectl label namespace $NAMESPACE istio-injection=enabled --overwrite
  2. Deploy 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
  1. 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 copy
    kubectl get pods -l app=httpbin -n $NAMESPACE
  • You should get a result similar to this one:

    Click to copy
    NAME READY STATUS RESTARTS AGE
    httpbin-test 2/2 Running 0 96s