mirror of
https://github.com/colanode/colanode.git
synced 2026-02-24 11:59:53 +01:00
* Add Helm chart for Kubernetes deployment and reorganize hosting setup - Created Helm chart for deploying Colanode on Kubernetes with PostgreSQL, Redis, and MinIO configurations - Moved Docker Compose files to /hosting folder for better organization - Added health check endpoints for database, Redis, and S3 services - Introduced Dockerfile for PostgreSQL with pgvector extension to support Helm deployment - Added GitHub Actions workflow for building and publishing Helm chart - Updated README with Kubernetes deployment instructions * Renames and restructure * Update Helm chart workflow for Colanode deployment * Remove health check route and related configurations from the server and Kubernetes deployment files. --------- Co-authored-by: Hakan Shehu <hakanshehu15@gmail.com>
22 lines
577 B
YAML
22 lines
577 B
YAML
apiVersion: v2
|
|
name: colanode
|
|
description: A Helm chart for Colanode - open-source & local-first collaboration workspace
|
|
type: application
|
|
version: 0.1.0
|
|
appVersion: '1.0.0'
|
|
|
|
dependencies:
|
|
- name: postgresql
|
|
version: '16.7.4'
|
|
repository: 'https://charts.bitnami.com/bitnami'
|
|
condition: postgresql.enabled
|
|
- name: valkey
|
|
version: '3.0.4'
|
|
repository: 'https://charts.bitnami.com/bitnami'
|
|
alias: redis
|
|
condition: redis.enabled
|
|
- name: minio
|
|
version: '16.0.10'
|
|
repository: 'https://charts.bitnami.com/bitnami'
|
|
condition: minio.enabled
|