SlideShare a Scribd company logo
1
Confidential do not distribute 1
Chris Lavery - Senior Site Reliability Engineer
SRE and GitOps for
Building Robust
Kubernetes Platforms
2
2
Webinar Platform - FAQs
Using Zoom
• You are in listen only mode
• This webinar is being recorded
• Q&A session will follow the presentation, please use the Q&A panel to
submit questions
• Hit escape to exit full screen
• Please introduce yourself in the chat.
Technical Issues - please visit Zoom Help
https://support.zoom.us/hc/en-us/articles/206175806-Top-Questions
3
Weaveworks’ is backed by solid investors
Weaveworks created the GitOps
methodology and tooling to solve our own
Kubernetes management, scalability,
and reliability requirements
Weaveworks is a key partner with all the
major infrastructure and Kubernetes vendors
Weaveworks: the GitOps company
Weaveworks is deeply committed
to the Open Source Community
4
Confidential do not distribute 4
Weaveworks
Site
Reliability
Engineer
Chris Lavery
Belfast, Northern Ireland
Chris Lavery is a Senior Site Reliability Engineer at Weaveworks (currently on secondment to
Deutsche Telekom) where he champions continuous improvement through DevOps/GitOps
practices, collaborating with multiple technical and non-technical stakeholders to achieve
organisational goals effectively.
Chris has experience around high performance computing and modern data center
architectures, familiarity with different use cases and verticals (Telecoms, Fintech, Gaming).
Outside of work Chris enjoys cycling, music and a neverending list of DIY tasks.
https://www.linkedin.com/in/christopherlavery
https://twitter.com/mrchrislavery
github.com/fire-ant
5
Introducing Site Reliability Engineering (SRE)
A (basic) definition:
▪ Operations focused (Production Infrastructure, On-call work)
▪ Often Embedded within Development teams to facilitate
better operational outcomes
▪ Applying Software Engineering Principles to Operational
Problems.
6
Introducing Site Reliability Engineering (SRE)
Why SRE ? What has changed?
▪ DevOps has progressed the culture of collaboration
between development and operations
▪ Cloud computing has standardized/commodified aspects of
software businesses ie. infrastructure as a service
▪ Consumers/End Users have transitioned to digital services
7
Data Driven Decisions
Data Driven Decisions
▪ Modern Distributed Systems have more moving parts
▪ These systems may be a hybrid of managed cloud
resources/services and bespoke custom logic
▪ Modern Application Architectures can also be distributed in
nature
▪ Increasing Cardinality (more things per thing) can provide
better granularity/visibility but at the cost of complexity
8
Data Driven Decisions
Observability:
▪ System/Service Metrics (Infrastructure)
▪ Logging (and Events)
▪ Tracing (and Spans)
APM (Application Performance Monitoring)
9
SLIs and SLOs: Dashboard Gauges, Minimum
Indicators and Penalty points
▪ SLIs - Service Level Indicator
▪ A measurement derived from one or more underlying
metrics to support an SLO
▪ For example: A Yield SLI (fraction of successful requests)
can inform an availability SLA based on an SLO of 97.5%
10
SLIs and SLOs: Dashboard Gauges, Minimum
Indicators and Penalty points
▪ SLOs - Service Level Objective
▪ The defined threshold that a service should ideally operate
above or within as per the terms of an SLA
11
SLIs and SLOs: Dashboard Gauges, Minimum
Indicators and Penalty points
▪ SLAs - Service Level Agreements
▪ An agreement contracted with a customer to set
expectations and convey minimum levels of service
12
SLIs and SLOs: Dashboard Gauges, Minimum
Indicators and Penalty points
▪ Reliable enough, but no more reliable than it needs to be.
▪ Use your error budget wisely.
▪ Use it to take risks.
▪ An error budget is 1 minus the SLO of the service
13
Uptime
Traditional Focus is on Uptime
▪ If you were down for 1 second per day, you would exceed the 5 9’s SLA.
▪ This level of uptime is expensive and not often needed.
▪ Set your uptime to a reasonable level and no better
Uptime Target Yearly allowed downtime
99% 3d 15h 39m 29s
99.9% 8h 45m 56s
99.99% 52m 35s
99.999% 5m 15s
14
Service Levels Summary
Service Level Agreements = Agreement with a
Customer to provide a service or penalties are
applied.
Service Level Objectives = A promise that must
be achieved, e.g. uptime, response time
Service Level Indicators = The metric that
corresponds to meeting an objective, e.g.
measured uptime, latency, error rates etc.
15
DORA: DevOps Research and Assessment
16
DORA: DevOps Research and Assessment
▪ Low Lead Time (minutes > hours > days)
▪ High Deployment Frequency (minutes < hours <
days)
17
DORA: DevOps Research and Assessment
▪ Low Lead Time (minutes > hours > days)
▪ High Deployment Frequency (minutes < hours <
days)
▪ Change failure rate
▪ Time to restore
18
DORA: DevOps Research and Assessment
▪ Lead Time + Deployment Frequency = Throughput
▪ Change failure rate + Time to restore = Stability
19
DORA: DevOps Research and Assessment
20
Confidential do not distribute 20
GitOps SRE
21
Confidential do not distribute 21
The entire
system is
described
declaratively
The canonical
desired system
state is
versioned in git
Software agents
ensure
correctness and
perform actions
on divergence in
a closed loop
The Principles of GitOps
Approved
changes can be
automatically
applied
to the system
Weave GitOps
Continuous delivery and operations for Kubernetes
22
23
Embrace Risk
Traditional systems focus on Availability such as Uptime, but ignores velocity of
deploying new features.
An SRE balances both availability and velocity of features.
So risk is an acceptable part of the system
and should not be avoided,
but it should be managed.
24
Progressive Delivery: Overview
● Progressive delivery is the practice of limiting the
audience for your code changes or new feature
releases
● It is done to restrict the exposure area to a
minimum in case of any risk instances
● Progressive delivery can be implemented
through a number of strategies from A/B testing
to canary, Blue/Green, Rolling/Immutable
upgrades or Feature flag management
● Make Deployments boring!
25
Progressive Delivery: SRE orientation
● Leverage the data emitted from an instrumented
and observable system to reason about whether
to proceed or rollback
● Configure the application infrastructure (service
meshes, key metrics), SLA (overall downtime or
service degradation) and automated operations
(rollback/revert strategy)
● Foster higher collaboration and enables higher
velocity through early feedback and deeper
insight. Transferable approach which can be
standardised with components and configurations
within an organisation
26
Progressive Delivery: Flagger
● Cloud Native Open source Progressive delivery Operator
● Broad support for all popular Service meshes, Ingresses and K8s
Gateway API
● Designed with GitOps Methodologies in mind and a
complementary component to FluxCD
● Commercial UI Integration in Weave GitOps
● Adopters include CNCF projects right through to Enterprise users
27
Progressive Delivery: How it works
28
Progressive Delivery: Monitoring
29
Progressive Delivery: Visualisation
30
Progressive Delivery: Visualisation
31
Progressive Delivery: Visualisation
32
Progressive Delivery: Takeaways
● Progressive delivery is the practice of limiting the audience for your code changes or new
feature releases
● It is done to restrict the exposure area to a minimum in case of any risk instances
● Progressive delivery can be implemented through a number of strategies from A/B testing
to canary, Blue/Green or Feature flag management
33
Progressive Delivery: Business Value
● Deployment Frequency is higher with GitOps & Progressive Delivery
● Lead times are shorter with Progressive Delivery
● Change Failure Rate is lower with Progressive Delivery
● Mean Time to Recovery is shorter with GitOps
34
34
Whitepaper: Progressive Delivery with GitOps
https://bit.ly/3K8oZwU
Learn about Weave GitOps Assured
www.weave.works/product/gitops/
Learn more about Weave GitOps Enterprise
www.weave.works/enterprise and a 5 min demo
https://youtu.be/aqJaHNCz2lM
Request a personal demo
www.weave.works/contact
More information
35
Confidential do not distribute
3
5
You
Thank
Join our Community
https://slack.weave.works
Contact Us
sales@weave.works
Our products & services
www.weave.works
36
Progressive Delivery: Deployment Strategies
Strategy Positive Negative
Rolling Zero Downtime Longer Deployments
Canary Low Risk/Early Feedback Complex Monitoring/Testing
Blue/Green Zero Downtime + Fast
Rollback
Cost (2 active instances)
Feature Flags Controlled Release + test in
Production
Increased complexity in app
management
Immutable Predictable and Simple
process
Increase cost, Data
persistence

More Related Content

PDF
ArgoCD Meetup PPT final.pdf
PDF
GitOps and ArgoCD
PDF
CD using ArgoCD(KnolX).pdf
PPSX
Service Mesh - Observability
PPTX
[2022 DevOpsDays Taipei] 走過 DevOps 風雨的下一步
PDF
Get started with gitops and flux
PDF
Shift Deployment Security Left with Weave GitOps & Upbound’s Universal Crossp...
PPTX
Fundamentals of DevOps and CI/CD
ArgoCD Meetup PPT final.pdf
GitOps and ArgoCD
CD using ArgoCD(KnolX).pdf
Service Mesh - Observability
[2022 DevOpsDays Taipei] 走過 DevOps 風雨的下一步
Get started with gitops and flux
Shift Deployment Security Left with Weave GitOps & Upbound’s Universal Crossp...
Fundamentals of DevOps and CI/CD

What's hot (20)

PPTX
GitOps - Modern best practices for high velocity app dev using cloud native t...
PDF
PFNのML/DL基盤を支えるKubernetesにおける自動化 / DevOpsDays Tokyo 2021
PDF
DevOps Transformation: Learnings and Best Practices
PDF
Gitlab, GitOps & ArgoCD
PDF
Intro to GitOps & Flux.pdf
PDF
Kubernetes networking & Security
PDF
GitOps Testing in Kubernetes with Flux and Testkube.pdf
PPTX
Introduction to DevOps
PDF
忙しい人のための Rocky Linux 入門〜Rocky LinuxはCentOSの後継者たり得るか?〜
PDF
DevOps Implementation Roadmap
PPTX
PDF
GitOps - Operation By Pull Request
PDF
Gitlab ci-cd
PDF
Continuous Lifecycle London 2018 Event Keynote
PDF
速習!論理レプリケーション ~基礎から最新動向まで~(PostgreSQL Conference Japan 2022 発表資料)
PDF
DevOps : mission [im]possible ?
PPTX
Microsoft DevOps Solution - DevOps
PDF
How to Schedule Machine Learning Workloads Nicely In Kubernetes #CNDT2020 / C...
PDF
GitOps: Git come unica fonte di verità per applicazioni e infrastruttura
PDF
Making Cloud Native CI_CD Services.pdf
GitOps - Modern best practices for high velocity app dev using cloud native t...
PFNのML/DL基盤を支えるKubernetesにおける自動化 / DevOpsDays Tokyo 2021
DevOps Transformation: Learnings and Best Practices
Gitlab, GitOps & ArgoCD
Intro to GitOps & Flux.pdf
Kubernetes networking & Security
GitOps Testing in Kubernetes with Flux and Testkube.pdf
Introduction to DevOps
忙しい人のための Rocky Linux 入門〜Rocky LinuxはCentOSの後継者たり得るか?〜
DevOps Implementation Roadmap
GitOps - Operation By Pull Request
Gitlab ci-cd
Continuous Lifecycle London 2018 Event Keynote
速習!論理レプリケーション ~基礎から最新動向まで~(PostgreSQL Conference Japan 2022 発表資料)
DevOps : mission [im]possible ?
Microsoft DevOps Solution - DevOps
How to Schedule Machine Learning Workloads Nicely In Kubernetes #CNDT2020 / C...
GitOps: Git come unica fonte di verità per applicazioni e infrastruttura
Making Cloud Native CI_CD Services.pdf
Ad

Similar to SRE and GitOps for Building Robust Kubernetes Platforms.pdf (20)

PDF
Cloud Native Engineering with SRE and GitOps
PDF
SRE & Kubernetes
PDF
Sre With Java Microservices Patterns For Reliable Microservices In The Enterp...
PDF
PDF GitOps Cookbook (Third Early Release) Natale Vinto download
PDF
Free GitOps Workshop
PDF
Free GitOps Workshop (with Intro to Kubernetes & GitOps)
PDF
What is DevOps? And Why Use DevOps? What?
PDF
How to get started with Site Reliability Engineering
PDF
Site Reliability Engineering slide deck 101
PPTX
SRE (service reliability engineer) on big DevOps platform running on the clou...
PDF
Site-Reliability-Engineering-v2[6241].pdf
PPTX
DevOps & Site Reliability Engineering (SRE).pptx
PPTX
A Blueprint for a Successful DevOps Metamorphosis
PDF
GitOps Cookbook (Third Early Release) Natale Vinto
PPTX
Facilitating DevOps Execution in an All Digital Environment
PPTX
GitOps in a nutshell (Montreal CNCF meetup May 2024)
PPTX
Cloud Native Apps with GitOps
PDF
GitOps, Driving NGN Operations Teams 211127 #kcdgt 2021
PPTX
ADDO_2022_SRE Architectural Patterns_Nov10.pptx
PPTX
ADDO_2022_SRE Architectural Patterns_Nov10.pptx
Cloud Native Engineering with SRE and GitOps
SRE & Kubernetes
Sre With Java Microservices Patterns For Reliable Microservices In The Enterp...
PDF GitOps Cookbook (Third Early Release) Natale Vinto download
Free GitOps Workshop
Free GitOps Workshop (with Intro to Kubernetes & GitOps)
What is DevOps? And Why Use DevOps? What?
How to get started with Site Reliability Engineering
Site Reliability Engineering slide deck 101
SRE (service reliability engineer) on big DevOps platform running on the clou...
Site-Reliability-Engineering-v2[6241].pdf
DevOps & Site Reliability Engineering (SRE).pptx
A Blueprint for a Successful DevOps Metamorphosis
GitOps Cookbook (Third Early Release) Natale Vinto
Facilitating DevOps Execution in an All Digital Environment
GitOps in a nutshell (Montreal CNCF meetup May 2024)
Cloud Native Apps with GitOps
GitOps, Driving NGN Operations Teams 211127 #kcdgt 2021
ADDO_2022_SRE Architectural Patterns_Nov10.pptx
ADDO_2022_SRE Architectural Patterns_Nov10.pptx
Ad

More from Weaveworks (20)

PDF
Weave AI Controllers (Weave GitOps Office Hours)
PDF
Flamingo: Expand ArgoCD with Flux (Office Hours)
PDF
Webinar: Capabilities, Confidence and Community – What Flux GA Means for You
PDF
Six Signs You Need Platform Engineering
PDF
Webinar: End to End Security & Operations with Chainguard and Weave GitOps
PDF
Flux Beyond Git Harnessing the Power of OCI
PDF
Automated Provisioning, Management & Cost Control for Kubernetes Clusters
PDF
How to Avoid Kubernetes Multi-tenancy Catastrophes
PDF
Building internal developer platform with EKS and GitOps
PDF
Intro to GitOps with Weave GitOps, Flagger and Linkerd
PDF
Implementing Flux for Scale with Soft Multi-tenancy
PDF
Accelerating Hybrid Multistage Delivery with Weave GitOps on EKS
PDF
The Story of Flux Reaching Graduation in the CNCF
PDF
Securing Your App Deployments with Tunnels, OIDC, RBAC, and Progressive Deliv...
PDF
Flux’s Security & Scalability with OCI & Helm Slides.pdf
PDF
Flux Security & Scalability using VS Code GitOps Extension
PDF
Deploying Stateful Applications Securely & Confidently with Ondat & Weave GitOps
PDF
Robust Network Security and Observability with GitOps and Cilium
PDF
Simplifying Hybrid Kubernetes with Weaveworks and EKS.pdf
PDF
Weave GitOps 2022.09 Release: A Fast & Reliable Path to Production with Progr...
Weave AI Controllers (Weave GitOps Office Hours)
Flamingo: Expand ArgoCD with Flux (Office Hours)
Webinar: Capabilities, Confidence and Community – What Flux GA Means for You
Six Signs You Need Platform Engineering
Webinar: End to End Security & Operations with Chainguard and Weave GitOps
Flux Beyond Git Harnessing the Power of OCI
Automated Provisioning, Management & Cost Control for Kubernetes Clusters
How to Avoid Kubernetes Multi-tenancy Catastrophes
Building internal developer platform with EKS and GitOps
Intro to GitOps with Weave GitOps, Flagger and Linkerd
Implementing Flux for Scale with Soft Multi-tenancy
Accelerating Hybrid Multistage Delivery with Weave GitOps on EKS
The Story of Flux Reaching Graduation in the CNCF
Securing Your App Deployments with Tunnels, OIDC, RBAC, and Progressive Deliv...
Flux’s Security & Scalability with OCI & Helm Slides.pdf
Flux Security & Scalability using VS Code GitOps Extension
Deploying Stateful Applications Securely & Confidently with Ondat & Weave GitOps
Robust Network Security and Observability with GitOps and Cilium
Simplifying Hybrid Kubernetes with Weaveworks and EKS.pdf
Weave GitOps 2022.09 Release: A Fast & Reliable Path to Production with Progr...

Recently uploaded (20)

PPTX
Operating system designcfffgfgggggggvggggggggg
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PDF
Understanding Forklifts - TECH EHS Solution
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PPTX
Reimagine Home Health with the Power of Agentic AI​
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PPTX
Essential Infomation Tech presentation.pptx
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PPTX
Odoo POS Development Services by CandidRoot Solutions
PDF
Digital Strategies for Manufacturing Companies
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PPTX
Introduction to Artificial Intelligence
Operating system designcfffgfgggggggvggggggggg
Navsoft: AI-Powered Business Solutions & Custom Software Development
Understanding Forklifts - TECH EHS Solution
VVF-Customer-Presentation2025-Ver1.9.pptx
Reimagine Home Health with the Power of Agentic AI​
Upgrade and Innovation Strategies for SAP ERP Customers
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
Adobe Illustrator 28.6 Crack My Vision of Vector Design
Essential Infomation Tech presentation.pptx
How to Migrate SBCGlobal Email to Yahoo Easily
Which alternative to Crystal Reports is best for small or large businesses.pdf
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Odoo POS Development Services by CandidRoot Solutions
Digital Strategies for Manufacturing Companies
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
Introduction to Artificial Intelligence

SRE and GitOps for Building Robust Kubernetes Platforms.pdf

  • 1. 1 Confidential do not distribute 1 Chris Lavery - Senior Site Reliability Engineer SRE and GitOps for Building Robust Kubernetes Platforms
  • 2. 2 2 Webinar Platform - FAQs Using Zoom • You are in listen only mode • This webinar is being recorded • Q&A session will follow the presentation, please use the Q&A panel to submit questions • Hit escape to exit full screen • Please introduce yourself in the chat. Technical Issues - please visit Zoom Help https://support.zoom.us/hc/en-us/articles/206175806-Top-Questions
  • 3. 3 Weaveworks’ is backed by solid investors Weaveworks created the GitOps methodology and tooling to solve our own Kubernetes management, scalability, and reliability requirements Weaveworks is a key partner with all the major infrastructure and Kubernetes vendors Weaveworks: the GitOps company Weaveworks is deeply committed to the Open Source Community
  • 4. 4 Confidential do not distribute 4 Weaveworks Site Reliability Engineer Chris Lavery Belfast, Northern Ireland Chris Lavery is a Senior Site Reliability Engineer at Weaveworks (currently on secondment to Deutsche Telekom) where he champions continuous improvement through DevOps/GitOps practices, collaborating with multiple technical and non-technical stakeholders to achieve organisational goals effectively. Chris has experience around high performance computing and modern data center architectures, familiarity with different use cases and verticals (Telecoms, Fintech, Gaming). Outside of work Chris enjoys cycling, music and a neverending list of DIY tasks. https://www.linkedin.com/in/christopherlavery https://twitter.com/mrchrislavery github.com/fire-ant
  • 5. 5 Introducing Site Reliability Engineering (SRE) A (basic) definition: ▪ Operations focused (Production Infrastructure, On-call work) ▪ Often Embedded within Development teams to facilitate better operational outcomes ▪ Applying Software Engineering Principles to Operational Problems.
  • 6. 6 Introducing Site Reliability Engineering (SRE) Why SRE ? What has changed? ▪ DevOps has progressed the culture of collaboration between development and operations ▪ Cloud computing has standardized/commodified aspects of software businesses ie. infrastructure as a service ▪ Consumers/End Users have transitioned to digital services
  • 7. 7 Data Driven Decisions Data Driven Decisions ▪ Modern Distributed Systems have more moving parts ▪ These systems may be a hybrid of managed cloud resources/services and bespoke custom logic ▪ Modern Application Architectures can also be distributed in nature ▪ Increasing Cardinality (more things per thing) can provide better granularity/visibility but at the cost of complexity
  • 8. 8 Data Driven Decisions Observability: ▪ System/Service Metrics (Infrastructure) ▪ Logging (and Events) ▪ Tracing (and Spans) APM (Application Performance Monitoring)
  • 9. 9 SLIs and SLOs: Dashboard Gauges, Minimum Indicators and Penalty points ▪ SLIs - Service Level Indicator ▪ A measurement derived from one or more underlying metrics to support an SLO ▪ For example: A Yield SLI (fraction of successful requests) can inform an availability SLA based on an SLO of 97.5%
  • 10. 10 SLIs and SLOs: Dashboard Gauges, Minimum Indicators and Penalty points ▪ SLOs - Service Level Objective ▪ The defined threshold that a service should ideally operate above or within as per the terms of an SLA
  • 11. 11 SLIs and SLOs: Dashboard Gauges, Minimum Indicators and Penalty points ▪ SLAs - Service Level Agreements ▪ An agreement contracted with a customer to set expectations and convey minimum levels of service
  • 12. 12 SLIs and SLOs: Dashboard Gauges, Minimum Indicators and Penalty points ▪ Reliable enough, but no more reliable than it needs to be. ▪ Use your error budget wisely. ▪ Use it to take risks. ▪ An error budget is 1 minus the SLO of the service
  • 13. 13 Uptime Traditional Focus is on Uptime ▪ If you were down for 1 second per day, you would exceed the 5 9’s SLA. ▪ This level of uptime is expensive and not often needed. ▪ Set your uptime to a reasonable level and no better Uptime Target Yearly allowed downtime 99% 3d 15h 39m 29s 99.9% 8h 45m 56s 99.99% 52m 35s 99.999% 5m 15s
  • 14. 14 Service Levels Summary Service Level Agreements = Agreement with a Customer to provide a service or penalties are applied. Service Level Objectives = A promise that must be achieved, e.g. uptime, response time Service Level Indicators = The metric that corresponds to meeting an objective, e.g. measured uptime, latency, error rates etc.
  • 15. 15 DORA: DevOps Research and Assessment
  • 16. 16 DORA: DevOps Research and Assessment ▪ Low Lead Time (minutes > hours > days) ▪ High Deployment Frequency (minutes < hours < days)
  • 17. 17 DORA: DevOps Research and Assessment ▪ Low Lead Time (minutes > hours > days) ▪ High Deployment Frequency (minutes < hours < days) ▪ Change failure rate ▪ Time to restore
  • 18. 18 DORA: DevOps Research and Assessment ▪ Lead Time + Deployment Frequency = Throughput ▪ Change failure rate + Time to restore = Stability
  • 19. 19 DORA: DevOps Research and Assessment
  • 20. 20 Confidential do not distribute 20 GitOps SRE
  • 21. 21 Confidential do not distribute 21 The entire system is described declaratively The canonical desired system state is versioned in git Software agents ensure correctness and perform actions on divergence in a closed loop The Principles of GitOps Approved changes can be automatically applied to the system
  • 22. Weave GitOps Continuous delivery and operations for Kubernetes 22
  • 23. 23 Embrace Risk Traditional systems focus on Availability such as Uptime, but ignores velocity of deploying new features. An SRE balances both availability and velocity of features. So risk is an acceptable part of the system and should not be avoided, but it should be managed.
  • 24. 24 Progressive Delivery: Overview ● Progressive delivery is the practice of limiting the audience for your code changes or new feature releases ● It is done to restrict the exposure area to a minimum in case of any risk instances ● Progressive delivery can be implemented through a number of strategies from A/B testing to canary, Blue/Green, Rolling/Immutable upgrades or Feature flag management ● Make Deployments boring!
  • 25. 25 Progressive Delivery: SRE orientation ● Leverage the data emitted from an instrumented and observable system to reason about whether to proceed or rollback ● Configure the application infrastructure (service meshes, key metrics), SLA (overall downtime or service degradation) and automated operations (rollback/revert strategy) ● Foster higher collaboration and enables higher velocity through early feedback and deeper insight. Transferable approach which can be standardised with components and configurations within an organisation
  • 26. 26 Progressive Delivery: Flagger ● Cloud Native Open source Progressive delivery Operator ● Broad support for all popular Service meshes, Ingresses and K8s Gateway API ● Designed with GitOps Methodologies in mind and a complementary component to FluxCD ● Commercial UI Integration in Weave GitOps ● Adopters include CNCF projects right through to Enterprise users
  • 32. 32 Progressive Delivery: Takeaways ● Progressive delivery is the practice of limiting the audience for your code changes or new feature releases ● It is done to restrict the exposure area to a minimum in case of any risk instances ● Progressive delivery can be implemented through a number of strategies from A/B testing to canary, Blue/Green or Feature flag management
  • 33. 33 Progressive Delivery: Business Value ● Deployment Frequency is higher with GitOps & Progressive Delivery ● Lead times are shorter with Progressive Delivery ● Change Failure Rate is lower with Progressive Delivery ● Mean Time to Recovery is shorter with GitOps
  • 34. 34 34 Whitepaper: Progressive Delivery with GitOps https://bit.ly/3K8oZwU Learn about Weave GitOps Assured www.weave.works/product/gitops/ Learn more about Weave GitOps Enterprise www.weave.works/enterprise and a 5 min demo https://youtu.be/aqJaHNCz2lM Request a personal demo www.weave.works/contact More information
  • 35. 35 Confidential do not distribute 3 5 You Thank Join our Community https://slack.weave.works Contact Us [email protected] Our products & services www.weave.works
  • 36. 36 Progressive Delivery: Deployment Strategies Strategy Positive Negative Rolling Zero Downtime Longer Deployments Canary Low Risk/Early Feedback Complex Monitoring/Testing Blue/Green Zero Downtime + Fast Rollback Cost (2 active instances) Feature Flags Controlled Release + test in Production Increased complexity in app management Immutable Predictable and Simple process Increase cost, Data persistence