tech:notes_jenkins
Différences
Ci-dessous, les différences entre deux révisions de la page.
| Les deux révisions précédentesRévision précédenteProchaine révision | Révision précédente | ||
| tech:notes_jenkins [2026/04/01 18:18] – Jean-Baptiste | tech:notes_jenkins [2026/04/01 20:59] (Version actuelle) – Jean-Baptiste | ||
|---|---|---|---|
| Ligne 1: | Ligne 1: | ||
| + | < | ||
| + | {{tag> | ||
| + | |||
| + | # Notes Jenkins | ||
| + | |||
| + | ## Serveur | ||
| + | |||
| + | ~~~bash | ||
| + | # podman run -p 8080:8080 -p 50000:50000 --restart=on-failure -v jenkins_home:/ | ||
| + | podman run -p 8080:8080 -p 50000:50000 --restart=on-failure -v jenkins_home:/ | ||
| + | |||
| + | podman exec -l cat / | ||
| + | ~~~ | ||
| + | |||
| + | Plugins : | ||
| + | * Role-based Authorization Strategy | ||
| + | * Pipeline | ||
| + | |||
| + | Recommandés : | ||
| + | * Folders | ||
| + | * OWASP Markup Formatter | ||
| + | * Build Timeout | ||
| + | * Credentials Binding | ||
| + | * Timestamper | ||
| + | * Workspace Cleanup | ||
| + | * Ant | ||
| + | * Gradle | ||
| + | * Pipeline | ||
| + | * GitHub Branch Source | ||
| + | * Pipeline: GitHub Groovy Libraries | ||
| + | * Pipeline Graph View | ||
| + | * Git | ||
| + | * SSH Build Agents | ||
| + | * Matrix Authorization Strategy | ||
| + | * LDAP | ||
| + | * Email Extension | ||
| + | * Mailer | ||
| + | * Dark Theme | ||
| + | |||
| + | |||
| + | |||
| + | ### Pb Erreur Form too large 208753> | ||
| + | |||
| + | #### Solution | ||
| + | |||
| + | Ajouter l' | ||
| + | |||
| + | ~~~bash | ||
| + | -Dorg.eclipse.jetty.server.Request.maxFormContentSize=5000000 | ||
| + | ~~~ | ||
| + | |||
| + | |||
| + | ## API | ||
| + | |||
| + | ~~~bash | ||
| + | read -s MDP | ||
| + | # curl -u admin:" | ||
| + | curl -u admin:" | ||
| + | ~~~ | ||
| + | |||
| + | |||
| + | ## CLI | ||
| + | |||
| + | ~~~bash | ||
| + | wget http:// | ||
| + | java -jar jenkins-cli.jar -s http:// | ||
| + | ~~~ | ||
| + | |||
| + | ## Salve | ||
| + | |||
| + | ~~~bash | ||
| + | wget http:// | ||
| + | java -jar agent.jar | ||
| + | ~~~ | ||
| + | |||
| + | |||
| + | ## Pipeline | ||
| + | |||
| + | A Jenkinsfile is written using a Groovy-based DSL (Domain-Specific Language) and can be structured in two ways: | ||
| + | * Declarative Pipeline (recommended for most users) | ||
| + | * Scripted Pipeline | ||
| + | |||
