Hello World - Shell

A simple web app that executes a shell script. The shell script reads an env variable TARGET and prints Hello ${TARGET}!. If the TARGET environment variable is not specified, the script uses World.

Follow the steps below to create the sample code and then deploy the app to your cluster. You can also download a working copy of the sample, by running the following commands:

  1. git clone -b "{{< branch >}}" https://github.com/knative/docs knative-docs
  2. cd knative-docs/docs/serving/samples/hello-world/helloworld-shell

Before you begin

  • A Kubernetes cluster with Knative installed and DNS configured. Follow the installation instructions if you need to create one.
  • Docker installed and running on your local machine, and a Docker Hub account configured (we’ll use it for a container registry).

Recreating the sample code

  1. Create a new file named script.sh and paste the following script:

    1. #!/bin/sh
    2. echo Hello ${TARGET:=World}!
  2. Create a new file named invoke.go and paste the following code. We use a basic web server written in Go to execute the shell script:

    1. package main
    2. import (
    3. "fmt"
    4. "log"
    5. "net/http"
    6. "os"
    7. "os/exec"
    8. )
    9. func handler(w http.ResponseWriter, r *http.Request) {
    10. log.Print("helloworld: received a request")
    11. cmd := exec.CommandContext(r.Context(), "/bin/sh", "script.sh")
    12. cmd.Stderr = os.Stderr
    13. out, err := cmd.Output()
    14. if err != nil {
    15. w.WriteHeader(500)
    16. }
    17. w.Write(out)
    18. }
    19. func main() {
    20. log.Print("helloworld: starting server...")
    21. http.HandleFunc("/", handler)
    22. port := os.Getenv("PORT")
    23. if port == "" {
    24. port = "8080"
    25. }
    26. log.Printf("helloworld: listening on %s", port)
    27. log.Fatal(http.ListenAndServe(fmt.Sprintf(":%s", port), nil))
    28. }
  3. Create a new file named Dockerfile and copy the code block below into it.

    1. # Use the official Golang image to create a build artifact.
    2. # This is based on Debian and sets the GOPATH to /go.
    3. # https://hub.docker.com/_/golang
    4. FROM golang:1.13 as builder
    5. # Create and change to the app directory.
    6. WORKDIR /app
    7. # Retrieve application dependencies using go modules.
    8. # Allows container builds to reuse downloaded dependencies.
    9. COPY go.* ./
    10. RUN go mod download
    11. # Copy local code to the container image.
    12. COPY invoke.go ./
    13. # Build the binary.
    14. # -mod=readonly ensures immutable go.mod and go.sum in container builds.
    15. RUN CGO_ENABLED=0 GOOS=linux go build -mod=readonly -v -o server
    16. # Use the official Alpine image for a lean production container.
    17. # https://hub.docker.com/_/alpine
    18. # https://docs.docker.com/develop/develop-images/multistage-build/#use-multi-stage-builds
    19. FROM alpine:3
    20. RUN apk add --no-cache ca-certificates
    21. # Copy the binary to the production image from the builder stage.
    22. COPY --from=builder /app/server /server
    23. COPY script.sh ./
    24. # Run the web service on container startup.
    25. CMD ["/server"]
  4. Create a new file, service.yaml and copy the following service definition into the file. Make sure to replace {username} with your Docker Hub username.

    1. apiVersion: serving.knative.dev/v1
    2. kind: Service
    3. metadata:
    4. name: helloworld-shell
    5. namespace: default
    6. spec:
    7. template:
    8. spec:
    9. containers:
    10. - image: docker.io/{username}/helloworld-shell
    11. env:
    12. - name: TARGET
    13. value: "Shell Sample v1"
  5. Use the go tool to create a go.mod manifest.

    1. go mod init github.com/knative/docs/docs/serving/samples/hello-world/helloworld-shell

Building and deploying the sample

Once you have recreated the sample code files (or used the files in the sample folder) you’re ready to build and deploy the sample app.

  1. Use Docker to build the sample code into a container. To build and push with Docker Hub, run these commands replacing {username} with your Docker Hub username:

    1. # Build the container on your local machine
    2. docker build -t {username}/helloworld-shell .
    3. # Push the container to docker registry
    4. docker push {username}/helloworld-shell
  2. After the build has completed and the container is pushed to docker hub, you can deploy the app into your cluster. Ensure that the container image value in service.yaml matches the container you built in the previous step. Apply the configuration using kubectl:

    1. kubectl apply --filename service.yaml
  3. Now that your service is created, Knative performs the following steps:

    • Create a new immutable revision for this version of the app.
    • Network programming to create a route, ingress, service, and load balance for your app.
    • Automatically scale your pods up and down (including to zero active pods).
  4. Run the following command to find the domain URL for your service:

    1. kubectl get ksvc helloworld-shell --output=custom-columns=NAME:.metadata.name,URL:.status.url

    Example:

    1. NAME URL
    2. helloworld-shell http://helloworld-shell.default.1.2.3.4.xip.io
  5. Now you can make a request to your app and see the result. Replace the URL below with the URL returned in the previous command.

    1. curl http://helloworld-shell.default.1.2.3.4.xip.io

    Example:

    1. curl http://helloworld-shell.default.1.2.3.4.xip.io
    2. Hello Shell Sample v1!

    Note: Add -v option to get more detail if the curl command failed.

Removing the sample app deployment

To remove the sample app from your cluster, delete the service record:

  1. kubectl delete --filename service.yaml