You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -265,7 +265,7 @@ _Hint: always wait until this log message is shown for this pod before you start
265
265
266
266
### Starting the debug process via launch.json
267
267
268
-
Now we need a debug configuration in Visual Code. This can be done in `.vscode/launch.json`:
268
+
Now we need a debug configuration in Visual Studio Code. This can be done in `.vscode/launch.json`:
269
269
270
270
```json
271
271
{
@@ -287,15 +287,17 @@ Now we need a debug configuration in Visual Code. This can be done in `.vscode/l
287
287
288
288
Where `remotePath` is the path to the project path inside the pod, `port` the local port to send the debug commands to, and `host` the host to send the debug commands to.
289
289
290
-
You find the new configuration in Visual Code here:
290
+
You can find the new configuration in Visual Studio Code here:
291
291
292
292

293
293
294
294
After starting the debug process there is a new log created by the go service:
295
295
296
+
```sh
296
297
2020/05/28 15:38:53 I am going to start...
298
+
```
297
299
298
-
We are ready to debug, but we have to trigger the API functions through the ingress service. Deploy it with kubectl:
300
+
Finally we are ready to debug the service, but we have to trigger the API functions through the ingress service. Deploy it with kubectl:
0 commit comments