feat: add opensandbox

This commit is contained in:
Sun-ZhenXing
2026-03-03 17:28:33 +08:00
parent 72700c4db0
commit 06fcd557e3
5 changed files with 177 additions and 0 deletions
+48
View File
@@ -0,0 +1,48 @@
# OpenSandbox
## Introduction
OpenSandbox is a sandbox solution developed by Alibaba that provides secure, isolated environments for running applications. It enables users to create and manage sandboxed workloads with fine-grained resource control and security policies.
## Installation
To install OpenSandbox, run:
```bash
make install
```
This will:
1. Download the OpenSandbox Helm Chart (version 0.1.0) from GitHub Release
2. Install the OpenSandbox controller in the `opensandbox-system` namespace
3. Create the namespace if it doesn't exist
## Usage
After installation, verify the deployment:
```bash
kubectl get pods -n opensandbox-system
```
Check the controller logs:
```bash
kubectl logs -n opensandbox-system -l app=opensandbox-controller
```
## Version Information
- **Chart Version:** 0.1.0
- **App Version:** 0.1.0
- **Controller Image:** `sandbox-registry.cn-zhangjiakou.cr.aliyuncs.com/opensandbox/controller:v0.1.0`
- **Release Date:** 2026-03-03
## Uninstallation
To uninstall OpenSandbox:
```bash
make uninstall
```