Skip to content

Commit 25ea0c8

Browse files
dbaduragrego952
andauthored
Apply suggestions from code review
Co-authored-by: Grzegorz Karaluch <grzegorz.karaluch@sap.com>
1 parent 18dc70e commit 25ea0c8

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -178,43 +178,43 @@ For the information on how to run tests and configure them, go to the [`tests`](
178178
docker run --rm -it -p 3001:3001 -v <path to your custom config>:/app/core-ui/environments/ --env ENVIRONMENT={your-env} --pid=host --name busola europe-docker.pkg.dev/kyma-project/prod/busola:latest
179179
```
180180

181-
## Deploy Busola in Kubernetes Cluster
181+
## Deploy Busola on the Kubernetes Cluster
182182

183-
To install Busola on Kubernetes cluster run:
183+
To install Busola on the Kubernetes cluster, run:
184184

185185
```shell
186186
(cd resources && kustomize build base/ | kubectl apply -f- )
187187
```
188188

189-
To install Busola using specific environment configuration, set `ENVIRONMENT` shell environment variable and run:
189+
To install Busola using a specific environment configuration, set the `ENVIRONMENT` shell environment variable and run:
190190

191191
```shell
192192
(cd resources && kustomize build environments/${ENVIRONMENT} | kubectl apply -f- )
193193
```
194194

195-
## Access Busola installed on Kubernetes
195+
## Access Busola Installed on Kubernetes
196196

197-
### Kubectl
197+
### kubectl
198198

199-
The simplest method which always works is to use capabilities of `kubectl`.
199+
The simplest method that always works is to use the capabilities of kubectl.
200200

201201
```shell
202202
kubectl port-forward services/busola 3001:3001
203203
```
204204

205-
### Busola installed on K3d
205+
### k3d
206206

207207
Prerequisites:
208208

209209
- K3d with installed Traefik, by default it's installed.
210210

211-
Install ingress resources by running:
211+
1. Install Ingress resources:
212212

213213
```shell
214214
(cd resources && kubectl apply -f ingress/ingress.yaml)
215215
```
216216

217-
Go to `localhost`
217+
2. Go to `localhost`
218218

219219
#### Connect to the k3d cluster where Busola is installed.
220220

@@ -229,26 +229,26 @@ k3d kubeconfig get ${K3D_CLUSTER_NAME} > k3d-kubeconfig.yaml
229229
yq --inplace '.clusters[].cluster.server = "https://kubernetes.default.svc:443"' k3d-kubeconfig.yaml
230230
```
231231

232-
### Kubernetes cluster with Istio installed
232+
### Kubernetes Cluster with Istio Installed
233233

234234
Prerequisites:
235235

236-
- Sidecar Proxy injection enabled, see [Kyma docs](https://kyma-project.io/#/istio/user/tutorials/01-40-enable-sidecar-injection?id=enable-istio-sidecar-proxy-injection), how to enable it.
237-
- Api gateway module installed, see [install docs](https://kyma-project.io/#/02-get-started/01-quick-install)
236+
- Sidecar Proxy injection enabled, see [Enable Istio Sidecar Proxy Injection](https://kyma-project.io/#/istio/user/tutorials/01-40-enable-sidecar-injection?id=enable-istio-sidecar-proxy-injection).
237+
- The API Gateway module installed, see [Quick Install](https://kyma-project.io/#/02-get-started/01-quick-install)
238238

239-
Install Istio needed resources by running:
239+
1. Install the Istio required resources:
240240

241241
```shell
242242
(cd resources && kubectl apply -k istio)
243243
```
244244

245-
To get Busola address run:
245+
2. To get the Busola address, run:
246246

247247
```shell
248248
kubectl get virtualservices.networking.istio.io
249249
```
250250

251-
and find `busola-***` virtual service. Under `HOSTS` there is address to access Busola page.
251+
and find the `busola-***` virtual service. Under `HOSTS,` there is an address where you can access the Busola page.
252252

253253
## Troubleshooting
254254

0 commit comments

Comments
 (0)