Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
e2bfe5de51 | ||
|
10379acf6f | ||
|
bf15f643c7 | ||
|
b33711c33d | ||
|
fcf2e401c2 | ||
|
3816043214 | ||
|
55330d41e1 |
@ -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
12
jenkins/README.md
Normal file
@ -0,0 +1,12 @@
|
||||
# Jenkins
|
||||
|
||||
## Présentation
|
||||
|
||||
Le script **install-jenkins.sh** installe l'application CI/CD **jenkins** sur Debian 12 avec openJDK 17 à partir du dépot jenkins.
|
||||
|
||||
Il installe également les applications **git** et **ansible**.
|
||||
|
||||
Jenkins est accessible sur le port 8080
|
||||
|
||||
Le script fonctionne sur une VM KVM ou sur un conteneur LXC.
|
||||
|
71
jenkins/Vagrantfile
vendored
Normal file
71
jenkins/Vagrantfile
vendored
Normal file
@ -0,0 +1,71 @@
|
||||
# -*- mode: ruby -*-
|
||||
# vi: set ft=ruby :
|
||||
|
||||
# All Vagrant configuration is done below. The "2" in Vagrant.configure
|
||||
# configures the configuration version (we support older styles for
|
||||
# backwards compatibility). Please don't change it unless you know what
|
||||
# you're doing.
|
||||
Vagrant.configure("2") do |config|
|
||||
# The most common configuration options are documented and commented below.
|
||||
# For a complete reference, please see the online documentation at
|
||||
# https://docs.vagrantup.com.
|
||||
|
||||
# Every Vagrant development environment requires a box. You can search for
|
||||
# boxes at https://vagrantcloud.com/search.
|
||||
config.vm.box = "debian/bookworm64"
|
||||
config.vm.hostname = "jenkins"
|
||||
|
||||
# Disable automatic box update checking. If you disable this, then
|
||||
# boxes will only be checked for updates when the user runs
|
||||
# `vagrant box outdated`. This is not recommended.
|
||||
# config.vm.box_check_update = false
|
||||
|
||||
# Create a forwarded port mapping which allows access to a specific port
|
||||
# within the machine from a port on the host machine. In the example below,
|
||||
# accessing "localhost:8080" will access port 80 on the guest machine.
|
||||
# NOTE: This will enable public access to the opened port
|
||||
# config.vm.network "forwarded_port", guest: 80, host: 8080
|
||||
|
||||
# Create a forwarded port mapping which allows access to a specific port
|
||||
# within the machine from a port on the host machine and only allow access
|
||||
# via 127.0.0.1 to disable public access
|
||||
# config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1"
|
||||
|
||||
# Create a private network, which allows host-only access to the machine
|
||||
# using a specific IP.
|
||||
# config.vm.network "private_network", ip: "192.168.33.10"
|
||||
|
||||
# Create a public network, which generally matched to bridged network.
|
||||
# Bridged networks make the machine appear as another physical device on
|
||||
# your network.
|
||||
config.vm.network "public_network"
|
||||
|
||||
# Share an additional folder to the guest VM. The first argument is
|
||||
# the path on the host to the actual folder. The second argument is
|
||||
# the path on the guest to mount the folder. And the optional third
|
||||
# argument is a set of non-required options.
|
||||
# config.vm.synced_folder "../data", "/vagrant_data"
|
||||
|
||||
# Provider-specific configuration so you can fine-tune various
|
||||
# backing providers for Vagrant. These expose provider-specific options.
|
||||
# Example for VirtualBox:
|
||||
#
|
||||
config.vm.provider "virtualbox" do |vb|
|
||||
# # Display the VirtualBox GUI when booting the machine
|
||||
# vb.gui = true
|
||||
#
|
||||
# # Customize the amount of memory on the VM:
|
||||
vb.memory = "2048"
|
||||
end
|
||||
#
|
||||
# View the documentation for the provider you are using for more
|
||||
# information on available options.
|
||||
|
||||
# Enable provisioning with a shell script. Additional provisioners such as
|
||||
# Ansible, Chef, Docker, Puppet and Salt are also available. Please see the
|
||||
# documentation for more information about their specific syntax and use.
|
||||
config.vm.provision "shell",
|
||||
inline: "timedatectl set-timezone Europe/Paris ; apt-get update ; apt-get install -y vim curl wget"
|
||||
config.vm.provision "shell", path: "provision/install-jenkins.sh"
|
||||
end
|
||||
|
9
jenkins/jenkins-proxy.d2
Normal file
9
jenkins/jenkins-proxy.d2
Normal file
@ -0,0 +1,9 @@
|
||||
direction: right
|
||||
client.shape: cloud
|
||||
client -> jenkins: " :443"
|
||||
jenkins: {
|
||||
caddy
|
||||
jenkins
|
||||
caddy -> jenkins: ":8080"
|
||||
}
|
||||
|
11
jenkins/provision/Caddyfile
Normal file
11
jenkins/provision/Caddyfile
Normal file
@ -0,0 +1,11 @@
|
||||
192.168.1.30:443 {
|
||||
tls internal
|
||||
reverse_proxy localhost:8080
|
||||
}
|
||||
|
||||
jenkins:443 {
|
||||
tls internal
|
||||
reverse_proxy localhost:8080
|
||||
}
|
||||
|
||||
|
6
jenkins/provision/install-caddy.sh
Normal file
6
jenkins/provision/install-caddy.sh
Normal file
@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y caddy
|
||||
|
||||
|
19
jenkins/provision/install-jenkins.sh
Normal file
19
jenkins/provision/install-jenkins.sh
Normal file
@ -0,0 +1,19 @@
|
||||
#!/bin/bash
|
||||
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y gnupg openjdk-17-jdk
|
||||
|
||||
curl -fsSL https://pkg.jenkins.io/debian-stable/jenkins.io-2023.key | sudo tee \ /usr/share/keyrings/jenkins-keyring.asc > /dev/null
|
||||
|
||||
echo deb [signed-by=/usr/share/keyrings/jenkins-keyring.asc] \ https://pkg.jenkins.io/debian-stable binary/ | sudo tee \ /etc/apt/sources.list.d/jenkins.list > /dev/null
|
||||
|
||||
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
|
||||
|
38
restic-minio/README.md
Normal file
38
restic-minio/README.md
Normal file
@ -0,0 +1,38 @@
|
||||
# Serveur Wazuh All in One et machine wazuh-agent debian 12
|
||||
|
||||
## Présentation
|
||||
|
||||
Cette `Vagrantfile` permet d'installer :
|
||||
* un serveur Wazuh **wazuh** All-In-One ( indexer + manager + Dashboard) - Ubuntu 24.04
|
||||
* un serveur Linux **wazuh-cli** ( wazuh-agent ) - Debian 12.9
|
||||
|
||||
La Vagrantfile utilise les playbooks ansible suivants :
|
||||
* **provision/setup-wazuh.yml** qui:
|
||||
* coupe le service **unattended-upgrades**
|
||||
* recupère le script **wazuh-install.sh** et le lance
|
||||
* **provision/setup-wazuh-cli.yml** qui:
|
||||
* installe les dépots pour wazuh
|
||||
* installe le paquet **wazuh-agent** en enregistrant la machine **wazuh-cli**
|
||||
* relance le service **wazuh-agent**
|
||||
|
||||
## Utilisation de la Vagrantfile
|
||||
|
||||
L'installation du serveur **wazuh** est assez longue ( ~ 15 minutes ).
|
||||
|
||||
````shell
|
||||
vagrant up wazuh
|
||||
vagrant up wazuhcli
|
||||
````
|
||||
|
||||
Le mot de passe du compte **admin** se trouve dans le fichier `wazuh-install-files/wazuh-passwords.txt`, lui-même contenu dans le ficher `wazuh-install-files.tar` à extraire avec la commande :
|
||||
|
||||
````shell
|
||||
sudo tar xvf wazuh-install-file.tar
|
||||
````
|
||||
On peut alors se connecter au serveur **wazuh** avec un navigateur : http://adresse
|
||||
(admin/mdp)
|
||||
|
||||
Une fois connecté, on doit autoriser chacun des deux serveurs **kea1** et **kea2** inscrits
|
||||
|
||||
|
||||
|
47
restic-minio/Vagrantfile
vendored
Normal file
47
restic-minio/Vagrantfile
vendored
Normal file
@ -0,0 +1,47 @@
|
||||
# -*- mode: ruby -*-
|
||||
# vi: set ft=ruby :
|
||||
|
||||
Vagrant.configure("2") do |config|
|
||||
# Base VM OS configuration.
|
||||
config.vm.box = "debian/bookworm64"
|
||||
config.ssh.insert_key = false
|
||||
config.vm.synced_folder '.', '/vagrant', disabled: true
|
||||
|
||||
# General VirtualBox VM configuration.
|
||||
config.vm.provider :virtualbox do |v|
|
||||
v.memory = 1024
|
||||
v.cpus = 1
|
||||
v.linked_clone = true
|
||||
v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
|
||||
v.customize ["modifyvm", :id, "--ioapic", "on"]
|
||||
v.check_guest_additions = false
|
||||
end
|
||||
|
||||
# Minio.
|
||||
config.vm.define "minio" do |minio|
|
||||
minio.vm.box = "debian/bookworm64"
|
||||
minio.vm.hostname = "minio"
|
||||
minio.vm.network :private_network, ip: "192.168.56.5"
|
||||
minio.vm.provider :virtualbox do |v|
|
||||
v.customize ["modifyvm", :id, "--memory", 1024]
|
||||
v.cpus = 1
|
||||
end
|
||||
minio.vm.provision "shell",
|
||||
inline: "timedatectl set-timezone Europe/Paris ; apt-get update ; apt-get install -y vim curl wget"
|
||||
minio.vm.provision "shell", path: "provision/install-minio.sh"
|
||||
end
|
||||
|
||||
# Restic.
|
||||
config.vm.define "restic" do |restic|
|
||||
restic.vm.hostname = "restic"
|
||||
restic.vm.network :private_network, ip: "192.168.56.2"
|
||||
restic.vm.provider :virtualbox do |v|
|
||||
v.customize ["modifyvm", :id, "--memory", 1024]
|
||||
end
|
||||
restic.vm.provision "shell",
|
||||
inline: "timedatectl set-timezone Europe/Paris ; apt-get update ; apt-get install -y vim curl wget"
|
||||
restic.vm.provision "shell", path: "provision/install-restic.sh"
|
||||
end
|
||||
|
||||
end
|
||||
|
14
restic-minio/provision/install-minio.sh
Normal file
14
restic-minio/provision/install-minio.sh
Normal file
@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
sudo apt-get update
|
||||
|
||||
wget https://dl.min.io/server/minio/release/linux-amd64/archive/minio_20250203210304.0.0_amd64.deb -O minio.deb
|
||||
sudo dpkg -i minio.deb
|
||||
|
||||
|
||||
sudo groupadd -r minio
|
||||
sudo useradd -M -r -g minio minio
|
||||
|
||||
|
||||
echo -e "mkdir ~/minio\nminio server ~/minio --console-address :9001"
|
||||
|
11
restic-minio/provision/install-restic.sh
Normal file
11
restic-minio/provision/install-restic.sh
Normal file
@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
|
||||
sudo apt-get update
|
||||
|
||||
apt install restic
|
||||
|
||||
wget https://dl.min.io/client/mc/release/linux-amd64/mc
|
||||
chmod +x mc
|
||||
sudo mv mc /usr/local/bin/mc
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user