Quickstart
Konfidence is a software delivery framework for microservice-based software-as-a-service applications. It helps teams deliver complex applications consistently across multiple environments by using immutable, versioned application vectors and a structured release model.
Before you install Konfidence, it helps to know what this setup is for: teams promote the same verified application version across environments instead of rebuilding or reconfiguring it for each deployment. This makes releases easier to reason about as systems, teams, and release frequency grow.
Cluster setup
You need a Kubernetes cluster with Konfidence and the Konfidence CLI installed.
For a quick test, you can start a local kind cluster with Konfidence installed:
curl -L https://raw.githubusercontent.com/konfidence-project/konfidence/main/hack/quickstart/kind.sh | shThis will:
- spin up a kind cluster
- install flux
- install the GatewayAPI CRDs
- install the Konfidence Helm chart
- install a Deployer for Kubernetes target runtime
Manual Setup
If you already have a Kubernetes cluster, select it in your current kubeconfig context and install Konfidence manually with the following commands.
Set the Konfidence version and target namespace:
export KONFIDENCE_VERSION=0.0.1-alpha.1
export KONFIDENCE_NAMESPACE=konfidence-systemInstall the Gateway API CRDs:
kubectl apply --server-side -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.4.1/standard-install.yamlInstall Flux and wait for the source controller to become available:
kubectl apply -f https://github.com/fluxcd/flux2/releases/latest/download/install.yaml
kubectl wait deployment/source-controller \
--namespace flux-system \
--for=condition=Available \
--timeout=180sInstall Konfidence:
helm upgrade --install konfidence oci://ghcr.io/konfidence-project/charts/konfidence \
--version "$KONFIDENCE_VERSION" \
--namespace "$KONFIDENCE_NAMESPACE" \
--create-namespace \
--set image.repository=ghcr.io/konfidence-project/konfidence-operator \
--set image.tag="$KONFIDENCE_VERSION" \
--waitInstall the Kubernetes landscape orchestrator:
helm upgrade --install kubernetes-landscape-orchestrator oci://ghcr.io/konfidence-project/charts/kubernetes-landscape-orchestrator \
--version "$KONFIDENCE_VERSION" \
--namespace "$KONFIDENCE_NAMESPACE" \
--create-namespace \
--set image.repository=ghcr.io/konfidence-project/kubernetes-landscape-orchestrator \
--set image.tag="$KONFIDENCE_VERSION" \
--waitVerify the installation with:
kubectl get deployments -n konfidence-systemYou should see konfidence and kubernetes-landscape-orchestrator.
See Installing Konfidence for full details.