Search code examples
continuous-integrationgitlabgitlab-ci-runner

This job is stuck, because the project doesn't have any runners online assigned to it. Go to Runners page


I am learning GitLab CI/CD.

I installed GitLab and GitLab Runner from Officials. Whenever I run the pipeline during Maven build, the job gets stuck. I have a registered runner and it is available to my project, but jobs get stuck.

.gitlab-ci.yml

image: docker:latest
services:
- docker:dind

variables:
 DOCKER_DRIVER: overlay
 SPRING_PROFILES_ACTIVE: gitlab-ci

stages:
- build
- package
- deploy

maven-build:
 image: maven:3-jdk-8
 stage: build
 script: "mvn package -B"
 artifacts:
 paths:
  - target/*.jar

docker-build:
stage: package
script:
 - docker build -t registry.com/ci-cd-demo .
 - docker push registry.com/ci-cd-demo

k8s-deploy:
 image: google/cloud-sdk
 stage: deploy
 script:
  - echo "$GOOGLE_KEY" > key.json
  - gcloud container clusters get-credentials standard-cluster-demo -- 
  zone us-east1-c --project ascendant-study-222206
   - kubectl apply -f deployment.yml

My runner settings

My shared runner

My project runner

Error message when runner is already associated with project:

Job error message

Can you help me?


Solution

  • The job is stuck because your runners have tags and your jobs don't. Follow these 4 steps to enable your runner to run without tags:

    enter image description here enter image description here

    Or set tags to your jobs. For more info: Configuration of your jobs with .gitlab-ci.yml - Tags