DEV Community

Cover image for Easy Kubernetes development with Skaffold
Karan Pratap Singh
Karan Pratap Singh

Posted on • Updated on

Easy Kubernetes development with Skaffold

In this article, we'll see how we can use skaffold to develop our kubernetes native applications locally.

I will be using minikube for local kubernetes cluster

What is Skaffold?

Skaffold is a command line tool that helps with development for Kubernetes-native applications by deploying to your local or remote Kubernetes cluster as you develop.

It can handle the workflow for building, pushing, and deploying your application. Skaffold also operates completely on the client-side, with no required components on your cluster, making it super lightweight and high-performance.

It has a great developer experience, and I've been using it for a while. Learn more about Skaffold here

Skaffold development loop from cloud.google.com

Install Skaffold

You can install scaffold from here

Project setup

I've initialized a pretty simple express app.

├── src
│   └── index.js
├── package.json
└── yarn.lock
Enter fullscreen mode Exit fullscreen mode

Start the minikube cluster

$ minikube start
Enter fullscreen mode Exit fullscreen mode

minikube start output

Dockerfile

Let's dockerize our app so that we can run it in our kubernetes cluster

Note: To learn more about best practices for dockerizing your applications, checkout my dockerize series!

FROM node:14-alpine
# Declare a workdir
WORKDIR /app
# Cache and install dependencies
COPY package.json yarn.lock ./
RUN yarn install
# Copy app files
COPY . ./
# Expose port
EXPOSE 4000
CMD [ "yarn", "start" ]
Enter fullscreen mode Exit fullscreen mode

Also, let's quickly add a .dockerignore to exclude our node_modules

**/node_modules
Enter fullscreen mode Exit fullscreen mode

Creating K8s deployment

Let's create a k8s folder and create a deployment.yaml

apiVersion: apps/v1
kind: Deployment
metadata:
  name: app
  labels:
    app: app
spec:
  replicas: 1
  selector:
    matchLabels:
      app: app
  template:
    metadata:
      labels:
        app: app
    spec:
      containers:
        - name: app
          image: node-app
          resources:
            limits:
              memory: 512Mi
              cpu: "1"
          ports:
            - containerPort: 4000
Enter fullscreen mode Exit fullscreen mode

Exposing k8s deployment with a service

Now, let's add a k8s/service.yaml of type NodePort to expose our deployment

apiVersion: v1
kind: Service
metadata:
  name: app-svc
spec:
  type: NodePort
  selector:
    app: app
  ports:
  - port: 4000
    targetPort: 4000
Enter fullscreen mode Exit fullscreen mode

Scaffold config

And finally, we need to add a skaffold.yaml config for our app.

Full config options can be found here

apiVersion: skaffold/v2beta18
kind: Config

profiles:
  - name: dev
    activation:
      - command: dev
    build:
      artifacts:
      - image: node-app
        context: .
        sync:
          manual:
          - src: 'src/**/*.js'
            dest: .
Enter fullscreen mode Exit fullscreen mode

If you're storing your kubernetes yaml files in a custom path you can use this to skaffold.yaml

profile: ...
deploy:
  kubectl:
    manifests:
      - custom/path/file.yaml
Enter fullscreen mode Exit fullscreen mode

Start! Start! Start!

skaffold dev --port-forward
Enter fullscreen mode Exit fullscreen mode

skaffold-dev-output

Note: We can also declare portForward config in your skaffold.yaml

portForward:
  - resourceType: service
    resourceName: app-svc
    port: 4000
    localPort: 4000
Enter fullscreen mode Exit fullscreen mode

Using Buildpacks

Buildpacks enable building a container image from source code without the need for a Dockerfile.

Skaffold supports building with Cloud Native Buildpacks. This would help us simplify our skaffold.yaml

apiVersion: skaffold/v2beta18
kind: Config

profiles:
  - name: dev
    activation:
      - command: dev
    build:
      artifacts:
      - image: node-app
        buildpacks:
          builder: "gcr.io/buildpacks/builder:v1"
Enter fullscreen mode Exit fullscreen mode

This article only scratches the surface of what skaffold is capable of! You can find tons examples in the official github repository

I hope this was helpful, you can find all the code in this repository. As always, feel free to reach out anytime if you face any issues.

Latest comments (0)