⚠️ 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 primarily a Go library. You can also install its CLI tool for code generation.

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"
)

Installing the CLI

go install github.com/go-kure/kure/cmd/kure@latest

Verify the installation:

kure version

Next Steps