Skip to content

Tag: gitlab

If condition is failing in the GitLab CI

following is my Gitlab CI code:- I’m trying to validate the JIRA status by calling its API after retrieving Jira id from title of Merge Request. There is a problem in the If condition below if [[ “$JIRA_STATUS” == “^(Done|Completed|Closed)$” ]] as it is not validating it properly…

Gitlab avoid user login via SSH

When I create a user on Gitlab, it creates a regular user on linux and it can login using a regular SSH protocol with same password an user. How can I disable the SSH login using SSH to desired users? All my server is exposed to that users. Thank you Answer Edit the sshd_config file adding this line Read more…

Password for GitLab

I’ve installed GitLab per https://github.com/gitlabhq/gitlab-recipes/tree/master/install/centos. The instructions state to add user “git” All seemed to work. I then added a project on the GitLab server, and it gave instructions to push to it: I then went to my client to push to the git serve…