debian-mirror-gitlab/doc/ci/ssh_keys/README.md

215 lines
8.3 KiB
Markdown
Raw Normal View History

2018-03-17 18:26:18 +05:30
---
2020-06-23 00:09:42 +05:30
stage: Verify
group: Continuous Integration
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#designated-technical-writers
2019-09-04 21:01:54 +05:30
type: tutorial
2018-03-17 18:26:18 +05:30
---
# Using SSH keys with GitLab CI/CD
2015-12-23 02:04:40 +05:30
GitLab currently doesn't have built-in support for managing SSH keys in a build
2018-03-17 18:26:18 +05:30
environment (where the GitLab Runner runs).
2015-12-23 02:04:40 +05:30
The SSH keys can be useful when:
1. You want to checkout internal submodules
2018-03-17 18:26:18 +05:30
1. You want to download private packages using your package manager (e.g., Bundler)
1. You want to deploy your application to your own server, or, for example, Heroku
1. You want to execute SSH commands from the build environment to a remote server
1. You want to rsync files from the build environment to a remote server
2015-12-23 02:04:40 +05:30
If anything of the above rings a bell, then you most likely need an SSH key.
The most widely supported method is to inject an SSH key into your build
2018-03-17 18:26:18 +05:30
environment by extending your `.gitlab-ci.yml`, and it's a solution which works
with any type of [executor](https://docs.gitlab.com/runner/executors/)
(Docker, shell, etc.).
## How it works
2019-12-21 20:55:43 +05:30
1. Create a new SSH key pair locally with [`ssh-keygen`](https://linux.die.net/man/1/ssh-keygen)
2018-11-08 19:23:39 +05:30
1. Add the private key as a [variable](../variables/README.md) to
2018-03-17 18:26:18 +05:30
your project
2019-12-21 20:55:43 +05:30
1. Run the [`ssh-agent`](https://linux.die.net/man/1/ssh-agent) during job to load
2018-03-17 18:26:18 +05:30
the private key.
1. Copy the public key to the servers you want to have access to (usually in
`~/.ssh/authorized_keys`) or add it as a [deploy key](../../ssh/README.md#deploy-keys)
if you are accessing a private GitLab repository.
NOTE: **Note:**
2019-12-21 20:55:43 +05:30
The private key will not be displayed in the job log, unless you enable
[debug logging](../variables/README.md#debug-logging). You might also want to
2020-04-08 14:13:33 +05:30
check the [visibility of your pipelines](../pipelines/settings.md#visibility-of-pipelines).
2015-12-23 02:04:40 +05:30
## SSH keys when using the Docker executor
2018-03-17 18:26:18 +05:30
When your CI/CD jobs run inside Docker containers (meaning the environment is
contained) and you want to deploy your code in a private server, you need a way
to access it. This is where an SSH key pair comes in handy.
1. You will first need to create an SSH key pair. For more information, follow
the instructions to [generate an SSH key](../../ssh/README.md#generating-a-new-ssh-key-pair).
2018-11-20 20:47:30 +05:30
**Do not** add a passphrase to the SSH key, or the `before_script` will
2018-03-17 18:26:18 +05:30
prompt for it.
2019-07-31 22:56:46 +05:30
1. Create a new [variable](../variables/README.md#gitlab-cicd-environment-variables).
2018-03-17 18:26:18 +05:30
As **Key** enter the name `SSH_PRIVATE_KEY` and in the **Value** field paste
the content of your _private_ key that you created earlier.
1. Modify your `.gitlab-ci.yml` with a `before_script` action. In the following
example, a Debian based image is assumed. Edit to your needs:
2019-10-12 21:52:04 +05:30
```yaml
before_script:
##
## Install ssh-agent if not already installed, it is required by Docker.
## (change apt-get to yum if you use an RPM-based image)
##
2020-10-24 23:57:45 +05:30
- 'command -v ssh-agent >/dev/null || ( apt-get update -y && apt-get install openssh-client -y )'
2019-10-12 21:52:04 +05:30
##
## Run ssh-agent (inside the build environment)
##
- eval $(ssh-agent -s)
##
## Add the SSH key stored in SSH_PRIVATE_KEY variable to the agent store
## We're using tr to fix line endings which makes ed25519 keys work
## without extra base64 encoding.
## https://gitlab.com/gitlab-examples/ssh-private-key/issues/1#note_48526556
##
2019-12-04 20:38:33 +05:30
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
2019-10-12 21:52:04 +05:30
##
## Create the SSH directory and give it the right permissions
##
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
##
## Optionally, if you will be using any Git commands, set the user name and
## and email.
##
2020-11-24 15:15:51 +05:30
# - git config --global user.email "user@example.com"
# - git config --global user.name "User name"
2019-10-12 21:52:04 +05:30
```
NOTE: **Note:**
The [`before_script`](../yaml/README.md#before_script-and-after_script) can be set globally
or per-job.
2018-03-17 18:26:18 +05:30
1. Make sure the private server's [SSH host keys are verified](#verifying-the-ssh-host-keys).
1. As a final step, add the _public_ key from the one you created in the first
step to the services that you want to have an access to from within the build
environment. If you are accessing a private GitLab repository you need to add
it as a [deploy key](../../ssh/README.md#deploy-keys).
2015-12-23 02:04:40 +05:30
That's it! You can now have access to private servers or repositories in your
build environment.
## SSH keys when using the Shell executor
If you are using the Shell executor and not Docker, it is easier to set up an
SSH key.
You can generate the SSH key from the machine that GitLab Runner is installed
on, and use that key for all projects that are run on this machine.
2020-03-13 15:44:24 +05:30
1. First, log in to the server that runs your jobs.
2018-03-17 18:26:18 +05:30
2020-03-13 15:44:24 +05:30
1. Then, from the terminal, log in as the `gitlab-runner` user:
2015-12-23 02:04:40 +05:30
2020-03-13 15:44:24 +05:30
```shell
2019-10-12 21:52:04 +05:30
sudo su - gitlab-runner
```
2015-12-23 02:04:40 +05:30
2018-03-17 18:26:18 +05:30
1. Generate the SSH key pair as described in the instructions to
[generate an SSH key](../../ssh/README.md#generating-a-new-ssh-key-pair).
**Do not** add a passphrase to the SSH key, or the `before_script` will
prompt for it.
1. As a final step, add the _public_ key from the one you created earlier to the
services that you want to have an access to from within the build environment.
If you are accessing a private GitLab repository you need to add it as a
[deploy key](../../ssh/README.md#deploy-keys).
2015-12-23 02:04:40 +05:30
2020-03-13 15:44:24 +05:30
Once done, try to log in to the remote server in order to accept the fingerprint:
2015-12-23 02:04:40 +05:30
2020-03-13 15:44:24 +05:30
```shell
2018-03-17 18:26:18 +05:30
ssh example.com
```
For accessing repositories on GitLab.com, you would use `git@gitlab.com`.
## Verifying the SSH host keys
It is a good practice to check the private server's own public key to make sure
you are not being targeted by a man-in-the-middle attack. In case anything
suspicious happens, you will notice it since the job would fail (the SSH
connection would fail if the public keys would not match).
To find out the host keys of your server, run the `ssh-keyscan` command from a
trusted network (ideally, from the private server itself):
2020-03-13 15:44:24 +05:30
```shell
2018-03-17 18:26:18 +05:30
## Use the domain name
ssh-keyscan example.com
## Or use an IP
ssh-keyscan 1.2.3.4
2015-12-23 02:04:40 +05:30
```
2019-07-31 22:56:46 +05:30
Create a new [variable](../variables/README.md#gitlab-cicd-environment-variables) with
2018-03-17 18:26:18 +05:30
`SSH_KNOWN_HOSTS` as "Key", and as a "Value" add the output of `ssh-keyscan`.
NOTE: **Note:**
If you need to connect to multiple servers, all the server host keys
need to be collected in the **Value** of the variable, one key per line.
TIP: **Tip:**
2018-11-08 19:23:39 +05:30
By using a variable instead of `ssh-keyscan` directly inside
2018-03-17 18:26:18 +05:30
`.gitlab-ci.yml`, it has the benefit that you don't have to change `.gitlab-ci.yml`
if the host domain name changes for some reason. Also, the values are predefined
by you, meaning that if the host keys suddenly change, the CI/CD job will fail,
and you'll know there's something wrong with the server or the network.
Now that the `SSH_KNOWN_HOSTS` variable is created, in addition to the
[content of `.gitlab-ci.yml`](#ssh-keys-when-using-the-docker-executor)
above, here's what more you need to add:
2018-11-20 20:47:30 +05:30
```yaml
2018-03-17 18:26:18 +05:30
before_script:
##
## Assuming you created the SSH_KNOWN_HOSTS variable, uncomment the
## following two lines.
##
2020-04-22 19:07:51 +05:30
- echo "$SSH_KNOWN_HOSTS" >> ~/.ssh/known_hosts
2018-03-17 18:26:18 +05:30
- chmod 644 ~/.ssh/known_hosts
##
## Alternatively, use ssh-keyscan to scan the keys of your private server.
## Replace example.com with your private server's domain name. Repeat that
## command if you have more than one server to connect to.
##
2020-11-24 15:15:51 +05:30
# - ssh-keyscan example.com >> ~/.ssh/known_hosts
# - chmod 644 ~/.ssh/known_hosts
2018-03-17 18:26:18 +05:30
##
## You can optionally disable host key checking. Be aware that by adding that
## you are susceptible to man-in-the-middle attacks.
## WARNING: Use this only with the Docker executor, if you use it with shell
## you will overwrite your user's SSH config.
##
2020-11-24 15:15:51 +05:30
# - '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" >> ~/.ssh/config'
2018-03-17 18:26:18 +05:30
```
2015-12-23 02:04:40 +05:30
## Example project
2020-04-22 19:07:51 +05:30
We have set up an [Example SSH Project](https://gitlab.com/gitlab-examples/ssh-private-key/) for your convenience
2015-12-23 02:04:40 +05:30
that runs on [GitLab.com](https://gitlab.com) using our publicly available
[shared runners](../runners/README.md).
Want to hack on it? Simply fork it, commit and push your changes. Within a few
2017-08-17 22:00:37 +05:30
moments the changes will be picked by a public runner and the job will begin.