openstack upgrades

24
OpenStack upgrades OpenStack Summit 2013 Hong Kong

Upload: hart

Post on 25-Feb-2016

50 views

Category:

Documents


0 download

DESCRIPTION

OpenStack upgrades. OpenStack Summit 2013 Hong Kong. Whoarewe. Sébastien Han Frédéric Lepied Mehdi Abaakouk W orking for eNovance Company blog: http://techs.enovance.com/. Worldwide offices coverage. We design, build and run clouds – anytime - anywhere. Problems. State of arts. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: OpenStack upgrades

OpenStack upgrades

OpenStack Summit 2013Hong Kong

Page 2: OpenStack upgrades

Whoarewe• Sébastien Han• Frédéric Lepied• Mehdi Abaakouk

Working for eNovanceCompany blog: http://techs.enovance.com/

Worldwide offices coverageWe design, build and run clouds – anytime -

anywhere

Page 3: OpenStack upgrades

ProblemsState of arts

Page 4: OpenStack upgrades
Page 5: OpenStack upgrades

Key principles• do not log in to the servers• do not manually install packages• do not manually edit configuration files• do not manually restart daemons

Puppet, in combination with GIT is the only one managing the configuration.

Page 6: OpenStack upgrades

It’s all about architecture designWe need redundancy to perform upgrades without downtime:

• Active / active setup – Loadbalancer• Active / passive setup• Databases must be replicated : Galera / MongoDB

Page 7: OpenStack upgrades

RollbackEven with a good QA system, problems might rise in production thus we need a rollback mechanism.

Page 8: OpenStack upgrades

SolutionWell, ours

Page 9: OpenStack upgrades

Breaking pointPuppet doesn’t install packages anymore.

It only manages configurations. So operating systems are shipped with all the packages installed.

Page 10: OpenStack upgrades

eDeploy solution• Change the abstraction level• Manage updates using sub-trees• 2 kinds of sub-trees : data and programs• Data is not updated only programs

Example :• Data: /var/lib/mysql, /var/log...• Program : /usr, /lib...

Page 11: OpenStack upgrades

Consequences• Prepare trees before installation or upgrade• Debootstrap/yum + chroot magic

• Install in 3 phases :• Hardware detection• Hardware configuration• Tree copy

• Update :• Rsync Prog sub-trees.• Script to adapt Data and restore config

Page 12: OpenStack upgrades

eDeploy - Overview• Manage system provisioning by software role and

hardware profile• Reproduce provisioning easily• Manage upgrades and rollbacks• Efficient in term of expressiveness and performance

Page 13: OpenStack upgrades

QATesting systems

Page 14: OpenStack upgrades

PrinciplesEverything is versioned:

• Jenkins jobs• Puppet modules/manifests• eDeploy system images• Ansible recipes

Page 15: OpenStack upgrades

This is what we getThe upgrade process becomes:

• Reproducible• Automated• Testable

Page 16: OpenStack upgrades

MethodologyUpgrades with (almost) no downtime

Page 17: OpenStack upgrades

Things that you must consider• Architecture design• MySQL schemas• Do backups!

Page 18: OpenStack upgrades

Configuration management and OrchestrationPuppet is responsible for the configuration of a node:

• Upgrade the configuration files only (no packages upgrades!)• Restart services

Ansible orchestrates the process upgrade.

Page 19: OpenStack upgrades

Components dependency

Page 20: OpenStack upgrades

Base of the process

Page 21: OpenStack upgrades

Database schemaBut what if the database schema needs to be updated?

Just upgrade the database schemas at the end of the orchestration! … Not yet (Icehouse?)

Page 22: OpenStack upgrades

But with DB schema upgrade

Page 23: OpenStack upgrades

Summary• Follow best practices• Architecture matters• Automation is mandatory• Tests, tests, tests