@@ -155,15 +155,15 @@ You can install OpenSandbox Controller directly from GitHub Releases. Check the
155155
156156``` sh
157157# Replace <version> with the desired version (e.g., 0.1.0)
158- helm install opensandbox \
158+ helm install opensandbox-controller \
159159 https://github.com/alibaba/OpenSandbox/releases/download/helm/opensandbox-controller/< version> /opensandbox-controller-< version> .tgz \
160160 --namespace opensandbox-system \
161161 --create-namespace
162162```
163163
164164Example with specific version:
165165``` sh
166- helm install opensandbox \
166+ helm install opensandbox-controller \
167167 https://github.com/alibaba/OpenSandbox/releases/download/helm/opensandbox-controller/0.1.0/opensandbox-controller-0.1.0.tgz \
168168 --namespace opensandbox-system \
169169 --create-namespace
@@ -175,7 +175,7 @@ You can also download the chart first and then install:
175175wget https://github.com/alibaba/OpenSandbox/releases/download/helm/opensandbox-controller/< version> /opensandbox-controller-< version> .tgz
176176
177177# Install from local file
178- helm install opensandbox ./opensandbox-controller-< version> .tgz \
178+ helm install opensandbox-controller ./opensandbox-controller-< version> .tgz \
179179 --namespace opensandbox-system \
180180 --create-namespace
181181```
@@ -186,7 +186,7 @@ Use `--set` flags to customize the configuration:
186186
187187``` sh
188188# Example: Custom resource limits
189- helm install opensandbox \
189+ helm install opensandbox-controller \
190190 https://github.com/alibaba/OpenSandbox/releases/download/helm/opensandbox-controller/0.1.0/opensandbox-controller-0.1.0.tgz \
191191 --namespace opensandbox-system \
192192 --create-namespace \
@@ -195,7 +195,7 @@ helm install opensandbox \
195195 --set controller.resources.limits.memory=512Mi
196196
197197# Example: Custom log level
198- helm install opensandbox \
198+ helm install opensandbox-controller \
199199 https://github.com/alibaba/OpenSandbox/releases/download/helm/opensandbox-controller/0.1.0/opensandbox-controller-0.1.0.tgz \
200200 --namespace opensandbox-system \
201201 --create-namespace \
@@ -220,7 +220,7 @@ controller:
220220EOF
221221
222222# Install with custom values
223- helm install opensandbox \
223+ helm install opensandbox-controller \
224224 https://github.com/alibaba/OpenSandbox/releases/download/helm/opensandbox-controller/0.1.0/opensandbox-controller-0.1.0.tgz \
225225 --namespace opensandbox-system \
226226 --create-namespace \
@@ -242,7 +242,7 @@ If you're developing or need to customize the chart:
242242
2432432 . ** Install with Helm:**
244244 ``` sh
245- helm install opensandbox ./charts/opensandbox-controller \
245+ helm install opensandbox-controller ./charts/opensandbox-controller \
246246 --set controller.image.repository=< some-registry> /opensandbox-controller \
247247 --set controller.image.tag=< tag> \
248248 --namespace opensandbox-system \
@@ -264,15 +264,15 @@ kubectl logs -n opensandbox-system -l control-plane=controller-manager -f
264264
265265``` sh
266266# Upgrade to a new version
267- helm upgrade opensandbox \
267+ helm upgrade opensandbox-controller \
268268 https://github.com/alibaba/OpenSandbox/releases/download/helm/opensandbox-controller/< new-version> /opensandbox-controller-< new-version> .tgz \
269269 --namespace opensandbox-system
270270```
271271
272272** Uninstall:**
273273
274274``` sh
275- helm uninstall opensandbox -n opensandbox-system
275+ helm uninstall opensandbox-controller -n opensandbox-system
276276```
277277
278278For more configuration options and advanced usage, see the [ Helm Chart README] ( charts/opensandbox-controller/README.md ) .
0 commit comments