> Helm Charts

Helm index: https://cagriekin.github.io/charts/index.yaml

> add the repo

helm repo add cagriekin https://cagriekin.github.io/charts
helm repo update
helm search repo cagriekin

> install common

helm install common cagriekin/common \
  --namespace default --create-namespace

Shared helper templates for application charts (v0.1.0)

Review the chart documentation in the common/README.md within the source repository for all configurable values.

> install kafka

helm install kafka cagriekin/kafka \
  --namespace messaging --create-namespace

Apache Kafka with KRaft mode, SASL authentication, TLS encryption, and topic management (v0.2.0)

Review the chart documentation in the kafka/README.md within the source repository for all configurable values.

> install pg

helm install pg cagriekin/pg \
  --namespace data --create-namespace

PostgreSQL with repmgr replication and optional PGPool-II (v0.5.58)

Review the chart documentation in the pg/README.md within the source repository for all configurable values.

> install pgvector

helm install pgvector cagriekin/pgvector \
  --namespace data --create-namespace

PostgreSQL with pgvector extension and optional PGPool-II (v0.6.62)

Review the chart documentation in the pgvector/README.md within the source repository for all configurable values.

> install redis

helm install redis cagriekin/redis \
  --namespace data --create-namespace

Single-instance Redis with AOF persistence (v0.3.9)

Review the chart documentation in the redis/README.md within the source repository for all configurable values.