Skip to content

Commit 881b4de

Browse files
authored
Update README.md
1 parent fe12dc8 commit 881b4de

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,15 +123,20 @@ List of Kubernetes nodes:
123123
`kurun` is capable of port forwarding your local application into a Kubernetes cluster with the help of a few tricks, it uses [inlets](https://github.com/alexellis/inlets) and `kubectl port-forward` to achieve this. This is extremely useful for rapid development of Kubernetes admission webhooks for example.
124124

125125
Start a Python SimpleHTTPServer on port 4443 on your machine:
126+
126127
```bash
127128
$ python -m SimpleHTTPServer 4443
128129
```
129130

130131
In another terminal session proxy this application into Kubernetes under the Service name `python-server`:
131-
`kurun port-forward --servicename python-server localhost:4443`
132132

133-
In a third terminal session proxy this application into Kubernetes under the Service name `python-server`:
133+
```bash
134+
kurun port-forward --servicename python-server localhost:4443
134135
```
136+
137+
In a third terminal session proxy this application into Kubernetes under the Service name `python-server`:
138+
139+
```bash
135140
kubectl run alpine --rm --image alpine -it
136141
If you don't see a command prompt, try pressing enter.
137142

0 commit comments

Comments
 (0)