debian-mirror-gitlab/doc/ci/interactive_web_terminal/index.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

83 lines
3.5 KiB
Markdown
Raw Normal View History

2019-09-04 21:01:54 +05:30
---
2020-06-23 00:09:42 +05:30
stage: Verify
group: Runner
2022-11-25 23:54:43 +05:30
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/product/ux/technical-writing/#assignments
2019-09-04 21:01:54 +05:30
type: reference
---
2023-07-09 08:55:56 +05:30
# Interactive web terminals **(FREE)**
2018-11-20 20:47:30 +05:30
2020-06-23 00:09:42 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/issues/50144) in GitLab 11.3.
2018-11-20 20:47:30 +05:30
Interactive web terminals give the user access to a terminal in GitLab for
2021-11-11 11:23:49 +05:30
running one-off commands for their CI pipeline. You can think of it like a method for
debugging with SSH, but done directly from the job page. Since this is giving the user
2019-09-30 21:07:59 +05:30
shell access to the environment where [GitLab Runner](https://docs.gitlab.com/runner/)
2019-03-02 22:35:43 +05:30
is deployed, some [security precautions](../../administration/integration/terminal.md#security) were
taken to protect the users.
2018-11-20 20:47:30 +05:30
2021-02-22 17:27:13 +05:30
NOTE:
2021-09-30 23:02:18 +05:30
[Shared runners on GitLab.com](../runners/index.md) do not
2022-10-11 01:57:18 +05:30
provide an interactive web terminal. Follow
2022-08-27 11:52:29 +05:30
[this issue](https://gitlab.com/gitlab-org/gitlab/-/issues/24674) for progress on
2019-03-02 22:35:43 +05:30
adding support. For groups and projects hosted on GitLab.com, interactive web
terminals are available when using your own group or project runner.
2018-11-20 20:47:30 +05:30
## Configuration
Two things need to be configured for the interactive web terminal to work:
2022-10-11 01:57:18 +05:30
- The runner needs to have
2022-08-27 11:52:29 +05:30
[`[session_server]` configured properly](https://docs.gitlab.com/runner/configuration/advanced-configuration.html#the-session_server-section)
2018-12-05 23:21:45 +05:30
- If you are using a reverse proxy with your GitLab instance, web terminals need to be
2018-11-20 20:47:30 +05:30
[enabled](../../administration/integration/terminal.md#enabling-and-disabling-terminal-support)
2022-03-02 08:16:31 +05:30
### Partial support for Helm chart
Interactive web terminals are partially supported in `gitlab-runner` Helm chart.
They are enabled when:
- The number of replica is one
- You use the `loadBalancer` service
Support for fixing these limitations is tracked in the following issues:
- [Support of more than one replica](https://gitlab.com/gitlab-org/charts/gitlab-runner/-/issues/323)
- [Support of more service types](https://gitlab.com/gitlab-org/charts/gitlab-runner/-/issues/324)
2019-12-04 20:38:33 +05:30
2018-11-20 20:47:30 +05:30
## Debugging a running job
2021-02-22 17:27:13 +05:30
NOTE:
2020-07-28 23:09:34 +05:30
Not all executors are
2018-11-20 20:47:30 +05:30
[supported](https://docs.gitlab.com/runner/executors/#compatibility-chart).
2021-02-22 17:27:13 +05:30
NOTE:
2020-07-28 23:09:34 +05:30
The `docker` executor does not keep running
2021-02-22 17:27:13 +05:30
after the build script is finished. At that point, the terminal automatically
2023-04-23 21:23:45 +05:30
disconnects and does not wait for the user to finish. Follow
2022-08-27 11:52:29 +05:30
[this issue](https://gitlab.com/gitlab-org/gitlab-runner/-/issues/3605) for updates on
2018-12-05 23:21:45 +05:30
improving this behavior.
2018-11-20 20:47:30 +05:30
Sometimes, when a job is running, things don't go as you would expect, and it
would be helpful if one can have a shell to aid debugging. When a job is
2021-02-22 17:27:13 +05:30
running, on the right panel you can see a button `debug` that opens the terminal
2018-11-20 20:47:30 +05:30
for the current job.
2022-08-27 11:52:29 +05:30
![Example of job running with terminal available](img/interactive_web_terminal_running_job.png)
2018-11-20 20:47:30 +05:30
2023-01-13 00:05:48 +05:30
When selected, a new tab opens to the terminal page where you can access
2023-04-23 21:23:45 +05:30
the terminal and type commands like in a standard shell.
2018-11-20 20:47:30 +05:30
![terminal of the job](img/interactive_web_terminal_page.png)
If you have the terminal open and the job has finished with its tasks, the
2021-02-22 17:27:13 +05:30
terminal blocks the job from finishing for the duration configured in
2019-12-26 22:10:19 +05:30
[`[session_server].session_timeout`](https://docs.gitlab.com/runner/configuration/advanced-configuration.html#the-session_server-section) until you
2018-11-20 20:47:30 +05:30
close the terminal window.
![finished job with terminal open](img/finished_job_with_terminal_open.png)
2019-07-31 22:56:46 +05:30
2023-07-09 08:55:56 +05:30
## Interactive web terminals for the Web IDE
2019-07-31 22:56:46 +05:30
2023-07-09 08:55:56 +05:30
To run interactive web terminals for the Web IDE, see [Web IDE](../../user/project/web_ide/index.md).