service

command
v0.0.0-...-ea02baa Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 5, 2018 License: Apache-2.0 Imports: 5 Imported by: 0

README

Service

A simple web server that you can use for testing Service resource. It reads in an env variable 'TARGET' and prints "Hello World: ${TARGET}!" if TARGET is not specified, it will use "NOT SPECIFIED" as the TARGET.

Prerequisites

  1. Install Knative Serving
  2. Install docker

Setup

Build the app container and publish it to your registry of choice:

REPO="gcr.io/<your-project-here>"

# Build and publish the container, run from the root directory.
docker build \
  --build-arg SAMPLE=service \
  --tag "${REPO}/sample/service" \
  --file=sample/Dockerfile.golang .
docker push "${REPO}/sample/service"

# Replace the image reference with our published image.
perl -pi -e "s@github.com/knative/serving/sample/service@${REPO}/sample/service@g" sample/service/*.yaml

# Deploy the Knative Serving sample
kubectl apply -f sample/service/sample.yaml

Exploring

Once deployed, you can inspect the created resources with kubectl commands:

# This will show the service that we created:
kubectl get service.knative.dev -oyaml
# This will show the route that was created by the service:
kubectl get route -o yaml
# This will show the configuration that was created by the service:
kubectl get configurations -o yaml
# This will show the Revision that was created the configuration created by the service:
kubectl get revisions -o yaml

To access this service via curl, we first need to determine its ingress address:

watch kubectl get ingress

When the ingress is ready, you'll see an IP address in the ADDRESS field:

NAME                                 HOSTS                     ADDRESS   PORTS     AGE
service-example-ela-ingress   demo.myhost.net             80        14s

Once the ADDRESS gets assigned to the cluster, you can run:

# Put the Ingress Host name into an environment variable.
export SERVICE_HOST=`kubectl get route service-example -o jsonpath="{.status.domain}"`

# Put the Ingress IP into an environment variable.
export SERVICE_IP=`kubectl get ingress service-example-ela-ingress -o jsonpath="{.status.loadBalancer.ingress[*]['ip']}"`

If your cluster is running outside a cloud provider (for example on Minikube), your ingress will never get an address. In that case, use the istio hostIP and nodePort as the service IP:

export SERVICE_IP=$(kubectl get po -l istio=ingress -n istio-system -o 'jsonpath={.items[0].status.hostIP}'):$(kubectl get svc istio-ingress -n istio-system -o 'jsonpath={.spec.ports[?(@.port==80)].nodePort}')

Now curl the service IP as if DNS were properly configured:

curl --header "Host:$SERVICE_HOST" http://${SERVICE_IP}
# Hello World: shiniestnewestversion!

Updating

You can update this to a new version. For example, update it with a new service.yaml via:

kubectl apply -f sample/service/updated_service.yaml

Once deployed, traffic will shift to the new revision automatically. You can verify the new version by checking route status:

# This will show the route that we created:
kubectl get route -o yaml

Or curling the service:

curl --header "Host:$SERVICE_HOST" http://${SERVICE_IP}
# Hello World: evenshinierversion!

Pinning a service

You can pin a Service to a specific revision. For example, update it with a new service.yaml via:

kubectl apply -f sample/service/pinned_service.yaml

Once deployed, traffic will shift to the previous (first) revision automatically. You can verify the new version by checking route status:

# This will show the route that we created:
kubectl get route -o yaml

Or curling the service:

curl --header "Host:$SERVICE_HOST" http://${SERVICE_IP}
# Hello World: shiniestnewestversion!

Cleaning up

To clean up the sample service:

kubectl delete -f sample/service/sample.yaml

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL