GitSwarm currently doesn't have built-in support for managing SSH keys in a build environment.
The SSH keys can be useful when:
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 environment by extending your .gitlab-ci.yml
.
This is the universal solution which works with any type of executor (docker, shell, etc.).
You will first need to create an SSH key pair. For more information, follow the instructions to generate an SSH key.
Then, create a new Secret Variable in your project settings on GitSwarm following Settings > Variables. As Key add the name SSH_PRIVATE_KEY
and in the Value field paste the content of your private key that you created earlier.
Next you need to modify your .gitlab-ci.yml
with a before_script
action. Add it to the top:
before_script:
# Install ssh-agent if not already installed, it is required by Docker.
# (change apt-get to yum if you use a CentOS-based image)
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
# 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
- ssh-add <(echo "$SSH_PRIVATE_KEY")
# For Docker builds disable host key checking. Be aware that by adding that
# you are suspectible 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.
- mkdir -p ~/.ssh
- '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
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 GitSwarm repository you need to add it as a deploy key.
That's it! You can now have access to private servers or repositories in your build environment.
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.
First, you need to login to the server that runs your builds.
Then from the terminal login as the gitlab-runner
user and generate the SSH key pair as described in the SSH keys documentation.
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 GitSwarm repository you need to add it as a deploy key.
Once done, try to login to the remote server in order to accept the fingerprint:
ssh <address-of-my-server>
For accessing repositories on GitLab.com, the <address-of-my-server>
would be [email protected]
.
We have set up an Example SSH Project for your convenience that runs on GitLab.com using our publicly available shared runners.
Want to hack on it? Simply fork it, commit and push your changes. Within a few moments the changes will be picked by a public runner and the build will begin.