Hello World - Go

This guide describes the steps required to to create the helloworld-go sample app and deploy it to your cluster. The sample app reads a TARGET environment variable, and prints Hello ${TARGET}!. If TARGET is not specified, World is used as the default value.

Prerequisites

You will need:

  • A Kubernetes cluster with Knative installed and DNS configured.
  • Docker installed and running on your local machine, and a Docker Hub account configured.
  • Optional: You can use the Knative CLI client kn to simplify resource creation and deployment. Alternatively, you can use kubectl to apply resource files directly.

Building

  1. Create a basic web server which listens on port 8080, by copying the following code into a new file named helloworld.go:

    1. package main
    2. import (
    3. "fmt"
    4. "log"
    5. "net/http"
    6. "os"
    7. )
    8. func handler(w http.ResponseWriter, r *http.Request) {
    9. log.Print("helloworld: received a request")
    10. target := os.Getenv("TARGET")
    11. if target == "" {
    12. target = "World"
    13. }
    14. fmt.Fprintf(w, "Hello %s!\n", target)
    15. }
    16. func main() {
    17. log.Print("helloworld: starting server...")
    18. http.HandleFunc("/", handler)
    19. port := os.Getenv("PORT")
    20. if port == "" {
    21. port = "8080"
    22. }
    23. log.Printf("helloworld: listening on port %s", port)
    24. log.Fatal(http.ListenAndServe(fmt.Sprintf(":%s", port), nil))
    25. }

    You can also download a working copy of the sample, by running the following commands:

    1. git clone -b "release-0.21" https://github.com/knative/docs knative-docs
    2. cd knative-docs/docs/serving/samples/hello-world/helloworld-go
  2. Navigate to your project directory and copy the following code into a new file named Dockerfile:

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

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

Deploying

  1. To build the sample code into a container, and push using Docker Hub, enter the following commands and replace {username} with your Docker Hub username:

    1. # Build the container on your local machine
    2. docker build -t {username}/helloworld-go .
    3. # Push the container to docker registry
    4. docker push {username}/helloworld-go
  2. After the build has completed and the container is pushed to docker hub, you can deploy the app into your cluster. Choose one of the following methods:

    1. 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-go
      5. namespace: default
      6. spec:
      7. template:
      8. spec:
      9. containers:
      10. - image: docker.io/{username}/helloworld-go
      11. env:
      12. - name: TARGET
      13. value: "Go Sample v1"

      Check that the container image value in the service.yaml file matches the container you built in the previous step.

    2. Apply the configuration using kubectl:

      1. kubectl apply --filename service.yaml

      After your service is created, Knative will perform 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).
    3. Run the following command to find the domain URL for your service:

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

      Example:

      1. NAME URL
      2. helloworld-go http://helloworld-go.default.1.2.3.4.xip.io

    Use kn to deploy the service:

    1. kn service create helloworld-go --image=docker.io/{username}/helloworld-go --env TARGET="Go Sample v1"

    You should see output like this:

    1. Creating service 'helloworld-go' in namespace 'default':
    2. 0.031s The Configuration is still working to reflect the latest desired specification.
    3. 0.051s The Route is still working to reflect the latest desired specification.
    4. 0.076s Configuration "helloworld-go" is waiting for a Revision to become ready.
    5. 15.694s ...
    6. 15.738s Ingress has not yet been reconciled.
    7. 15.784s Waiting for Envoys to receive Endpoints data.
    8. 16.066s Waiting for load balancer to be ready
    9. 16.237s Ready to serve.
    10. Service 'helloworld-go' created to latest revision 'helloworld-go-jjzgd-1' is available at URL:
    11. http://helloworld-go.default.1.2.3.4.xip.io

    You can then access your service through the resulting URL.

Verifying

  1. 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-go.default.1.2.3.4.xip.io
    2. Hello Go Sample v1!

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

Removing

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

  1. kubectl delete --filename service.yaml
  1. kn service delete helloworld-go