====== Jenkins ======

===== Установка =====

  * https://pkg.jenkins.io/debian/ :!:
  * https://jenkins.io/changelog/

==== Установка текущей ====

<code bash>
$ apt install jenkins
</code>

==== Установить последнюю версию ====

<code bash>
$ wget -q -O - https://pkg.jenkins.io/debian/jenkins.io.key | sudo apt-key add -
$ wget https://pkg.jenkins.io/debian/binary/jenkins_2.151_all.deb
$ dpkg -i jenkins_2.151_all.deb
$ rm jenkins_2.151_all.deb
</code>

===== Proxy =====

<code nginx>BASH
upstream jenkins {
  server 127.0.0.1:8080 fail_timeout=0;
}
 
server {
  listen 80;
  server_name jenkins.domain.tld;
  return 301 https://$host$request_uri;
}
 
server {
  listen 443 ssl;
  server_name jenkins.domain.tld;
 
  ssl_certificate /etc/nginx/ssl/server.crt;
  ssl_certificate_key /etc/nginx/ssl/server.key;
 
  location / {
    proxy_set_header        Host $host:$server_port;
    proxy_set_header        X-Real-IP $remote_addr;
    proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header        X-Forwarded-Proto $scheme;
    proxy_redirect http:// https://;
    proxy_pass              http://jenkins;
    # Required for new HTTP-based CLI
    proxy_http_version 1.1;
    proxy_request_buffering off;
    proxy_buffering off; # Required for HTTP-based CLI to work over SSL
    # workaround for https://issues.jenkins-ci.org/browse/JENKINS-45651
    add_header 'X-SSH-Endpoint' 'jenkins.domain.tld:50022' always;
  }
}
</code>

[[https://www.8host.com/blog/nginx-kak-obratnyj-proksi-server-jenkins/|Подробнее...]]
===== Плагины =====

  * https://github.com/jenkinsci/pipeline-examples


===== Статьи / Форумы =====

  * https://automated-testing.info/search?q=jenkins
  * https://habr.com/search/?target_type=posts&q=%5Bjenkins%5D&order_by=date
===== Видео =====

  * https://www.youtube.com/watch?v=-Dxm3jhk-W0