Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Evy - Serveur d'Intégration Continue Distribué

Evy - Serveur d'Intégration Continue Distribué

Basé sur Redis et étant modulaire, Evy est peut-être une solution entre Jenkins et Buildbot.

Stéphane Wirtel

October 27, 2013
Tweet

More Decks by Stéphane Wirtel

Other Decks in Programming

Transcript

  1. • pour parler du Runbot (CI) d’OpenERP • échanger des

    idées d’un éventuel remplaçant • et pour le fun ! !5
  2. Le Runbot - La Bête • Serveur d’intégration continue •

    Propre à OpenERP • en Python, Of course ;-) • parce que nous avions des problèmes avec Buildbot (je sais plus !) !7
  3. • Build le dernier commit de plusieurs branches • Si

    build ok -> Instanciation de l’OpenERP • Interface simple • HTTP Proxy avec nginx !9 Le “Pour”
  4. • Monolitique (non-extensible) • Non-distribué • Exécuté toutes les X

    minutes • Installation très fastidieuse • bzr branch lp:~openerp-dev/openerp-tools/trunk !10 Le “Contre”
  5. Objectifs • Modularité • Scalabilité • Distribué • Extensible !

    ! • Monitoring • API HTTP Versionnée • Configurable (YAML) • Installation rapide !14
  6. Glossaire • Proxy • Manager • Worker • Queue •

    Plugin (Capacité) ! • Job • Build • Context d’exécution !15
  7. Scalabilité • Ajout de Workers • Ajout de Manager •

    Ajout de Proxy (reverse-proxy, nginx) !18
  8. API - Exemple > http GET http://localhost:19000/api/v1/builds/48f5f6f041bd4190af6504663150d67a! HTTP/1.1 200 OK!

    Connection: close! Content-Length: 57! Content-Type: application/json! Date: Sun, 27 Oct 2013 05:02:54 GMT! Server: gunicorn/18.0! ! {! "identifier": "48f5f6f041bd4190af6504663150d67a",! "status": "in progress"! }! !23
  9. Redis • In Memory / Persistence on Disk • Queue

    • Utilisé pour la configuration globale du système !25
  10. Proxy • HTTP API • RESTful • Versionné • Interface

    Web • Interface pour voir les queues !26
  11. Workers • Capacité • Ecoute sur sa propre queue •

    Fait sa TACHE ! • Configuration (YAML). !27
  12. Manager • Extension d’un Worker • Utilisation du Plugin “Manager”

    • Dispatch un build en fct(plugin) à éxécuter !28
  13. Plugins • Stevedore • Configuration • Capacité ! ! !

    • Exemples • Email • Nginx • Bzr !29
  14. Plugin Email !30 #!/usr/bin/env python! from setuptools import setup! !

    import release! ! setup(! author=release.author,! author_email=release.author_email,! name=release.name,! version=release.version,! install_requires=[! 'EvyWorker',! ],! entry_points={! 'evy.plugins': [! 'email = plugin:Email',! ]! }! )!
  15. from evyworker.logging import logger! ! class Email(object):! def __init__(self):! pass!

    ! def run(self, job, build, plugin, config, context=None):! logger.info("We do something in this method")! return {}! !31 Plugin Email
  16. Exemple 2 name: OpenERP Build 7.0! plugins:! - bzr_fetch_source! -

    openerp_build! - openerp_execute! - openerp_nginx_http_proxy! - update_web_site! - email! config:! bzr_fetch_source:! branches:! addons: 'lp:openobject-addons/7.0'! server: 'lp:openobject-server/7.0'! web: 'lp:openerp-web/7.0'! openerp_nginx_http_proxy:! server_name: 'demo.openerp.com'! port: 6543! ssl: true! context:! working_directory: /mount/srv/build/! !34
  17. Message entrant • De Internet vers le Proxy • JSON

    !36 {! "job": "Hello",! "plugins": {! "email": {! "from": "[email protected]",! "to": "[email protected]",! "subject": "Bonjour de Evy",! "body": "Le monde merveilleux de Python",! }! }! }!
  18. La réponse ;-) HTTP/1.1 202 ACCEPTED! Connection: close! Content-Length: 57!

    Content-Type: application/json! Date: Sun, 27 Oct 2013 04:58:46 GMT! Location: http://localhost:19000/api/v1/builds/48f5f6f041bd4190af6504663150d67a! Server: gunicorn/18.0! X-Evy-Build: 48f5f6f041bd4190af6504663150d67a! ! {! "identifier": "48f5f6f041bd4190af6504663150d67a"! }! !37
  19. Message interne - Exemples {! "job": "Hello",! "build": "48f5f6f041bd4190af6504663150d67a",! "plugin":

    "email",! "config": {! "from": "[email protected]",! "to": "[email protected]",! "subject": "Bonjour de Evy",! "body": "Le monde merveilleux de Python"! },! "context" : {! }! }! • Envoyé vers le Worker !39
  20. Message interne {! "job": "Hello",! "build": "48f5f6f041bd4190af6504663150d67a",! "status": "done",! "plugin":

    "email",! "context": {! }! }! {! "job": "Hello",! "build": "48f5f6f041bd4190af6504663150d67a",! "status": "failed",! "plugin": "email",! }! • Retour du Worker !40
  21. Command Line • Utilise l’API HTTP • Permet de créer

    des jobs • Gérer un build • Extensible en local/remote !41
  22. Et l’avenir ? • Unit Test • Documentation • Utilisation

    d’un File System distribué • Déplacer les logs vers LogStash ou Riemann • Plugin pour déploiement continu • Git Hook • Python-Eve • JSON (Message Interne) • ZMQ • Cron • Recettes !42