
- 360 pages
- English
- ePUB (mobile friendly)
- Available on iOS & Android
The DevOps 2.2 Toolkit
About this book
Learn from an expert on how use self-adapting and self-healing systems within Docker.
Key Features
- Viktor Farcic shows you all aspects in the creation of self-adapting and self-healing systems in both a practical and hands-on approach.
- Learn how to choose a successful solution for metrics storage and query, including InfluxDB, Nagios and Sensu, Prometheus and Graphite.
- Discover how to integrate Docker Flow Monitor with Docker Flow Proxy.
- How to apply Docker self-healing and self-adaptive to both services and infrastructure.
Book Description
Building on The DevOps 2.0 Toolkit and The DevOps 2.1 Toolkit: Docker Swarm, Viktor Farcic brings his latest exploration of the Docker technology as he records his journey to explore two new programs, self-adaptive and self-healing systems within Docker.
The DevOps 2.2 Toolkit: Self-Sufficient Docker Clusters is the latest book in Viktor Farcic's series that helps you build a full DevOps Toolkit. This book in the series looks at Docker, the tool designed to make it easier in the creation and running of applications using containers. In this latest entry, Viktor combines theory with a hands-on approach to guide you through the process of creating self-adaptive and self-healing systems.
Within this book, Viktor will cover a wide-range of emerging topics, including what exactly self-adaptive and self-healing systems are, how to choose a solution for metrics storage and query, the creation of cluster-wide alerts and what a successful self-sufficient system blueprint looks like.
Work with Viktor and dive into the creation of self-adaptive and self-healing systems within Docker.
What you will learn
- Let Viktor Farcic show you all aspects in the creation of self-adapting and self-healing systems in both a practical and hands-on approach.
- Learn how to choose a successful solution for metrics storage and query, including InfluxDB, Nagios and Sensu, Prometheus and Graphite.
- Understand how to integrate Docker Flow Monitor with Docker Flow Proxy.
- The creation of cluster-wide alerts by creating alerts based on metrics.
- How to apply self-healing and self-adaptive to both services and infrastructure.
Who this book is for
This book is for professionals experienced with Docker looking to create both self-adapting and self-healing systems using the software.
Frequently asked questions
- Essential is ideal for learners and professionals who enjoy exploring a wide range of subjects. Access the Essential Library with 800,000+ trusted titles and best-sellers across business, personal growth, and the humanities. Includes unlimited reading time and Standard Read Aloud voice.
- Complete: Perfect for advanced learners and researchers needing full, unrestricted access. Unlock 1.4M+ books across hundreds of subjects, including academic and specialized titles. The Complete Plan also includes advanced features like Premium Read Aloud and Research Assistant.
Please note we cannot support devices running on iOS 13 and Android 7 or earlier. Learn more about using the app.
Information
Self-Adaptation Applied to Infrastructure
Creating a cluster
export AWS_ACCESS_KEY_ID=[...]
export AWS_SECRET_ACCESS_KEY=[...]
export AWS_DEFAULT_REGION=us-east-1
export STACK_NAME=devops22
export KEY_NAME=devops22
aws cloudformation create-stack \
--template-url https://editions-us-east-1.s3.amazonaws.com/aws\
/stable/Docker.tmpl
--capabilities CAPABILITY_IAM \
--stack-name $STACK_NAME \
--parameters \
ParameterKey=ManagerSize,ParameterValue=3 \
ParameterKey=ClusterSize,ParameterValue=0 \
ParameterKey=KeyName,ParameterValue=$KEY_NAME \
ParameterKey=EnableSystemPrune,ParameterValue=yes \
ParameterKey=EnableCloudWatchLogs,ParameterValue=no \
ParameterKey=EnableCloudStorEfs,ParameterValue=yes \
ParameterKey=ManagerInstanceType,ParameterValue=t2.small \
ParameterKey=InstanceType,ParameterValue=t2.small
aws cloudformation describe-stacks \
--stack-name $STACK_NAME | \
jq -r ".Stacks[0].StackStatus"
CLUSTER_DNS=$(aws cloudformation \
describe-stacks \
--stack-name $STACK_NAME | \
jq -r ".Stacks[0].Outputs[] | \
select(.OutputKey==\"DefaultDNSTarget\")\
.OutputValue")
CLUSTER_IP=$(aws ec2 describe-instances \
| jq -r ".Reservations[] \
.Instances[] \
| select(.SecurityGroups[].GroupName \
| contains("$STACK_NAME-ManagerVpcSG"))\
.PublicIpAddress" \
| tail -n 1)
echo "
export CLUSTER_DNS=$CLUSTER_DNS
export AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID
export AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY
export AWS_DEFAULT_REGION=$AWS_DEFAULT_REGION
"
ssh -i $KEY_NAME.pem docker@$CLUSTER_IP
echo "
export CLUSTER_DNS=[...]
expo...
Table of contents
- Title Page
- Copyright
- Dedication
- Contributor
- Packt Upsell
- Preface
- Introduction to Self-Adapting and Self-Healing Systems
- Choosing a Solution for Metrics Storage and Query
- Deploying and Configuring Prometheus
- Scraping Metrics
- Defining Cluster-Wide Alerts
- Alerting Humans
- Alerting the System
- Self-Healing Applied to Services
- Self-Adaptation Applied to Services
- Painting the Big Picture – The Self-Sufficient System Thus Far
- Instrumenting Services
- Self-Adaptation Applied to Instrumented Services
- Setting Up a Production Cluster
- Self-Healing Applied to Infrastructure
- Self-Adaptation Applied to Infrastructure
- Blueprint of a Self-Sufficient System
- Other Books You May Enjoy