Continuous Delivery
for TYPO3 Developers

TYPO3camp Stuttgart 2017

live slides @ tinyurl.com/t3c-cd

comsolit AG

8 Developers, 1 ScrumMaster, 1 Coach

2 PM, 1 Accountant

www.comsolit.com

Peter Bittner

1 office, 1 terrace, 1 grill, 1 soccer table

plenty of chocolate

Cool Stuff?

We'll talk about daily pain, sorry.

  1. What is CD?
  2. Why do it?
  3. How do it?
  4. Put it into practice

What

Continuous

Delivery?

is

  • (C-level management) hype
  • Replacement for Scrum+Kanban?
  • 1st principle of Agile Manifesto
  • All automatic, just push code!
  • TDD, BDD, Selenium, Docker
  • Deployment button for business

What Is It?

   .

Definition

... a set of practices and principles ...

 

building, testing, and releasing software,

faster and more frequently

... put release schedule in the hands of
the business
- not IT

Text

It's Agile (Ever Since)

Satisfy the customer!

TDD, BDD, Selenium

Tests are fundamental for build pipeline.

  • No automated verification w/o tests
  • No safeguarding against regression
  • No safety net against deployments
    that would take the site down

TDD good practice

BDD helpful for acceptance

Selenium / performance

!! risk !!

Containers (Docker)

Containers make process easier.

  • Feature parity across environments
  • Develop, Staging, Production identical
  • Simplify deployments, no builds on hosts
  • Simplify rollbacks

Optional, but makes it easier

Container images built by pipeline

Push complete system

Why

Continuous

Delivery

after all?

  • On-boarding developers takes days
  • "Works on my machine"
  • Not releasing enough features
  • Only a few can trigger deployment
  • "Never deploy on a Friday!"
  • Move to a different hoster (cloud?)

Does It Solve My Problems?

 The Definition Said

  • Build features faster + more frequently
  • Test changes faster + more frequently
  • Release changes faster + more frequently
  • Everyone (even the client) can release

... and Docker said

  • Environment parity (production = staging = dev machine)

That's the Plan

So, in future, we will:

  1. Clone a repo + run a project locally
  2. Make, test + push changes
  3. Get feedback from build server
  4. Have changes reviewed + released

All in a matter of minutes

No fear to break anything

Happy devs + clients

How

Continuous

Delivery

do

we

make

happen?

  • Version control
  • Feature branching - maybe
  • Code review, PRs / MRs
  • A test runner, task runner
  • Build server, CI server, pipeline
  • Artifact storage, image registry
  • Hosting
  • Monitoring

What Do We Need?

Development Process

Someone needs to ship it.

push code

open PR/MR

approve

build

review

feature

production

system

branch

server

system

What to Look at

Someone needs to maintain it.

  • Infrastructure as code
  • Agent-less deployment
  • Stick to standard procedures +
    popular tools (best practices)
  • Make it work for everyone

*

Self-explanatory procedures

Don't break conventions

Make developers love it!

Build Servers + Registries

Someone needs to build it.

  • Pipeline will build, push and deploy
  • Pick a solution or combo you love to work with (GitHub+Travis+DockerHub, GitLab, ...)
  • Hosted may be cheaper than self-hosted (TCO)
  • Build speed, pleasant UI + workflow may
    pay off more than a smaller price

Docker Hosting

Someone needs to serve it.

  • Decent Docker hosting supports `docker machine` drivers
  • Regular (dedicated) hosting with `docker` and `docker-compose` also works
  • Avoid manual setup (transient servers)

Monitoring

Someone needs to babysit it.

  • Screen resource utilization after deployment
  • Some issues are only discovered in production
  • Capture stack traces, identify bottlenecks
  • Get user feedback, communicate w/ users
  • Collect historical data

Now

Continuous

Delivery

let's

do

with

TYPO3 Choices

  • composer
  • php-cs-fixer, sass-lint, jshint
  • phpunit, typo3_console
  • GitHub+Travis CI / GitLab / Bitbucket

Run project: `docker-compose up`

Clear cache from command line

Run tests: `phpunit` or ???

Don't Create Config Files!

  1. Create a project skeleton (cookiecutter)
  2. Use existing cookiecutters
  3. Contribute to the one you love best!
  4. Do the hard stuff in public (it will pay off)

Run `cookiecutter

gh:painless-software/

painless-continuous-delivery`

Then start working immediately!

Thank you!

www.comsolit.com

for your precious time

Peter Bittner

Continuous Delivery for TYPO3 Developers - TYPO3camp Stuttgart

By Peter Bittner

Continuous Delivery for TYPO3 Developers - TYPO3camp Stuttgart

Continuous Delivery sounds easy in theory, but it’s hard to do in practice. There are myriads of things you can and should do to get your code delivered faster, reliably. We look at what we can do as TYPO3 developers, or as a small or mid-sized team to make the industrialized software development production chain come true.

  • 3,341