- Updated README to include architecture overview and details on components. - Changed import paths in test helpers and test files to use the new Git zone packages. - Modified S3 bucket name in test setup for consistency. - Updated CloudlyConfig class to use more descriptive environment variable names for MongoDB and S3 configuration. - Adjusted ImageManager to retrieve the S3 bucket name from the configuration instead of hardcoding it.
19 lines
961 B
Markdown
19 lines
961 B
Markdown
- This repository contains 4 projects around serve.zone
|
|
- the cloudly backend under ts/*
|
|
- the cloudly frontend under ts_web/*
|
|
- the api client under ts_apiclient
|
|
- the cli client under ts_cliclient
|
|
|
|
- the easiest method to spawn up a cloudly instance is to use the docker image:
|
|
`code.foss.global/serve.zone/cloudly:latest`
|
|
|
|
- Note: the exports are defined in the package.json.
|
|
- For now, cloud wise only the setup with cloudron and hetzner cloud is supported.
|
|
|
|
## Architecture Overview
|
|
- serve.zone is a monorepo containing multiple packages that work together to provide a complete container orchestration platform
|
|
- Uses Docker Swarm as the underlying container orchestration technology
|
|
- cloudly acts as the control plane providing API, web UI, and CLI interfaces
|
|
- coreflow runs inside Docker Swarm clusters to manage containers
|
|
- coretraffic runs on each node to handle traffic routing and SSL
|
|
- spark manages individual servers at the OS level |