⚠️ Work in Progress
You are viewing development documentation built from the latest commit on main. APIs and features are subject to change.

Getting Started

Getting Started with Kure

Kure is a Go library for programmatically building Kubernetes resources.

Using as a Library

Add Kure to your Go project:

go get github.com/go-kure/kure

Then import the packages you need:

import (
    "github.com/go-kure/kure/pkg/stack"
    "github.com/go-kure/kure/pkg/kubernetes/fluxcd"
    "github.com/go-kure/kure/pkg/io"
)

Next Steps