Quick Start
# Add the Helm repository
helm repo add lissto https://helm.lissto.dev/charts
helm repo update
# Install Lissto
helm install lissto lissto/lissto \
--namespace lissto-system \
--create-namespace
What is Lissto?
Lissto is a DevEnv and DevEx(perience) platform that simplifies the development of applications on Kubernetes. It bridges the gap between Docker Compose loved by developers and Kubernetes loved by DevOps and platform engineers.
💡 Features: Deploy Docker Compose apps to Kubernetes, manage multiple environments,
integrated Slack bot, REST API, and custom Kubernetes operators.
Available Charts
Installation Options
# Install with custom values
helm install lissto lissto/lissto \
-f custom-values.yaml \
--namespace lissto-system \
--create-namespace
# Install specific version
helm install lissto lissto/lissto \
--version 0.1.0 \
--namespace lissto-system \
--create-namespace
# Disable Slack bot
helm install lissto lissto/lissto \
--set bot.enabled=false \
--namespace lissto-system \
--create-namespace
Verify Installation
# Check deployment status
kubectl get pods -n lissto-system
# View available charts and versions
helm search repo lissto --versions