fluo cicd openstack summit

29
Continuous Integration and Deployment using OpenStack May 5, 2014 Miguel Zuniga

Upload: miguel-zuniga

Post on 14-Feb-2017

975 views

Category:

Internet


0 download

TRANSCRIPT

Page 1: Fluo CICD OpenStack Summit

Continuous Integration and Deployment using OpenStack

May 5, 2014

Miguel Zuniga

Page 2: Fluo CICD OpenStack Summit

2

About eBay Inc.

• eBay Inc. enables commerce by delivering flexible and scalable solutions that foster merchant growth. • eBay Marketplace: 128 million active users• More than 500 million items are listed on eBay Marketplace• PayPal: 143 million active accounts• Processing almost 8 million payments every day• 193 markets and 26 currencies around the world

Continuous Integration and Deployment using OpenStack

OpenStack at eBay Inc.

• One Cloud• Multiple Regions (global)• Multiple Availability Zones within Regions• Global Engineering and Operations Teams• Internal customers: developers, R&D, projects, business units (everyone)

Page 3: Fluo CICD OpenStack Summit

3

Agenda

• Enter Fluo (CI/CD)• Fluo Flow• Fluo Code Replication• Packages, Artifacts, <your term here>• Distribution of Packages• Infrastructure as Code• Deployment to Production• Screenshots• Roadmap

Continuous Integration and Deployment using OpenStack

Page 4: Fluo CICD OpenStack Summit

Enter Fluo (CI/CD)

From begin to end… how code goes to deployment.

Page 5: Fluo CICD OpenStack Summit

5

At the beginning

Basic system running• Gerrit• Jenkins• Web server

Requirements

• Single Interface• Scalable• Simple to use• Developer Friendly• Generic

Continuous Integration and Deployment using OpenStack

Page 6: Fluo CICD OpenStack Summit

6

Fluo and the CICD configuration file

• What is Fluo?– WebUI– Single pane of glass– Cloud instance provisioner– Allows user’s to configure the system– RBAC

• How it works?– Jenkins through API– Gerrit through API– Uses ZMQ to communicate with workers which do non-API actions– Recycle Jenkins slaves or provisions them on the fly at the moment of job execution.

• What is the cicd configuration file?– Specification and requirements files– How the developers instruct the system what to do (run unittests, how to build packages, install

dependencies, more…).

• Example

Continuous Integration and Deployment using OpenStack

Page 7: Fluo CICD OpenStack Summit

7

Fluo cicd configuration file

language: bashpackage_install:  apt:    - build-essential    - ruby1.9    - ruby1.9-dev    - mysql-server    - mysql-dev  gem:     - rails -v=4.0.3    - zmq    - mysql2before_review:  - /etc/init.d/mysql-server start  - mysql -u root < database.sql  - RAILS_ENV=test rake db:migrate  - RAILS_ENV=test rake db:test:loadreview_script:  - rake test test/models/user_test.rb  - rake test test/models/session_test.rb  - rake test test/models/post_test.rbnotification:  email:    - [email protected]

Continuous Integration and Deployment using OpenStack

Page 8: Fluo CICD OpenStack Summit

8

Fluo

Continuous Integration and Deployment using OpenStack

Components Architecture

• Fluo (App/worker/coordinator)• Cloud for provisioning

instances• Gerrit• Jenkins• Zuul• Galera (MySQL)• Zabbix (or any other

monitoring)• Puppet (or any other CM tool)• Mrepo• Rsync

Page 9: Fluo CICD OpenStack Summit

Fluo Flow

A step by step journey of a code change.

Page 10: Fluo CICD OpenStack Summit

10

Basic Workflow

Continuous Integration and Deployment using OpenStack

• Fluo basic workflow has 6 different stages/step– Review– Approval– Build– Integration– Release– Periodic

• At each stage/step Fluo will:1. Build a cloud instance2. Read the configuration file 3. Execute the scripts defined4. Report back status5. Destroy the instance

• Customs workflows can be created by users.

Developer FluoCommit and request review

Execute Review Scripts

Approve the code change Execute Approval ScriptsMerge and replicate code

Execute Build Scripts

Adds “Run Integration” to comment history on specific change

Execute Integration Scripts

Tag’s a specific commit Execute Release Scripts

At XY time of day Execute Periodic Scripts

Page 11: Fluo CICD OpenStack Summit

11

Code Quality = Must have… Review, Approval, Build

Continuous Integration and Deployment using OpenStack

The rest of the flow… Integration… Release… Periodic.

Review• Code change

submitted for review

Approval• Executed before

merging the code when code change is approved by someone

Build• Executed after the

code change has been merged

Integration• Activated by user

through Fluo by commenting “Run Integration” on a specific code change.

Release• Activated by user

adding tags to a specific commit.

Periodic• Activated by at a

specific time of the day, week. Similar to a cron job.

Page 12: Fluo CICD OpenStack Summit

Fluo Code Replication

One project… 2 projects… Multiple projects.. Best Practices.

Page 13: Fluo CICD OpenStack Summit

13

Github, Internal Github and your own Git repository.

Some points to consider:

• Categorize your code– Will it be open sourced?– Is it private for our team?– Is it private for our company?– Do we need mirrors?

• Always use ssh keys

• Standards– User which will be replicating– Replicate Branches or maybe not…

Continuous Integration and Deployment using OpenStack

Fluo

Github

Local Github

Private Github

Page 14: Fluo CICD OpenStack Summit

Packages, Artifacts, <your term here>

How do you want to wrap it out? RPM? Debs? Tar?

Page 15: Fluo CICD OpenStack Summit

15

When and where do I create my packages?

Things to consider.• Jenkins slaves will build the packages.• Make sure all your dependencies are in your cicd config file.• Prepare your environment with the package_install and before_{stage} sections.• Build your package at the {stage}_script section.• Define a versioning standard (0.0.x for test packages, x.y.0 for production packages)

Two main stages were created for build purposes.• Build stage

– Use commit number + time in secs as package version.• Release stage

– Use git tag as package version.

Continuous Integration and Deployment using OpenStack

Page 16: Fluo CICD OpenStack Summit

Distribution of Packages

Shipping the code to different locations.

Page 17: Fluo CICD OpenStack Summit

17

Shipping Packages to a Central Point

• Use simple and secure methods.– Secure Object storage– Rsync + SSH– SCP

• Mrepo (if you are RPM Based)• Replication is done every 5 mins.

Continuous Integration and Deployment using OpenStack

Replicate… Replicate and Replicate.

Fluo Package

Repository

Cloud A

Datacenter 2

Cloud B

Datacenter 1

Page 18: Fluo CICD OpenStack Summit

Infrastructure as Code

Controlling and Managing what is your Infrastructure doing.

Page 19: Fluo CICD OpenStack Summit

19

Configuration Management

• At the moment we use Puppet.• Puppet Code will also go through Fluo.

Continuous Integration and Deployment using OpenStack

Some guidelines to our puppet coders.

• Create your CM code in a service oriented way.• Use virtual resources.• Create within a module sections for each type

of OS you work with.• Create a common module.• Use parameterized classes.• Puppet parser validate filename.pp at the

review/approval stage.• Puppet apply –vd --noop

--modulepath=/modules filename.pp at the review/approval stage.

Example:• virtual.pp• classes

• someclass.pp • modules

• Fluo• files• templates• manifests

• init.pp• Redhat

• install.pp• config.pp• service.pp

• Ubuntu• install.pp• config.pp• postconfig.pp• service.pp

Page 20: Fluo CICD OpenStack Summit

Deployment to Production

So it’s GO time and you have green light.

Page 21: Fluo CICD OpenStack Summit

21

It’s GO time

• Centralize your configuration management code

• Keep it in sync (pull from the repository every 2 or 5 mins).

• Tag your Releases with a chronological meaning and keep a standard– OK

• 1.1.0• 1.2.0• 1.10.0

– NOT OK• V1.0• Beta1.0.1• 1.2

• Remember the TAG goes into the name of the package and its how your package manager identifies which package should be installed on an upgrade.

• Automatic Deployment or Scheduled Deployment?

Continuous Integration and Deployment using OpenStack

Page 22: Fluo CICD OpenStack Summit

Some Fluo screens

Page 23: Fluo CICD OpenStack Summit

23Continuous Integration and Deployment using OpenStack

Page 24: Fluo CICD OpenStack Summit

24Continuous Integration and Deployment using OpenStack

Page 25: Fluo CICD OpenStack Summit

25Continuous Integration and Deployment using OpenStack

Page 26: Fluo CICD OpenStack Summit

26Continuous Integration and Deployment using OpenStack

Page 27: Fluo CICD OpenStack Summit

Roadmap

Page 28: Fluo CICD OpenStack Summit

28

The Future of Fluo at eBay Cloud.

• CICDaaS (CICD as a Service).• Integrate with other CM tools.• Completely control of CM tools through Fluo.• Container support (OpenVZ/Docker).• Add swift as an option to store packages.

Continuous Integration and Deployment using OpenStack

Page 29: Fluo CICD OpenStack Summit

Thank you.

Questions?