44
55Before you begin, ensure you have the following tools installed:
66
7- * ** kubectl:** The Kubernetes command-line tool.
8- * ** kind:** A tool for running Kubernetes locally using Docker.
9- * ** OrbStack** (as a container runtime)
7+ * ** kubectl:** The Kubernetes command-line tool.
8+ * ** kind:** A tool for running Kubernetes locally using Docker.
9+ * ** OrbStack** (as a container runtime)
1010
1111## Steps
1212
@@ -138,6 +138,7 @@ kubectl wait --namespace devworkspace-controller \
138138### 8. Create the DevWorkspace Operator Config
139139
140140#### 8.1 Get Load Balancer IP
141+
141142Get the Load Balancer IP from the ` ingress-nginx ` service:
142143
143144``` sh
@@ -146,6 +147,7 @@ kubectl get services \
146147 ingress-nginx-controller \
147148 --output jsonpath=' {.status.loadBalancer.ingress[0].ip}'
148149```
150+
149151Let's denote this value as ` <HOST_IP> ` .
150152
151153#### 8.2 Create the DevWorkspaceOperatorConfig
@@ -214,14 +216,16 @@ EOF
214216``` bash
215217kubectl patch devworkspace git-clone-sample-devworkspace -n default --type merge -p ' {"spec": {"started": true}}'
216218```
219+
217220You can also check the DevWorkspace status by running:
221+
218222``` sh
219223kubectl get devworkspace -n default
220224```
221225
222226When the DevWorkspace is running according to the status, open the editor by accesssing the URL from the ` INFO ` column in a web browser. For example:
223227
224- ```
228+ ``` sh
225229NAME DEVWORKSPACE ID PHASE INFO
226230git-clone-sample-devworkspace workspace0196ce197f0b4e90 Running < URL>
227231```
0 commit comments