Skip to content

neoseele/skaffold

 
 

Repository files navigation

Skaffold

Build Status

Skaffold is a command line tool that facilitates continuous development for Kubernetes applications. You can iterate on your application source code locally then deploy to local or remote Kubernetes clusters. Skaffold handles the workflow for building, pushing and deploying your application. It can also be used in an automated context such as a CI/CD pipeline to leverage the same workflow and tooling when moving applications to production.

Features

  • No server-side component. No overhead to your cluster.

  • Detect changes in your source code and automatically build/push/deploy.

  • Image tag management. Stop worrying about updating the image tags in Kubernetes manifests to push out changes during development.

  • Supports existing tooling and workflows. Build and deploy APIs make each implementation composable to support many different workflows.

  • Support for multiple application components. Build and deploy only the pieces of your stack that have changed.

  • Deploy regularly when saving files or run one off deployments using the same configuration.

Pluggability

Skaffold has a pluggable architecture that allows you to choose the tools in the developer workflow that work best for you.

plugability

Operating modes

skaffold dev

Updates your deployed application continually:

  • Watches your source code and the dependencies of your docker images for changes and runs a build and deploy when changes are detected

  • Streams logs from deployed containers

  • Continuous build-deploy loop, only warn on errors

skaffold run

Runs a Skaffold pipeline once, exits on any errors in the pipeline. Use for:

  • Continuous integration or continuous deployment pipelines

  • Sanity checking after iterating on your application

Demo

Demo

Getting Started with Local Tooling

For getting started with Google Kubernetes Engine and Container Builder link:docs/quickstart-gke.adoc[go here. Otherwise continue below to get started with a local Kubernetes cluster.

Installation

You will need the following components to get started with Skaffold:

  1. skaffold

  2. Kubernetes Cluster

  3. kubectl

    • If you’re not using Minikube, configure the current-context with your target cluster for development

  4. docker

  5. Docker image registry

    • Your docker client should be configured to push to an external docker image repository. If you’re using a minikube or Docker for Desktop cluster, you can skip this requirement.

    • If you are using Google Container Registry (GCR), choose one of the following:

  6. Use gcloud’s Docker credential helper: Run `gcloud auth configure-docker

  7. Install and configure GCR’s standalone cred helper: docker-credential-gcr

  8. Run gcloud docker -a before each development session.

Iterative Development

  1. Clone this repository to get access to the examples.

    git clone https://github.com/GoogleContainerTools/skaffold
  2. Change directories to the getting-started example.

    cd examples/getting-started
  3. Run skaffold dev.

$ skaffold dev
Starting build...
Found [minikube] context, using local docker daemon.
Sending build context to Docker daemon  6.144kB
Step 1/5 : FROM golang:1.9.4-alpine3.7
 ---> fb6e10bf973b
Step 2/5 : WORKDIR /go/src/github.com/GoogleContainerTools/skaffold/examples/getting-started
 ---> Using cache
 ---> e9d19a54595b
Step 3/5 : CMD ./app
 ---> Using cache
 ---> 154b6512c4d9
Step 4/5 : COPY main.go .
 ---> Using cache
 ---> e097086e73a7
Step 5/5 : RUN go build -o app main.go
 ---> Using cache
 ---> 9c4622e8f0e7
Successfully built 9c4622e8f0e7
Successfully tagged 930080f0965230e824a79b9e7eccffbd:latest
Successfully tagged gcr.io/k8s-skaffold/skaffold-example:9c4622e8f0e7b5549a61a503bf73366a9cf7f7512aa8e9d64f3327a3c7fded1b
Build complete in 657.426821ms
Starting deploy...
Deploying k8s-pod.yaml...
Deploy complete in 173.770268ms
[getting-started] Hello world!
  1. Skaffold has done the following for you:

    • Build an image from the local source code

    • Tag it with its sha256

    • Sets that image in the Kubernetes manifests defined in skaffold.yaml

    • Deploy the Kubernetes manifests using kubectl apply -f

  2. You will see the output of the pod that was deployed:

    [getting-started] Hello world!
    [getting-started] Hello world!
    [getting-started] Hello world!

Now, update main.go

diff --git a/examples/getting-started/main.go b/examples/getting-started/main.go
index 64b7bdfc..f95e053d 100644
--- a/examples/getting-started/main.go
+++ b/examples/getting-started/main.go
@@ -7,7 +7,7 @@ import (

 func main() {
        for {
-               fmt.Println("Hello world!")
+               fmt.Println("Hello jerry!")
                time.Sleep(time.Second * 1)
        }
 }

Once you save the file, you should see the pipeline kick off again to redeploy your application:

[getting-started] Hello jerry!
[getting-started] Hello jerry!

Run a deployment pipeline once

There may be some cases where you don’t want to run build and deploy continuously. To run once, use:

$ skaffold run

More examples

Community

There is a bi-weekly Skaffold users meeting at 9:30am-10am PST hosted on hangouts under "skaffold". Everyone is welcome to add suggestions to the agenda and attend. Join the skaffold-users mailing list to get the calendar invite directly on your calendar.

About

Easy and Repeatable Kubernetes Development

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 93.9%
  • Shell 2.3%
  • Makefile 1.7%
  • Python 1.6%
  • Other 0.5%