Top Banner
01
72

Patterns for Infrastructure-as-Code

Jan 13, 2017

Download

Technology

Aestas IT
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Patterns for Infrastructure-as-Code

01

Page 2: Patterns for Infrastructure-as-Code

About me02

Page 3: Patterns for Infrastructure-as-Code

Andrey AdamovichBio: Developer, coach, speaker, author

Company: Aestas/IT (http://aestasit.com)••

03

Page 4: Patterns for Infrastructure-as-Code

Contact detailsE­mail: [email protected]

Linkedin: http://www.linkedin.com/in/andreyadamovich

Lanyrd: http://lanyrd.com/profile/andrey­adamovich

GitHub: https://github.com/aadamovich

SO: http://stackoverflow.com/users/162792/andrey­adamovich

Twitter: @codingandrey, @aestasit

••••••

04

Page 5: Patterns for Infrastructure-as-Code

What this talkis about?

05

Page 6: Patterns for Infrastructure-as-Code

Well...Collection of patterns (and antipatterns) for

representing your infrastructure­as­code.

Work in progress (never done).

Feedback is more than welcome!

••

06

Page 7: Patterns for Infrastructure-as-Code

Infrastructure­as­codeInfrastructure­as­Code (IaC) is a type of IT infrastructure

that operations teams can automatically manage and provision

through code, rather than using a manual process.

Infrastructure­as­Code is sometimes referred to as programmable

infrastructure.

“07

Page 8: Patterns for Infrastructure-as-Code

Images, declarations, tasks

08

Page 9: Patterns for Infrastructure-as-Code

IaC playersImage defitions

Provisioning declarations

Automation scripts

•••

09

Page 10: Patterns for Infrastructure-as-Code

ToolsImage creation/management: Packer, Docker, AWS AMI/EC2 etc.

State declarations: Puppet, Chef, Ansible etc.

Automation blocks: SSH, API +  <your favorite scripting

language>

•••

10

Page 11: Patterns for Infrastructure-as-Code

Periodic table of DevOps

11

Page 12: Patterns for Infrastructure-as-Code

Everything is code!

12

Page 13: Patterns for Infrastructure-as-Code

Code "deployment" (one click away)

13

Page 14: Patterns for Infrastructure-as-Code

Code "deployment" (one commit away)

14

Page 15: Patterns for Infrastructure-as-Code

Let's seesome

patterns!15

Page 16: Patterns for Infrastructure-as-Code

Antipattern: Golden ImageManually crafted base infrastructure server image that nobody dares

or knows how to change.•

16

Page 17: Patterns for Infrastructure-as-Code

Pattern: Reproducable ImagesOperating system distributions ( *.iso ).

Base provider images.

Packer can create images for many virtualization software and cloud

providers.

Docker can build and package containers as images for distribution.

•••

17

Page 18: Patterns for Infrastructure-as-Code

Pattern: Secret IsolatingEverything is code, but secrets are not!

Secrets should reside in a separate location!

Secrets should be injected on the very last stage of "deploying" your

code.

In this way the actualy code still remains sharable.

•••

18

Page 19: Patterns for Infrastructure-as-Code

Pattern: Ecrypted SecretsShared secrets must be encrypted!

Well, all stored secrets must be encrypted!

Decryption password is shared through a different channel.

•••

19

Page 20: Patterns for Infrastructure-as-Code

Encryption optionsEncrypt hard drives

Encrypt files in version control••

20

Page 21: Patterns for Infrastructure-as-Code

Encryption options: GPGGPG/PGP:

> cd <path‐to‐your‐repo>/

> gpg ‐‐encrypt sensitive_file

> git add sensitive_file

> git commit ‐m 'Add encrypted version of a sensitive file'

•01.

02.

03.

04.

21

Page 22: Patterns for Infrastructure-as-Code

Encryption options: TranscryptOpenSSL + Transcrypt (https://github.com/elasticdog/transcrypt):

> cd <path‐to‐your‐repo>/

> transcrypt

> echo 'sensitive_file  filter=crypt diff=crypt' >> .gitattributes

> git add .gitattributes sensitive_file

> git commit ‐m 'Add encrypted version of a sensitive file'

•01.

02.

03.

04.

05.

22

Page 23: Patterns for Infrastructure-as-Code

Antipattern: Postponing Secret Isolation"It's OK for now" does not really work!

It creates a culture of security being not so important!

It may alienate your Dev and Ops teams, because they can't share

code due to hard­coded secrets!

•••

23

Page 24: Patterns for Infrastructure-as-Code

Pattern: Infrastructure Component DSLNobody knows your domain better than you!

You can write your own DSL or you can leverage existing tools.

The main thing is to group infrastructure configuration into reusable

components.

That's what we do with application code, that's what we should do with

IaC!

•••

24

Page 25: Patterns for Infrastructure-as-Code

Example: pseudo­codesystem1 {

  http_proxy { 

    cache=true

    http_application {

      param1=A

    }

  }

  database {

    memory=3GB

  }

01.

02.

03.

04.

05.

06.

07.

08.

09.

10.25

Page 26: Patterns for Infrastructure-as-Code

DSLBash, Perl, Python, Groovy,... anything works.

Though, Puppet, Chef, Ansible provide facilities to define and group

abstractions.

••

26

Page 27: Patterns for Infrastructure-as-Code

Antipattern: "Fancy­File­Copying"To configure package X, you keep all configuration files it needs within

your "code".

You use provisioning tool abstractions to copy every single file onto

the target system.

27

Page 28: Patterns for Infrastructure-as-Code

Example: nginxnginx.conf

mime.conf

servers.conf

params.conf

nginx.pp | nginx.rb | nginx.yml

•••••

28

Page 29: Patterns for Infrastructure-as-Code

Hiding abstractionsWell, there are much simpler ways to copy files.

You actually hide your intent and the goal of your configuration.

File and package are not always the right abstractions.

•••

29

Page 30: Patterns for Infrastructure-as-Code

Example: nginxUpstream Server

Virtual Host

Static Directory

System Wide Setting

••••

30

Page 31: Patterns for Infrastructure-as-Code

Pattern: Incremental ConfigurationMany packages will already be on the system in their default state.

Instead of duplicating default state in your code, you can only define

an incremental change.

••

31

Page 32: Patterns for Infrastructure-as-Code

ExamplesDisallow root access on the system

Set SELinux into permissive mode

Set default caching timeout in Nginx

•••

32

Page 33: Patterns for Infrastructure-as-Code

Tooling examplesGeneric: sed, perl, regular expressions

Puppet: file_line, augeas

Ansible: lineinfile, replace

Chef: ruby

••••

33

Page 34: Patterns for Infrastructure-as-Code

Pattern: Configuration CompositionCompose your configuration of several template or API call blocks.

Expose abstractions through configuration blocks.••

34

Page 35: Patterns for Infrastructure-as-Code

Tooling examplesPuppet: concat module

Ansible: assemble module

Chef: partials

•••

35

Page 36: Patterns for Infrastructure-as-Code

Pattern: Configuration DiscoveryPart or all of system configuration is distributed through auto­discovery

mechanism.

This cleans your IaC from storing specifics. Define keys instead of

values.

Basically, "convention over configuration" for your cluster.

36

Page 37: Patterns for Infrastructure-as-Code

Tooling examplesEtcd (https://github.com/coreos/etcd)

Eureka (https://github.com/Netflix/eureka)

ZooKeeper (https://zookeeper.apache.org/)

Consul (http://www.consul.io/)

••••

37

Page 38: Patterns for Infrastructure-as-Code

Pattern: Extra­Packaging CodePackage your application in the most approriate format that is ready

for the most hassle­free deployment.

Publish it to artifact repository (Maven, RubyGems, Yum, Apt...).

Artifact repository serves as a layer of isolation between pipelines.

Reduces amount of code needed on later stages of configuration

management.

•••

38

Page 39: Patterns for Infrastructure-as-Code

Application can be packaged differentlyjar|gem|pyc|...

tar.gz|tar.bz2|zip|...

rpm|deb|msi|...

server|container image

1.

2.

3.

4.

39

Page 40: Patterns for Infrastructure-as-Code

Antipattern: Data as CodeData has different lifecycle. It's more dynamic.

Data changes more often than code.

Example 1: use your provisioning tool to define organization users.

Example 2: manifest that lists all your 500 servers.

••••

40

Page 41: Patterns for Infrastructure-as-Code

Pattern: Configuration Data SourceUseful when number of managed items exceeds certain amount.

Data file (Text, Excel, etc.)

Database (PuppetDB etc.)

Service API

••••

41

Page 42: Patterns for Infrastructure-as-Code

Antipattern: Ignoring Styling GuidelinesEach tool/language out there has one.

Nobody canceled clean code teachings.

Reading, writing and eventually merging code is always easier if

people follow the same formatting and styling.

•••

42

Page 43: Patterns for Infrastructure-as-Code

Antipattern: Not Treating IaC as CodeCode must be in Version Control.

Lack of experience with new tool may Code Reviews.

Yes, there are tools for Static Code Analysis even for IaC products.

Unit testing does not make a lot of sense for IaC, but Integration

Testing does.

Applying all the above techniques gives the best QA result for any

code.

••••

43

Page 44: Patterns for Infrastructure-as-Code

Antipattern: DevOoopsSince it's code, then developers can, should and will write it without

involving operations.

DevOps is a brilliant term, since it emphasises that all starts with

developers.

But one should not forget about those guys who actually keep the

systems running.

44

Page 45: Patterns for Infrastructure-as-Code

Late alignment

45

Page 46: Patterns for Infrastructure-as-Code

Pattern: Metrics as CodeMetrics that your application provides evolve with your application.

New components, new endpoints, new KPIs...

Keep monitoring configuration close to the code!

Or make it auto­discoverable and visible!

••••

46

Page 47: Patterns for Infrastructure-as-Code

Configuring and collecting metricsMonitoring software has configuration files and/or an API that can be

programmed.

There a plenty of libraries that allow making monitoring a built­in

feature of your application.

47

Page 48: Patterns for Infrastructure-as-Code

Examples: JavaDropWizard Metrics

Hystrix

StageMonitor

•••

48

Page 49: Patterns for Infrastructure-as-Code

Pattern: Control Panel as CodeRepeatable things live well in scripts.

Scripts can (and will) be well executed by your CI server (or any other

UI you can build around your automation).

Effectively, that server becomes your "control panel".

Keep configuration of your "control panel" in version control.

••

••

49

Page 50: Patterns for Infrastructure-as-Code

Example: JenkinsJenkins API (https://jenkinsapi.readthedocs.org/en/latest/)

Job DSL (https://github.com/jenkinsci/job­dsl­plugin)

Gradle plugin (https://github.com/ghale/gradle­jenkins­plugin)

•••

50

Page 51: Patterns for Infrastructure-as-Code

Example: RunDeckRunDeck API (http://rundeck.org/2.5.3/api/index.html)

RunDeck Command Line (http://rundeck.org/docs/man1/index.html)••

51

Page 52: Patterns for Infrastructure-as-Code

Antipattern: Private Fork of a CommunityModuleThere is a lot of code out there.

Private fork may work as a short­term solution.

Do not keep your updates only to yourself. Share them back.

•••

52

Page 53: Patterns for Infrastructure-as-Code

Pattern: Community Module WrapperIt's better to create a wrapper.

This simplifies upgrades.

And tracebilty.

•••

53

Page 54: Patterns for Infrastructure-as-Code

Antipattern: "Other Stuff"Team members do not fully understand the logic behind code

organization.

They still are eager to contribute, but when they actually do, they break

it.

54

Page 55: Patterns for Infrastructure-as-Code

Example: "Other Stuff"

55

Page 56: Patterns for Infrastructure-as-Code

Example: "Other Stuff"

56

Page 57: Patterns for Infrastructure-as-Code

Example: "Other Stuff"

57

Page 58: Patterns for Infrastructure-as-Code

Pattern: Infrastructure Query LanguageLanguage or API that allows to query your infrastructure state (real

time or last available report).

Examples: AWS EC2 API, PuppetDB, MCollective, Salt

58

Page 59: Patterns for Infrastructure-as-Code

Pattern: Automation over DocumentationIt's quite common that Ops team have been given or have created a

bunch of documents describing procedures for system operations.

Code can do better!

It happens that writing those documents take as much time as writing

and testing code that implement the same guide lines.

Automating procedures can reduce the amount of documentation

needed or eliminate the documentation completely.

••

59

Page 60: Patterns for Infrastructure-as-Code

Pattern: Environment TemplateDefine template from which you can create a fully working

environment.

It gives scaling.

It gives isolation.

It gives flexibilty.

•••

60

Page 61: Patterns for Infrastructure-as-Code

Tooling examplesVagrant

AWS Cloud Formation

Docker and Docker Compose

Kubernetes API

••••

61

Page 62: Patterns for Infrastructure-as-Code

Antipattern: Big Ball of MudWell, it's possible to create mess out of anything.•

62

Page 63: Patterns for Infrastructure-as-Code

Summary of patterns IPattern: Reproducable Images

Pattern: Secret Isolating

Pattern: Ecrypted Secrets

Pattern: Infrastructure Component DSL

Pattern: Incremental Configuration

Pattern: Configuration Composition

Pattern: Configuration Discovery

Pattern: Extra­Packaging Code

••••••••

63

Page 64: Patterns for Infrastructure-as-Code

Summary of patterns IIPattern: Configuration Data Source

Pattern: Metrics as Code

Pattern: Control Panel as Code

Pattern: Community Module Wrapper

Pattern: Infrastructure Query Language

Pattern: Automation over Documentation

Pattern: Environment Template

•••••••

64

Page 65: Patterns for Infrastructure-as-Code

Summary of patterns IIIAntipattern: Golden Image

Antipattern: Postponing Secret Isolation

Antipattern: "Fancy­File­Copying"

Antipattern: Data as Code

Antipattern: Ignoring Styling Guidelines

•••••

65

Page 66: Patterns for Infrastructure-as-Code

Summary of patterns IVAntipattern: Not Treating IaC as Code

Antipattern: DevOoops

Antipattern: Private Fork of a Community Module

Antipattern: "Other Stuff"

Antipattern: Big Ball of Mud

•••••

66

Page 67: Patterns for Infrastructure-as-Code

That's it!67

Page 68: Patterns for Infrastructure-as-Code

Danke schön!68

Page 69: Patterns for Infrastructure-as-Code

Thank you!69

Page 70: Patterns for Infrastructure-as-Code

Questions?70

Page 71: Patterns for Infrastructure-as-Code

Feedback iswelcome!

71

Page 72: Patterns for Infrastructure-as-Code

Share your patterns:Write a blog post!

Share a tweet with @codingandrey or #iacpatterns.

Or just write me to [email protected].

•••

72