Skip to main content

Overview

Hello everyone!

Micro Mesh is a deployment platform for any workloads and cloud resources, "You code, we deploy".

Editor

For Devs

You can deploy any cloud resource easily either via the Web UI or via kubectl. You can deploy containers, topics, buckets, functions and more

# create a bucket
kubectl apply -f - <<EOF
apiVersion: apps.micromesh.dev/v1alpha1
kind: Bucket
metadata:
name: my-bucket
spec:
public: true
EOF

For AI developers (Premium Version)

You can deploy AI Agents and self-hosted private LLMs with OpenAI Compatible API.

kubectl apply -f - <<EOF
apiVersion: apps.micromesh.dev/v1alpha1
kind: LLM
metadata:
name: my-private-llama-model
spec:
model: meta-llama/Meta-Llama-3.1-70B
EOF

then you can access it via the OpenAI compatible API

curl https://my-private-llama-model.my-internal.domain/v1/completions \
-H "Content-Type: application/json" \
-d '{
"model": "meta-llama/Meta-Llama-3.1-70B",
"prompt": "San Francisco is a",
"max_tokens": 7,
"temperature": 0
}'

For DevOps (Premium Version)

Manage all of your different clouds resources in one place under one interface. You can control the permissions, cost, governance with policies,

control permissions:

apiVersion: apps.micromesh.dev/v1alpha1
kind: Policy
metadata:
name: only-admin-can-delete-buckets
spec:
buckets:
delete: [admin]

monitor cloud cost:

apiVersion: apps.micromesh.dev/v1alpha1
kind: Policy
metadata:
name: alert-when-cost-exceeds-300
spec:
cost:
softLimitInDollars: 300
slackWebhook: <my-slack-webhook-url>

For Cloud Architects (Premium Version)

You can draw your architecture and then deploy it without needing to manage any cloud resources such as VM's or kubernetes.

We currently have a No-Code editor for visual architecture design and we are working on a CLI and SDK for code usage

Editor

Reach out to us on Email for business inquiries and for companies support!

Or go to our Pricing page