Skip to content

conduktor/conduktor-public-charts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Official repository for Conduktor Helm Charts

Explore the docs »

Report Bug · Request Feature

Prerequisites

  • Kubernetes 1.19+
  • Helm 3.2.0+

Charts

Usage

$ helm repo add conduktor https://helm.conduktor.io
$ helm repo update

For guides and advanced help, please refer to our documentation, or to our charts README.

(back to top)

Development setup

Requirements:

You can have a working cluster on your local machine with docker and k3d, use the Makefile target k3d-up to start a cluster with nginx and a postgresql database running.

$ make helm-deps
$ make k3d-up

Postgresql credentials:

host: postgresql.conduktor
port: 5432
username: postgres
password: conduktor
name: conduktor

Run chart tests

You need to have chart-testing installed and a running kubernetes cluster.

# Create tests namespace if not exists
kubectl create namespace ct || true

# Run tests
ct install --config .github/ct-config.yaml

(back to top)