Hi all,
In my environment I have a Gitlab CE gitlab.mydomain.com (docker compose)
I’m Jenkins newbie , I’m learning through Jenkin Documentation , using , best-practices , GitLab group folders video
I setup Jenkins (docker compose) , this is yml file:
version: "3"
services:
jenkins:
image: jenkins/jenkins:2.430-jdk21
container_name: jenkins
environment:
- TZ=Asia/Ho_Chi_Minh
ports:
- "8080:8080"
volumes:
- ./jenkins_home:/var/jenkins_home
networks:
- jenkins-net
networks:
jenkins-net:
driver: bridge
name: jenkins-net
I can access to http://192.168.7.112:8080 (my Ubuntu server). I installed GitLab Branch Source Plugin
I added Gitlab PAT and ssh credentials to Jenkins
I configure Gitlab server in Jenkins
When I create item in Jenkins , I cannot found “Gitlab Group” type
How can I troubleshoot it ? Please give me some advice, thank you very much.