ajout jenkins

This commit is contained in:
phil 2025-02-07 23:02:17 +01:00
parent 367f8578bd
commit 55330d41e1
3 changed files with 31 additions and 0 deletions

View File

@ -16,6 +16,7 @@ Ce dépôt héberge des **Vagrantfile** dont :
* **dvlpt** : Vagrantfile pour VM Debian 11 LAMP + phpmyadmin
* **glpi** : Vagrantfile pour VM Debian 11 GLPI 10.0.7
* **guacamole** : Vagrantfile pour Apache Guacamole dockerise sans frontal
* **jenkins** : Vagrantfile et script d'installation de Jenkins sur Debian 12
* **k8s** : kubernetes 1.26.00 + playbook pour master **k8s-master** et 2 noeuds **node-1** et **node-2**
* **k3s-awx** : Vagrantfile + script **inst-awx** pour installation **Ansible AWX** sur **k3s** avec **awx-on-k3s**
* **kea-dhcp-ha** : Vagrantfile pour serveur DHCP kea - HA avec serveur stork - machines **kea1**, **kea2** et **stork**

12
jenkins/README.md Normal file
View File

@ -0,0 +1,12 @@
# Jenkins
## Présentation
Le script ''install-jenkins'' installe l'application CI/CD **jenkins** sur Debian 12 avec openJDK 17 à partir du dépot jenkins.
Il installe lesapplication **git** et **ansible**.
Jenkins est accessible sur le port 8080
Le script fonctione sur une VM KVM ou sur un conteneur LXC.

18
jenkins/install-jenkins Normal file
View File

@ -0,0 +1,18 @@
#!/bin/bash
sudo apt-get update
sudo apt-get install -y gnupg openjdk-17-jdk
wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add -
sudo sh -c 'echo deb http://pkg.jenkins.io/debian-stable binary/ > /etc/apt/sources.list.d/jenkins.list'
sudo apt-get update
sudo apt-get install -y jenkins
sudo systemctl start jenkins
sudo systemctl enable jenkins
sudo systemctl status jenkins
sudo apt-get install -y git ansible