SlideShare ist ein Scribd-Unternehmen logo
1 von 39
Downloaden Sie, um offline zu lesen
NACHHALTIGKEIT IN DER DEPLOY PIPELINENACHHALTIGKEIT IN DER DEPLOY PIPELINE
CONTINUOUS LIFECYCLE 2019CONTINUOUS LIFECYCLE 2019
CONTINUOUS DELIVERYCONTINUOUS DELIVERY
CONTINUOUS INTEGRATIONCONTINUOUS INTEGRATION
CONTINUOUSCONTINUOUS
DELIVEERYDELIVEERY
TESTINGTESTING
CONTINUOUS DELIVERYCONTINUOUS DELIVERY
AUTOMATISMAUTOMATISM
CONTINUOUS DELIVERYCONTINUOUS DELIVERY
AGILE DEVELOPMENT PROCESSAGILE DEVELOPMENT PROCESS
SUSTAINABILITYSUSTAINABILITY
SUSTAINABILITY -SUSTAINABILITY -
RESOURCESRESOURCES
RESOURCESRESOURCES
DEVELOPERSDEVELOPERS
RESOURCESRESOURCES
MASHINESMASHINES
RESOURCESRESOURCES
ENERGYENERGY
RESPONSIBILITYRESPONSIBILITY
3% GLOBAL GREENHOUSE GAS EMISSIONS3% GLOBAL GREENHOUSE GAS EMISSIONS
10% OF GLOBAL ELECTRIC POWER CONSUMPTION10% OF GLOBAL ELECTRIC POWER CONSUMPTION
2.5 KG CO_2 FOR EVERY GB DATA2.5 KG CO_2 FOR EVERY GB DATA
WHAT TO DO?WHAT TO DO?
FIRST: AWARENESSFIRST: AWARENESS
SECOND: AVOID LAZY EMISSIONSSECOND: AVOID LAZY EMISSIONS
BARE METALBARE METAL
VS.VS.
DOCKER IMAGEDOCKER IMAGE
BARE METALBARE METAL
Systemresourcen unausgelastet
sperrig
sharred Hos ng?
One fits it all - Solu ons
Zeit beim Bau
BUILD DOCKER IMAGESBUILD DOCKER IMAGES
FIRST EXAMPLEFIRST EXAMPLE
FROM node:13
# install chrome for protractor tests
RUN 
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >
apt-get update && 
apt-get install -y google-chrome-stable && 
rm -rf /var/lib/apt/lists/*
# install and cache app dependencies
COPY ./ .
# add `/app/src/node_modules/.bin` to $PATH
ENV PATH /app/src/node_modules/.bin:$PATH
FIRST EXAMPLEFIRST EXAMPLE
MULTISTAGE EXAMPLEMULTISTAGE EXAMPLE
FROM node:13 as builder
COPY ./ .
ENV PATH /app/src/node_modules/.bin:$PATH
WORKDIR /app/src
RUN npm install && npm install -g @angular/cli
FROM node:13
RUN 
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >
apt-get update && 
apt-get install -y google-chrome-stable && 
rm -rf /var/lib/apt/lists/*
COPY ./ .
COPY --from=builder /app/src/node_modules /app/src/
# add `/app/src/node modules/.bin` to $PATH
MULTISTAGE EXAMPLEMULTISTAGE EXAMPLE
SECOND EXAMPLESECOND EXAMPLE
FROM node:13
# install chrome for protractor tests
RUN 
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >
apt-get update && 
apt-get install -y google-chrome-stable && 
rm -rf /var/lib/apt/lists/*
SECOND EXAMPLSECOND EXAMPL
SECOND EXAMPLESECOND EXAMPLE
FROM second/base
# install and cache app dependencies
COPY ./ .
# add `/app/src/node_modules/.bin` to $PATH
ENV PATH /app/src/node_modules/.bin:$PATH
WORKDIR /app/src
RUN npm install && npm install -g @angular/cli
# start app
CMD ng serve --host 0.0.0.0 --watch
SECOND EXAMPLESECOND EXAMPLE
THIRD EXAMPLETHIRD EXAMPLE
FROM node:13
# install chrome for protractor tests
RUN 
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >
apt-get update && 
apt-get install -y google-chrome-stable && 
rm -rf /var/lib/apt/lists/*
RUN npm install && npm install -g @angular/cli
THIRD EXAMPLETHIRD EXAMPLE
THIRD EXAMPLETHIRD EXAMPLE
FROM third/base
# install and cache app dependencies
COPY ./ .
# add `/app/src/node_modules/.bin` to $PATH
ENV PATH /app/src/node_modules/.bin:$PATH
WORKDIR /app/src
# start app
CMD ng serve --host 0.0.0.0 --watch
THIRD EXAMPLETHIRD EXAMPLE
PIPELINESPIPELINES
CONCLUSIONCONCLUSION
CI/CD ist nachhal g für So ware aber auch
Resourcen
Images Bau hat Einfluss auf den Footprint meiner
Dev-Arbeit
Pipelines ausgewogen und durchdacht
-
DEARDEAR
SCIENTISTS/ENGINIERSSCIENTISTS/ENGINIERS
WE NEED NUMBERS!WE NEED NUMBERS!
LINKSLINKS
DevelopersForFuture
THANKSTHANKS

Weitere ähnliche Inhalte

Ähnlich wie Sustainability in der deploy pipeline

Green Aviation
Green AviationGreen Aviation
Green Aviation
Dr. Salem Baidas
 
Final Project work..
Final Project work..Final Project work..
Final Project work..
Daniel Brukum
 

Ähnlich wie Sustainability in der deploy pipeline (20)

Green Aviation
Green AviationGreen Aviation
Green Aviation
 
AWS Container Services – 유재석 (AWS 솔루션즈 아키텍트)
AWS Container Services – 유재석 (AWS 솔루션즈 아키텍트)AWS Container Services – 유재석 (AWS 솔루션즈 아키텍트)
AWS Container Services – 유재석 (AWS 솔루션즈 아키텍트)
 
Amazon Container Services – 유재석 (AWS 솔루션즈 아키텍트)
 Amazon Container Services – 유재석 (AWS 솔루션즈 아키텍트) Amazon Container Services – 유재석 (AWS 솔루션즈 아키텍트)
Amazon Container Services – 유재석 (AWS 솔루션즈 아키텍트)
 
Cda Esm Comparative Decision Analysis Economic Safety Margin
Cda Esm Comparative Decision Analysis   Economic Safety MarginCda Esm Comparative Decision Analysis   Economic Safety Margin
Cda Esm Comparative Decision Analysis Economic Safety Margin
 
AWS 고객사를 위한 ‘AWS 컨테이너 교육’ - 유재석, AWS 솔루션즈 아키텍트
AWS 고객사를 위한 ‘AWS 컨테이너 교육’ - 유재석, AWS 솔루션즈 아키텍트AWS 고객사를 위한 ‘AWS 컨테이너 교육’ - 유재석, AWS 솔루션즈 아키텍트
AWS 고객사를 위한 ‘AWS 컨테이너 교육’ - 유재석, AWS 솔루션즈 아키텍트
 
Container, Container, Container -유재석 (AWS 솔루션즈 아키텍트)
Container, Container, Container -유재석 (AWS 솔루션즈 아키텍트)Container, Container, Container -유재석 (AWS 솔루션즈 아키텍트)
Container, Container, Container -유재석 (AWS 솔루션즈 아키텍트)
 
Deploying Symfony | symfony.cat
Deploying Symfony | symfony.catDeploying Symfony | symfony.cat
Deploying Symfony | symfony.cat
 
Developer intro to open shift
Developer intro to open shiftDeveloper intro to open shift
Developer intro to open shift
 
Ispe nj ch_greendesignappliedcgmpbldgs
Ispe nj ch_greendesignappliedcgmpbldgsIspe nj ch_greendesignappliedcgmpbldgs
Ispe nj ch_greendesignappliedcgmpbldgs
 
Instrumentación de entrega continua con Gitlab
Instrumentación de entrega continua con GitlabInstrumentación de entrega continua con Gitlab
Instrumentación de entrega continua con Gitlab
 
Breaking the Monolith road to containers.pdf
Breaking the Monolith road to containers.pdfBreaking the Monolith road to containers.pdf
Breaking the Monolith road to containers.pdf
 
Transport and Mobility - The Future
Transport and Mobility - The FutureTransport and Mobility - The Future
Transport and Mobility - The Future
 
Container Power Hour with Jess, Clare, and Abby (CON362) - AWS re:Invent 2018
Container Power Hour with Jess, Clare, and Abby (CON362) - AWS re:Invent 2018Container Power Hour with Jess, Clare, and Abby (CON362) - AWS re:Invent 2018
Container Power Hour with Jess, Clare, and Abby (CON362) - AWS re:Invent 2018
 
StackSets - Simplifying Application Management in Kubernetes - Cloud Native A...
StackSets - Simplifying Application Management in Kubernetes - Cloud Native A...StackSets - Simplifying Application Management in Kubernetes - Cloud Native A...
StackSets - Simplifying Application Management in Kubernetes - Cloud Native A...
 
Xp3 Emissions Reductions Presentation for Xp3 Australia
Xp3 Emissions Reductions Presentation for Xp3 AustraliaXp3 Emissions Reductions Presentation for Xp3 Australia
Xp3 Emissions Reductions Presentation for Xp3 Australia
 
Blue turns green! Approaches and technologies for sustainable K8s clusters #C...
Blue turns green! Approaches and technologies for sustainable K8s clusters #C...Blue turns green! Approaches and technologies for sustainable K8s clusters #C...
Blue turns green! Approaches and technologies for sustainable K8s clusters #C...
 
Breaking the Monolith road to containers.pdf
Breaking the Monolith road to containers.pdfBreaking the Monolith road to containers.pdf
Breaking the Monolith road to containers.pdf
 
Hacking for Fun and Profit (Mostly for Fun). AnDevCon Boston
Hacking for Fun and Profit (Mostly for Fun). AnDevCon BostonHacking for Fun and Profit (Mostly for Fun). AnDevCon Boston
Hacking for Fun and Profit (Mostly for Fun). AnDevCon Boston
 
Developer Intro to OpenShift
Developer Intro to OpenShiftDeveloper Intro to OpenShift
Developer Intro to OpenShift
 
Final Project work..
Final Project work..Final Project work..
Final Project work..
 

Mehr von Maximilian Berghoff

RESTing on HTTP - FrOSCon 10 - 2015-08-23
RESTing on HTTP - FrOSCon 10 - 2015-08-23RESTing on HTTP - FrOSCon 10 - 2015-08-23
RESTing on HTTP - FrOSCon 10 - 2015-08-23
Maximilian Berghoff
 

Mehr von Maximilian Berghoff (20)

Development is for future
Development is for futureDevelopment is for future
Development is for future
 
Development is for future
Development is for futureDevelopment is for future
Development is for future
 
Natural language understanding meets php php ruhr 2018
Natural language understanding meets php   php ruhr 2018Natural language understanding meets php   php ruhr 2018
Natural language understanding meets php php ruhr 2018
 
NLU meets PHP
NLU meets PHPNLU meets PHP
NLU meets PHP
 
Angular Mini Hackathon Code Talks 2019
Angular Mini Hackathon Code Talks 2019Angular Mini Hackathon Code Talks 2019
Angular Mini Hackathon Code Talks 2019
 
Search engine optimization for symfony developers
Search engine optimization for symfony developersSearch engine optimization for symfony developers
Search engine optimization for symfony developers
 
Introduction into FrOSCon PHP Track
Introduction into FrOSCon PHP TrackIntroduction into FrOSCon PHP Track
Introduction into FrOSCon PHP Track
 
Angular Workshop FrOSCon 2018
Angular Workshop  FrOSCon 2018Angular Workshop  FrOSCon 2018
Angular Workshop FrOSCon 2018
 
API Plattform - A Backend in Minutes
API Plattform - A Backend in MinutesAPI Plattform - A Backend in Minutes
API Plattform - A Backend in Minutes
 
The content manager loves the tree
The content manager loves the treeThe content manager loves the tree
The content manager loves the tree
 
Aspects Of Code Quality meetup
Aspects Of Code Quality   meetupAspects Of Code Quality   meetup
Aspects Of Code Quality meetup
 
Reactive Javascript - FrOSCon - 2016
Reactive Javascript - FrOSCon - 2016Reactive Javascript - FrOSCon - 2016
Reactive Javascript - FrOSCon - 2016
 
Extending a symfony application by cms features
Extending a symfony application by cms featuresExtending a symfony application by cms features
Extending a symfony application by cms features
 
Concepts of Code Quality
Concepts of Code QualityConcepts of Code Quality
Concepts of Code Quality
 
Mit dem API ins CMS
Mit dem API ins CMSMit dem API ins CMS
Mit dem API ins CMS
 
Reactive java script mit rxjs basta! 2016
Reactive java script mit rxjs   basta! 2016Reactive java script mit rxjs   basta! 2016
Reactive java script mit rxjs basta! 2016
 
Eine Symfony Application um CMS-Funktionen erweitern
Eine Symfony Application um CMS-Funktionen erweiternEine Symfony Application um CMS-Funktionen erweitern
Eine Symfony Application um CMS-Funktionen erweitern
 
RESTing on HTTP - FrOSCon 10 - 2015-08-23
RESTing on HTTP - FrOSCon 10 - 2015-08-23RESTing on HTTP - FrOSCon 10 - 2015-08-23
RESTing on HTTP - FrOSCon 10 - 2015-08-23
 
RESTing on HTTP
RESTing on HTTPRESTing on HTTP
RESTing on HTTP
 
Symfony-CMF/SeoBundle - unKonf
Symfony-CMF/SeoBundle - unKonfSymfony-CMF/SeoBundle - unKonf
Symfony-CMF/SeoBundle - unKonf
 

Kürzlich hochgeladen

Joka \ Call Girls Service Kolkata - 450+ Call Girl Cash Payment 8005736733 Ne...
Joka \ Call Girls Service Kolkata - 450+ Call Girl Cash Payment 8005736733 Ne...Joka \ Call Girls Service Kolkata - 450+ Call Girl Cash Payment 8005736733 Ne...
Joka \ Call Girls Service Kolkata - 450+ Call Girl Cash Payment 8005736733 Ne...
HyderabadDolls
 
Dubai Escorts Service 0508644382 Escorts in Dubai
Dubai Escorts Service 0508644382 Escorts in DubaiDubai Escorts Service 0508644382 Escorts in Dubai
Dubai Escorts Service 0508644382 Escorts in Dubai
Monica Sydney
 
High Profile Escort in Abu Dhabi 0524076003 Abu Dhabi Escorts
High Profile Escort in Abu Dhabi 0524076003 Abu Dhabi EscortsHigh Profile Escort in Abu Dhabi 0524076003 Abu Dhabi Escorts
High Profile Escort in Abu Dhabi 0524076003 Abu Dhabi Escorts
Monica Sydney
 
Disaster risk reduction management Module 4: Preparedness, Prevention and Mit...
Disaster risk reduction management Module 4: Preparedness, Prevention and Mit...Disaster risk reduction management Module 4: Preparedness, Prevention and Mit...
Disaster risk reduction management Module 4: Preparedness, Prevention and Mit...
BrixsonLajara
 
case-study-marcopper-disaster in the philippines.pdf
case-study-marcopper-disaster in the philippines.pdfcase-study-marcopper-disaster in the philippines.pdf
case-study-marcopper-disaster in the philippines.pdf
garthraymundo123
 

Kürzlich hochgeladen (20)

Russian Call girls in Dubai 0508644382 Dubai Call girls
Russian Call girls in Dubai 0508644382 Dubai Call girlsRussian Call girls in Dubai 0508644382 Dubai Call girls
Russian Call girls in Dubai 0508644382 Dubai Call girls
 
Presentation: Farmer-led climate adaptation - Project launch and overview by ...
Presentation: Farmer-led climate adaptation - Project launch and overview by ...Presentation: Farmer-led climate adaptation - Project launch and overview by ...
Presentation: Farmer-led climate adaptation - Project launch and overview by ...
 
Sensual Call Girls in Surajpur { 9332606886 } VVIP NISHA Call Girls Near 5 St...
Sensual Call Girls in Surajpur { 9332606886 } VVIP NISHA Call Girls Near 5 St...Sensual Call Girls in Surajpur { 9332606886 } VVIP NISHA Call Girls Near 5 St...
Sensual Call Girls in Surajpur { 9332606886 } VVIP NISHA Call Girls Near 5 St...
 
Joka \ Call Girls Service Kolkata - 450+ Call Girl Cash Payment 8005736733 Ne...
Joka \ Call Girls Service Kolkata - 450+ Call Girl Cash Payment 8005736733 Ne...Joka \ Call Girls Service Kolkata - 450+ Call Girl Cash Payment 8005736733 Ne...
Joka \ Call Girls Service Kolkata - 450+ Call Girl Cash Payment 8005736733 Ne...
 
Low Rate Call Girls Boudh 9332606886 HOT & SEXY Models beautiful and charmin...
Low Rate Call Girls Boudh  9332606886 HOT & SEXY Models beautiful and charmin...Low Rate Call Girls Boudh  9332606886 HOT & SEXY Models beautiful and charmin...
Low Rate Call Girls Boudh 9332606886 HOT & SEXY Models beautiful and charmin...
 
Call girl in Ajman 0503464457 Ajman Call girl services
Call girl in Ajman 0503464457 Ajman Call girl servicesCall girl in Ajman 0503464457 Ajman Call girl services
Call girl in Ajman 0503464457 Ajman Call girl services
 
Green Marketing
Green MarketingGreen Marketing
Green Marketing
 
Dubai Escorts Service 0508644382 Escorts in Dubai
Dubai Escorts Service 0508644382 Escorts in DubaiDubai Escorts Service 0508644382 Escorts in Dubai
Dubai Escorts Service 0508644382 Escorts in Dubai
 
High Profile Escort in Abu Dhabi 0524076003 Abu Dhabi Escorts
High Profile Escort in Abu Dhabi 0524076003 Abu Dhabi EscortsHigh Profile Escort in Abu Dhabi 0524076003 Abu Dhabi Escorts
High Profile Escort in Abu Dhabi 0524076003 Abu Dhabi Escorts
 
Disaster risk reduction management Module 4: Preparedness, Prevention and Mit...
Disaster risk reduction management Module 4: Preparedness, Prevention and Mit...Disaster risk reduction management Module 4: Preparedness, Prevention and Mit...
Disaster risk reduction management Module 4: Preparedness, Prevention and Mit...
 
RATING SYSTEMS- IGBC, GRIHA, LEED--.pptx
RATING  SYSTEMS- IGBC, GRIHA, LEED--.pptxRATING  SYSTEMS- IGBC, GRIHA, LEED--.pptx
RATING SYSTEMS- IGBC, GRIHA, LEED--.pptx
 
Faridabad Call Girl ₹7.5k Pick Up & Drop With Cash Payment 8168257667 Badarpu...
Faridabad Call Girl ₹7.5k Pick Up & Drop With Cash Payment 8168257667 Badarpu...Faridabad Call Girl ₹7.5k Pick Up & Drop With Cash Payment 8168257667 Badarpu...
Faridabad Call Girl ₹7.5k Pick Up & Drop With Cash Payment 8168257667 Badarpu...
 
Climate Change
Climate ChangeClimate Change
Climate Change
 
Yil Me Hu Summer 2023 Edition - Nisqually Salmon Recovery Newsletter
Yil Me Hu Summer 2023 Edition - Nisqually Salmon Recovery NewsletterYil Me Hu Summer 2023 Edition - Nisqually Salmon Recovery Newsletter
Yil Me Hu Summer 2023 Edition - Nisqually Salmon Recovery Newsletter
 
Introduction to heat waves and Heatwaves in Bangladesh.pptx
Introduction to heat waves and Heatwaves in Bangladesh.pptxIntroduction to heat waves and Heatwaves in Bangladesh.pptx
Introduction to heat waves and Heatwaves in Bangladesh.pptx
 
Yil Me Hu Spring 2024 - Nisqually Salmon Recovery Newsletter
Yil Me Hu Spring 2024 - Nisqually Salmon Recovery NewsletterYil Me Hu Spring 2024 - Nisqually Salmon Recovery Newsletter
Yil Me Hu Spring 2024 - Nisqually Salmon Recovery Newsletter
 
Book Call Girls in Kathua { 9332606886 } VVIP NISHA Call Girls Near 5 Star Hotel
Book Call Girls in Kathua { 9332606886 } VVIP NISHA Call Girls Near 5 Star HotelBook Call Girls in Kathua { 9332606886 } VVIP NISHA Call Girls Near 5 Star Hotel
Book Call Girls in Kathua { 9332606886 } VVIP NISHA Call Girls Near 5 Star Hotel
 
Role of Copper and Zinc Nanoparticles in Plant Disease Management
Role of Copper and Zinc Nanoparticles in Plant Disease ManagementRole of Copper and Zinc Nanoparticles in Plant Disease Management
Role of Copper and Zinc Nanoparticles in Plant Disease Management
 
case-study-marcopper-disaster in the philippines.pdf
case-study-marcopper-disaster in the philippines.pdfcase-study-marcopper-disaster in the philippines.pdf
case-study-marcopper-disaster in the philippines.pdf
 
Vip Salem Call Girls 8250092165 Low Price Escorts Service in Your Area
Vip Salem Call Girls 8250092165 Low Price Escorts Service in Your AreaVip Salem Call Girls 8250092165 Low Price Escorts Service in Your Area
Vip Salem Call Girls 8250092165 Low Price Escorts Service in Your Area
 

Sustainability in der deploy pipeline