Skip to content

Commit 9b20ca8

Browse files
authored
Merge pull request #50475 from guregini/patch-4
Fix code block formatting
2 parents c35edfc + 8d123cc commit 9b20ca8

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

articles/data-explorer/k2bridge.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -106,33 +106,35 @@ By default, K2Bridges's Helm chart references a publicly available image located
106106
```bash
107107
helm install kibana elastic/kibana -n k2bridge --set image=docker.elastic.co/kibana/kibana-oss --set imageTag=6.8.5 --set elasticsearchHosts=http://k2bridge:8080
108108
```
109+
109110
1. Use port forwarding to access Kibana on localhost:
110111
111112
```bash
112113
kubectl port-forward service/kibana-kibana 5601 --namespace k2bridge
113114
```
115+
114116
1. Connect to Kibana by browsing to http://127.0.0.1:5601.
115117
116118
1. Expose Kibana to the end users. There are multiple methods to do so. The method you use largely depends on your use case.
117119
118120
For example:
119121
120-
Expose the service as a LoadBalancer service. To do so, add the following parameter to the K2Bridge Helm install command ([above](#install-k2bridge-chart)):
121-
122-
`--set service.type=LoadBalancer`
122+
Expose the service as a LoadBalancer service. To do so, add the `--set service.type=LoadBalancer` parameter to the K2Bridge Helm install command ([above](#install-k2bridge-chart)).
123123
124124
Then run:
125-
126-
```bash
127-
kubectl get service -w -n k2bridge
128-
```
125+
126+
```bash
127+
kubectl get service -w -n k2bridge
128+
```
129+
129130
The output should look like:
130131
131132
```bash
132133
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
133134
kibana-kibana LoadBalancer xx.xx.xx.xx <pending> 5601:30128/TCP 4m24s
134135
```
135-
You can then use the generated EXTERNAL-IP that appears, and use it to access Kibana by opening a browser to: `\<EXTERNAL-IP>:5601`.
136+
137+
You can then use the generated EXTERNAL-IP that appears, and use it to access Kibana by opening a browser to `<EXTERNAL-IP>:5601`.
136138
137139
1. Configure index patterns to access your data:
138140
In a new Kibana instance:

0 commit comments

Comments
 (0)