SlideShare a Scribd company logo
1 of 48
Download to read offline
DevSecOps in the Real
World: Best Practices
for CI/CD and
Microservices
Hendri Karisma
Hello!
my name is Hendri Karisma
● Technical Lead
● Working on platform system
● Before working for AI and DevEx
Micro-services
an architectural style that structures an application as a collection of
services
● Highly maintainable and testable
● Loosely coupled
● Independently deployable
● Organized around business capabilities
● Owned by a small team
Monolith vs Microservices?
Monolith Architecture Microservices Architecture
Why microservices?
Wish our system could :
● Small so more modular, tackles the complexity issue. Lightweight
● Reusability
● Reliable
● Each service independent :
○ loosely coupled
○ Scalability
Challenge microservices?
● Communication : Latency and complexity
● Database: each services have their own
database, transaction
● Testing: Integration testing
● Changes: could impact multiple services
● Deployment: machines x services,
configuration, secrets management,
monitoring
Communication
Communication
Orchestration
Entails actively controlling all elements and interactions like a
conductor directs the musicians of an orchestra
One service controller handles all communications between
microservices, and directs each service to perform the intended
function.
Disadvantage :
● the controller needs to directly communicate with each service and
wait for each service’s response
● impacted by downstream network and service availability (latency)
● More tight coupling then we could say it’s a distributed monolithic.
Choreography
Asynchronous process: Each service works independently and
consumes the data that relates to it to perform its task.
● Event Driven Architecture
● Decouples client from the service
● Message Buffering
● Flexible style
Tech: RabbitMQ, Apache Kafka, ActiveMQ, etc
Event Driven #1
Event Driven #2 (communications)
Event Driven (Data Aggregation)
Event Driven (Data Logging)
Sample App Architecture
1
App / Service
Database
Message Queue
RESTful /
Request
Push to
message
queue
Other systems
Data
9
Seach Engine
Data
Other systems
Data
Configuration
Configuration #2
Configuration #3
Secrets
Deployment
● Classic : on top Bare metal server or VM
● Using Virtual machine for each instance (app node)
● Using Container and Container Orchrestation
Deployment #1
Deployment #2
Deployment #3
DevOps
DevOps is the combination of cultural philosophies,
practices, and tools that increases an organization's
ability to deliver applications and services at high
velocity: evolving and improving products at a faster
pace than organizations using traditional software
development and infrastructure management
processes.
DevSecOps
Now, in the collaborative framework of DevOps, security is a
shared responsibility integrated from end to end.
The term "DevSecOps" to emphasize the need to build a
security foundation into DevOps initiatives.
It also means automating some security gates to keep the
DevOps workflow from slowing down.
Tech to Support DevSecOps
● Automation Server: Jenkins, Bamboo, Github Action, travis, circleci, ansible, etc
● Infrastructure as code / CLI: AWS SDK, GCP SDK, terraform, chef, etc
● Registry/Repository : docker hub, helm, GCR, etc
● Security scanner : Sonarqube, trivy, etc
● Container Orchestration: Kubernetes, Docker swarm
● Configuration & Secret : vault & consul
● Code Repository: bitbucket, github, gitlab, etc
Jenkins
An open source extensible automation server. It helps
automate the parts of software development related
to building, testing, and deploying, facilitating
continuous integration and continuous delivery.
Docker
an open source containerization platform. It enables
developers to package applications into
containers—standardized executable components
combining application source code with the operating
system (OS) libraries and dependencies required to
run that code in any environment.
Kubernetes
Kubernetes is an open-source container orchestration system for
automating software deployment, scaling, and management. Google
originally designed Kubernetes, but the Cloud Native Computing
Foundation now maintains the project.
also known as K8s. K8s could automate the deployment, scaling,
and management of containerized applications.
Kubernetes
Kubernetes
● helps you manage Kubernetes applications — Helm Charts help you
define, install, and upgrade even the most complex Kubernetes
application.
● Helm Charts are simply Kubernetes YAML manifests combined
into a single package that can be advertised to your Kubernetes
clusters. Once packaged, installing a Helm Chart into your cluster is
as easy as running a single helm install, which really simplifies the
deployment of containerized applications.
Helm and Helm Chart
Helm
Sonarqube
SonarQube is a Code Quality Assurance tool that collects and
analyzes source code, and provides reports for the code
quality of your project. It combines static and dynamic
analysis tools and enables quality to be measured continually
over time.
Sonarqube
SonarQube is a Code Quality Assurance tool that collects and
analyzes source code, and provides reports for the code
quality of your project. It combines static and dynamic
analysis tools and enables quality to be measured continually
over time.
Trivy
● Trivy (tri pronounced like trigger, vy pronounced like envy) is a simple and
comprehensive scanner for vulnerabilities in container images, file systems, and Git
repositories, as well as for configuration issues.
● Trivy detects vulnerabilities of OS packages (Alpine, RHEL, CentOS, etc.) and
language-specific packages (Bundler, Composer, npm, yarn, etc.).
● In addition, Trivy scans Infrastructure as Code (IaC) files such as Terraform, Dockerfile
and Kubernetes, to detect potential configuration issues that expose your deployments
to the risk of attack.
● https://aquasecurity.github.io/trivy/v0.21.3/
Artifact and Image Repository
● For App Artifact could use Jfrog Artifactory,
Nexus, devpi for python, etc
● Docker Image (registry) : GCR, ECR, GCR
Continuous Integration Part
Pipeline CI/CD
Checkout and
Preparation
Build Project
Testing and
Scanning Code
& Secure Code
Build Snapshot/
Release version
Send to
Artifactory
Post Stage
Send data to
data pool
Continuous Deployment Part
Scanning
Security for
Image
Create Docker
Image
Checkout and
Preparation
Update Param Create Chart Update Helm
Create Repository for Images
● Base Image for Build
● Base Image for Development
● Default base image
● Jenkins pipeline
● Create standard for the project structure
APM (Application Performance Management
● the monitoring and management of performance
and availability of software applications. APM
strives to detect and diagnose complex application
performance problems to maintain an expected
level of service.
● Tools: DataDog, New Relic, Splunk, ELK Stack
(Elasticsearch Logstash Kibana), Grafana,
Promotheus
ELK Stack #1
ELK Stack #2
ELK Stack #3
Kubernetes Dashboard
Kubernetes Dashboard
App Tech Stack
● Programming Language: java, kotlin, python, golang, php
● Database: mysql, postgre, sql server, mongodb, redis, etc
● Search engine: elasticsearch, solr
● Messaging app: RabbitMQ, Kafka
CI Pipeline
DevSecOps Tech Stack
CD Pipeline
Checkout Build
Test &
Analysis
Push To
Artifactory
Push to
Image
Registry
Pull
Image
Update
Config
Helm
upgrade
Build
Image &
Scan
Git Repo
Scan Code
coverage and
secure code
Scan
Docker
Image
Save app artifact
Live on to K8s
Save the image
Optional, pick 1
THANK YOU

More Related Content

What's hot

What's hot (20)

DevSecOps 101
DevSecOps 101DevSecOps 101
DevSecOps 101
 
Implementing DevSecOps
Implementing DevSecOpsImplementing DevSecOps
Implementing DevSecOps
 
Introduction to DevSecOps
Introduction to DevSecOpsIntroduction to DevSecOps
Introduction to DevSecOps
 
DevSecOps and the CI/CD Pipeline
 DevSecOps and the CI/CD Pipeline DevSecOps and the CI/CD Pipeline
DevSecOps and the CI/CD Pipeline
 
DevSecOps Basics with Azure Pipelines
DevSecOps Basics with Azure Pipelines DevSecOps Basics with Azure Pipelines
DevSecOps Basics with Azure Pipelines
 
GitOps with ArgoCD
GitOps with ArgoCDGitOps with ArgoCD
GitOps with ArgoCD
 
DevSecOps Implementation Journey
DevSecOps Implementation JourneyDevSecOps Implementation Journey
DevSecOps Implementation Journey
 
DEVSECOPS: Coding DevSecOps journey
DEVSECOPS: Coding DevSecOps journeyDEVSECOPS: Coding DevSecOps journey
DEVSECOPS: Coding DevSecOps journey
 
DevSecOps reference architectures 2018
DevSecOps reference architectures 2018DevSecOps reference architectures 2018
DevSecOps reference architectures 2018
 
DevSecOps What Why and How
DevSecOps What Why and HowDevSecOps What Why and How
DevSecOps What Why and How
 
Practical DevSecOps - Arief Karfianto
Practical DevSecOps - Arief KarfiantoPractical DevSecOps - Arief Karfianto
Practical DevSecOps - Arief Karfianto
 
DevOps to DevSecOps Journey..
DevOps to DevSecOps Journey..DevOps to DevSecOps Journey..
DevOps to DevSecOps Journey..
 
DevSecOps
DevSecOpsDevSecOps
DevSecOps
 
DevSecops: Defined, tools, characteristics, tools, frameworks, benefits and c...
DevSecops: Defined, tools, characteristics, tools, frameworks, benefits and c...DevSecops: Defined, tools, characteristics, tools, frameworks, benefits and c...
DevSecops: Defined, tools, characteristics, tools, frameworks, benefits and c...
 
Security Process in DevSecOps
Security Process in DevSecOpsSecurity Process in DevSecOps
Security Process in DevSecOps
 
DevSecOps: Key Controls for Modern Security Success
DevSecOps: Key Controls for Modern Security SuccessDevSecOps: Key Controls for Modern Security Success
DevSecOps: Key Controls for Modern Security Success
 
DevSecOps
DevSecOpsDevSecOps
DevSecOps
 
Introduction to DevSecOps
Introduction to DevSecOpsIntroduction to DevSecOps
Introduction to DevSecOps
 
DevSecOps Jenkins Pipeline -Security
DevSecOps Jenkins Pipeline -SecurityDevSecOps Jenkins Pipeline -Security
DevSecOps Jenkins Pipeline -Security
 
CI:CD in Lightspeed with kubernetes and argo cd
CI:CD in Lightspeed with kubernetes and argo cdCI:CD in Lightspeed with kubernetes and argo cd
CI:CD in Lightspeed with kubernetes and argo cd
 

Similar to Slide DevSecOps Microservices

Kubernetes: від знайомства до використання у CI/CD
Kubernetes: від знайомства до використання у CI/CDKubernetes: від знайомства до використання у CI/CD
Kubernetes: від знайомства до використання у CI/CD
Stfalcon Meetups
 

Similar to Slide DevSecOps Microservices (20)

DEVNET-1169 CI/CT/CD on a Micro Services Applications using Docker, Salt & Ni...
DEVNET-1169	CI/CT/CD on a Micro Services Applications using Docker, Salt & Ni...DEVNET-1169	CI/CT/CD on a Micro Services Applications using Docker, Salt & Ni...
DEVNET-1169 CI/CT/CD on a Micro Services Applications using Docker, Salt & Ni...
 
Introduction to containers, k8s, Microservices & Cloud Native
Introduction to containers, k8s, Microservices & Cloud NativeIntroduction to containers, k8s, Microservices & Cloud Native
Introduction to containers, k8s, Microservices & Cloud Native
 
Episode 1: Building Kubernetes-as-a-Service
Episode 1: Building Kubernetes-as-a-ServiceEpisode 1: Building Kubernetes-as-a-Service
Episode 1: Building Kubernetes-as-a-Service
 
Docker Application to Scientific Computing
Docker Application to Scientific ComputingDocker Application to Scientific Computing
Docker Application to Scientific Computing
 
Pivotal Container Service (PKS) at SF Cloud Foundry Meetup
Pivotal Container Service (PKS) at SF Cloud Foundry MeetupPivotal Container Service (PKS) at SF Cloud Foundry Meetup
Pivotal Container Service (PKS) at SF Cloud Foundry Meetup
 
The DevOps paradigm - the evolution of IT professionals and opensource toolkit
The DevOps paradigm - the evolution of IT professionals and opensource toolkitThe DevOps paradigm - the evolution of IT professionals and opensource toolkit
The DevOps paradigm - the evolution of IT professionals and opensource toolkit
 
The DevOps Paradigm
The DevOps ParadigmThe DevOps Paradigm
The DevOps Paradigm
 
CNCF Introduction - Feb 2018
CNCF Introduction - Feb 2018CNCF Introduction - Feb 2018
CNCF Introduction - Feb 2018
 
DevOps and BigData Analytics
DevOps and BigData Analytics DevOps and BigData Analytics
DevOps and BigData Analytics
 
8 - OpenShift - A look at a container platform: what's in the box
8 - OpenShift - A look at a container platform: what's in the box8 - OpenShift - A look at a container platform: what's in the box
8 - OpenShift - A look at a container platform: what's in the box
 
Microsoft Ignite 2018 BRK3192 Container DevOps on Azure
Microsoft Ignite 2018 BRK3192 Container DevOps on AzureMicrosoft Ignite 2018 BRK3192 Container DevOps on Azure
Microsoft Ignite 2018 BRK3192 Container DevOps on Azure
 
DevOps Days Boston 2017: Developer first workflows for Kubernetes
DevOps Days Boston 2017: Developer first workflows for KubernetesDevOps Days Boston 2017: Developer first workflows for Kubernetes
DevOps Days Boston 2017: Developer first workflows for Kubernetes
 
What is Docker?
What is Docker?What is Docker?
What is Docker?
 
Open shift and docker - october,2014
Open shift and docker - october,2014Open shift and docker - october,2014
Open shift and docker - october,2014
 
Cont0519
Cont0519Cont0519
Cont0519
 
Docker Birthday #5 Meetup Cluj - Presentation
Docker Birthday #5 Meetup Cluj - PresentationDocker Birthday #5 Meetup Cluj - Presentation
Docker Birthday #5 Meetup Cluj - Presentation
 
KubernetesPPT.pptx
KubernetesPPT.pptxKubernetesPPT.pptx
KubernetesPPT.pptx
 
Kubernetes: від знайомства до використання у CI/CD
Kubernetes: від знайомства до використання у CI/CDKubernetes: від знайомства до використання у CI/CD
Kubernetes: від знайомства до використання у CI/CD
 
DevOps with Azure, Kubernetes, and Helm Webinar
DevOps with Azure, Kubernetes, and Helm WebinarDevOps with Azure, Kubernetes, and Helm Webinar
DevOps with Azure, Kubernetes, and Helm Webinar
 
Containers: DevOp Enablers of Technical Solutions
Containers: DevOp Enablers of Technical SolutionsContainers: DevOp Enablers of Technical Solutions
Containers: DevOp Enablers of Technical Solutions
 

More from Hendri Karisma

More from Hendri Karisma (19)

Data - Science and Engineering slide at Bandungpy Sharing Session
Data - Science and Engineering slide at Bandungpy Sharing SessionData - Science and Engineering slide at Bandungpy Sharing Session
Data - Science and Engineering slide at Bandungpy Sharing Session
 
ML Abstraciton for Keras to Serve Several Cases
ML Abstraciton for Keras to Serve Several CasesML Abstraciton for Keras to Serve Several Cases
ML Abstraciton for Keras to Serve Several Cases
 
Data Analytics Today - Data, Tech, and Regulation.pdf
Data Analytics Today - Data, Tech, and Regulation.pdfData Analytics Today - Data, Tech, and Regulation.pdf
Data Analytics Today - Data, Tech, and Regulation.pdf
 
Python 101 - Indonesia AI Society.pdf
Python 101 - Indonesia AI Society.pdfPython 101 - Indonesia AI Society.pdf
Python 101 - Indonesia AI Society.pdf
 
Machine Learning: an Introduction and cases
Machine Learning: an Introduction and casesMachine Learning: an Introduction and cases
Machine Learning: an Introduction and cases
 
Python, Data science, and Unsupervised learning
Python, Data science, and Unsupervised learningPython, Data science, and Unsupervised learning
Python, Data science, and Unsupervised learning
 
Machine Learning Research in blibli
Machine Learning Research in blibliMachine Learning Research in blibli
Machine Learning Research in blibli
 
Comparison Study of Neural Network and Deep Neural Network on Repricing GAP P...
Comparison Study of Neural Network and Deep Neural Network on Repricing GAP P...Comparison Study of Neural Network and Deep Neural Network on Repricing GAP P...
Comparison Study of Neural Network and Deep Neural Network on Repricing GAP P...
 
Fraud Detection System using Deep Neural Networks
Fraud Detection System using Deep Neural NetworksFraud Detection System using Deep Neural Networks
Fraud Detection System using Deep Neural Networks
 
Artificial Intelligence and The Complexity
Artificial Intelligence and The ComplexityArtificial Intelligence and The Complexity
Artificial Intelligence and The Complexity
 
Software Engineering: Today in The Betlefield
Software Engineering: Today in The BetlefieldSoftware Engineering: Today in The Betlefield
Software Engineering: Today in The Betlefield
 
Introduction to Topological Data Analysis
Introduction to Topological Data AnalysisIntroduction to Topological Data Analysis
Introduction to Topological Data Analysis
 
Sharing-akka-pub
Sharing-akka-pubSharing-akka-pub
Sharing-akka-pub
 
Presentasi cca it now and tomorow
Presentasi cca it now and tomorowPresentasi cca it now and tomorow
Presentasi cca it now and tomorow
 
Bayes Belief Network
Bayes Belief NetworkBayes Belief Network
Bayes Belief Network
 
Slide Presentasi EM Algorithm (Play Tennis & Brain Tissue Segmentation)
Slide Presentasi EM Algorithm (Play Tennis & Brain Tissue Segmentation)Slide Presentasi EM Algorithm (Play Tennis & Brain Tissue Segmentation)
Slide Presentasi EM Algorithm (Play Tennis & Brain Tissue Segmentation)
 
Slide Presentasi Kelompok E bagian Sistem Rekognisi
Slide Presentasi Kelompok E bagian Sistem RekognisiSlide Presentasi Kelompok E bagian Sistem Rekognisi
Slide Presentasi Kelompok E bagian Sistem Rekognisi
 
Slide Presentasi Kelompok Keilmuan E
Slide Presentasi Kelompok Keilmuan ESlide Presentasi Kelompok Keilmuan E
Slide Presentasi Kelompok Keilmuan E
 
Slide Seminar Open Source (CodeLabs UNIKOM Bandung)
Slide Seminar Open Source (CodeLabs UNIKOM Bandung)Slide Seminar Open Source (CodeLabs UNIKOM Bandung)
Slide Seminar Open Source (CodeLabs UNIKOM Bandung)
 

Recently uploaded

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Recently uploaded (20)

A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 

Slide DevSecOps Microservices

  • 1. DevSecOps in the Real World: Best Practices for CI/CD and Microservices Hendri Karisma
  • 2. Hello! my name is Hendri Karisma ● Technical Lead ● Working on platform system ● Before working for AI and DevEx
  • 3. Micro-services an architectural style that structures an application as a collection of services ● Highly maintainable and testable ● Loosely coupled ● Independently deployable ● Organized around business capabilities ● Owned by a small team
  • 4. Monolith vs Microservices? Monolith Architecture Microservices Architecture
  • 5. Why microservices? Wish our system could : ● Small so more modular, tackles the complexity issue. Lightweight ● Reusability ● Reliable ● Each service independent : ○ loosely coupled ○ Scalability
  • 6. Challenge microservices? ● Communication : Latency and complexity ● Database: each services have their own database, transaction ● Testing: Integration testing ● Changes: could impact multiple services ● Deployment: machines x services, configuration, secrets management, monitoring
  • 9. Orchestration Entails actively controlling all elements and interactions like a conductor directs the musicians of an orchestra One service controller handles all communications between microservices, and directs each service to perform the intended function. Disadvantage : ● the controller needs to directly communicate with each service and wait for each service’s response ● impacted by downstream network and service availability (latency) ● More tight coupling then we could say it’s a distributed monolithic.
  • 10. Choreography Asynchronous process: Each service works independently and consumes the data that relates to it to perform its task. ● Event Driven Architecture ● Decouples client from the service ● Message Buffering ● Flexible style Tech: RabbitMQ, Apache Kafka, ActiveMQ, etc
  • 12. Event Driven #2 (communications)
  • 13. Event Driven (Data Aggregation)
  • 14. Event Driven (Data Logging)
  • 15. Sample App Architecture 1 App / Service Database Message Queue RESTful / Request Push to message queue Other systems Data 9 Seach Engine Data Other systems Data
  • 20. Deployment ● Classic : on top Bare metal server or VM ● Using Virtual machine for each instance (app node) ● Using Container and Container Orchrestation
  • 24. DevOps DevOps is the combination of cultural philosophies, practices, and tools that increases an organization's ability to deliver applications and services at high velocity: evolving and improving products at a faster pace than organizations using traditional software development and infrastructure management processes.
  • 25. DevSecOps Now, in the collaborative framework of DevOps, security is a shared responsibility integrated from end to end. The term "DevSecOps" to emphasize the need to build a security foundation into DevOps initiatives. It also means automating some security gates to keep the DevOps workflow from slowing down.
  • 26. Tech to Support DevSecOps ● Automation Server: Jenkins, Bamboo, Github Action, travis, circleci, ansible, etc ● Infrastructure as code / CLI: AWS SDK, GCP SDK, terraform, chef, etc ● Registry/Repository : docker hub, helm, GCR, etc ● Security scanner : Sonarqube, trivy, etc ● Container Orchestration: Kubernetes, Docker swarm ● Configuration & Secret : vault & consul ● Code Repository: bitbucket, github, gitlab, etc
  • 27. Jenkins An open source extensible automation server. It helps automate the parts of software development related to building, testing, and deploying, facilitating continuous integration and continuous delivery.
  • 28. Docker an open source containerization platform. It enables developers to package applications into containers—standardized executable components combining application source code with the operating system (OS) libraries and dependencies required to run that code in any environment.
  • 29. Kubernetes Kubernetes is an open-source container orchestration system for automating software deployment, scaling, and management. Google originally designed Kubernetes, but the Cloud Native Computing Foundation now maintains the project. also known as K8s. K8s could automate the deployment, scaling, and management of containerized applications.
  • 32. ● helps you manage Kubernetes applications — Helm Charts help you define, install, and upgrade even the most complex Kubernetes application. ● Helm Charts are simply Kubernetes YAML manifests combined into a single package that can be advertised to your Kubernetes clusters. Once packaged, installing a Helm Chart into your cluster is as easy as running a single helm install, which really simplifies the deployment of containerized applications. Helm and Helm Chart
  • 33. Helm
  • 34. Sonarqube SonarQube is a Code Quality Assurance tool that collects and analyzes source code, and provides reports for the code quality of your project. It combines static and dynamic analysis tools and enables quality to be measured continually over time.
  • 35. Sonarqube SonarQube is a Code Quality Assurance tool that collects and analyzes source code, and provides reports for the code quality of your project. It combines static and dynamic analysis tools and enables quality to be measured continually over time.
  • 36. Trivy ● Trivy (tri pronounced like trigger, vy pronounced like envy) is a simple and comprehensive scanner for vulnerabilities in container images, file systems, and Git repositories, as well as for configuration issues. ● Trivy detects vulnerabilities of OS packages (Alpine, RHEL, CentOS, etc.) and language-specific packages (Bundler, Composer, npm, yarn, etc.). ● In addition, Trivy scans Infrastructure as Code (IaC) files such as Terraform, Dockerfile and Kubernetes, to detect potential configuration issues that expose your deployments to the risk of attack. ● https://aquasecurity.github.io/trivy/v0.21.3/
  • 37. Artifact and Image Repository ● For App Artifact could use Jfrog Artifactory, Nexus, devpi for python, etc ● Docker Image (registry) : GCR, ECR, GCR
  • 38. Continuous Integration Part Pipeline CI/CD Checkout and Preparation Build Project Testing and Scanning Code & Secure Code Build Snapshot/ Release version Send to Artifactory Post Stage Send data to data pool Continuous Deployment Part Scanning Security for Image Create Docker Image Checkout and Preparation Update Param Create Chart Update Helm
  • 39. Create Repository for Images ● Base Image for Build ● Base Image for Development ● Default base image ● Jenkins pipeline ● Create standard for the project structure
  • 40. APM (Application Performance Management ● the monitoring and management of performance and availability of software applications. APM strives to detect and diagnose complex application performance problems to maintain an expected level of service. ● Tools: DataDog, New Relic, Splunk, ELK Stack (Elasticsearch Logstash Kibana), Grafana, Promotheus
  • 46. App Tech Stack ● Programming Language: java, kotlin, python, golang, php ● Database: mysql, postgre, sql server, mongodb, redis, etc ● Search engine: elasticsearch, solr ● Messaging app: RabbitMQ, Kafka
  • 47. CI Pipeline DevSecOps Tech Stack CD Pipeline Checkout Build Test & Analysis Push To Artifactory Push to Image Registry Pull Image Update Config Helm upgrade Build Image & Scan Git Repo Scan Code coverage and secure code Scan Docker Image Save app artifact Live on to K8s Save the image Optional, pick 1