Keynote by OpenStack Foundation Executive Director Jonathan Bryce at OpenStack Silicon Valley 2015.
Hundreds of companies are running millions of cores in production with OpenStack. The work continues, but the platform is mature. Now, the community is evolving OpenStack into a platform for innovationa reliable environment in which to test, try and adopt new technologies as they prove themselves.
Amit Tank of DIRECTV will join Jonathan Bryce to discuss his organization's plans for using OpenStack as the one platform for integration of VMs, containers and emergent technologies down the road.
This document discusses how to dockerize a Node.js application. Some key points include:
- Docker makes environment setup easier by allowing applications and dependencies to be bundled into a single image file that can run anywhere without configuration.
- Docker images allow applications to fully utilize multi-core systems by running processes as separate containers that can be easily scaled.
- Docker provides virtualization that makes it easier to manage environments for development, staging, and production with consistent configurations across systems.
- Rolling back changes is faster and easier with Docker as new images can be built and deployed without modifying the underlying system.
Skatteetaten er i en prosess der de ser p奪 hvordan de kan senke forvaltningskostnadene, 淡ke endringsevnen i systemportef淡ljen, og bygge systemer som i st淡rre grad vil svare p奪 fremtidige utfordringer.
De har etablert et arkitekturm奪lbilde som legger stor vekt p奪 skalerbarhet, testbarhet, vedlikeholdbarhet, driftbarhet og automatisering. Modernisering av grunnlagsdata (MAG)- og Elektronisk dialog med arbeidsgivere (EDAG)-prosjektene realiserer deler av m奪lbildet.
H淡r om erfaringer fra disse prosjektene med fokus p奪 automatisert utrulling, milj淡er og versjonering, konfigurasjon og koordingering mellom tjenester, overv奪kning og verkt淡y for drift og administrasjon. Vi ser p奪 hva som fungerer, hva som fortsatt skaper friksjon og aktuelle alternativer som kan forbedre de utfordringene vi st奪r ovenfor.
Speakers
Anders Sveen
Utvikler, Miles
Anders Sveen er utvikler og arkitekt hos Miles i Oslo. Han har i det siste jobbet s奪pass mye med Bash og Linux at han har begynt 奪 kalle seg for drifter. I utformingen av systemer er smidig system-utvikling viktig, og han fors淡ker 奪 balansere effektivitet og hastighet med forutsigbarhet og stabilitet i produksjon. | Han har erfaring fra sm奪, store, bra og d奪rlige smidige prosjekter, men l脱rer stadig nye ting. Gjennom erfaringen med drift og ansvar i produksjon har han erfart hvor viktig det er 奪 f奪 hele verdikjeden til 奪 spille sammen, ikke bare utvikle kjapt. Det finnes f奪 ting som er s奪 g淡y som 奪 legge ut noe i produksjon 辿n dag, m奪le den neste, og legge ut en korreksjon den tredje dagen.
no.linkedin.com/in/anderssv
twitter:anderssv
Trond Arve Wasskog
CTO, Bekk Consulting
Trond Arve Wasskog er utvikler, arkitekt og CTO i Bekk Consulting. Han har jobbet med utvikling p奪 Java-plattformen i hele sin karri竪re, og er n奪 l淡sningsarkitekt for MAG og EDAG. | | no.linkedin.com/pub/trond-arve-wasskog/0/692/83b | twitter: @ilmyggo
So you think you can change? - JavaZone 2010Anders Sveen
油
The document discusses how to support and respond to change. It notes that while plans may be worthless, planning is essential. It advocates for continuous learning and discovering change, and emphasizes that change should be made as easy as possible. It stresses the importance of automated testing, evolvable code design, encapsulation, and good tests to create a safety net that is willing to change. The document concludes that while change is hard, experience, knowledge, and focus will help organizations try, try again to implement changes successfully.
The document discusses embracing and managing change through agile practices. It advocates adopting an iterative and incremental approach that focuses on responding to change rather than following a rigid plan. It also emphasizes understanding the agile philosophy, avoiding resistance to change, building refactorable code and tests, minimizing red tape, and cultivating an organizational culture that is open to change. The document is written by Anders Sveen and provides his contact information.
This document discusses the benefits of agile development and shipping software early. It recommends shipping working software as soon as possible to expose any problems in the development process or technology. By shipping and validating software in small increments, teams can better handle risk, focus on one task at a time, and change course if needed, rather than delaying production and accumulating large amounts of risk. Shipping early and adapting based on feedback is worth the effort required.
Presentation held for Norwegian Java User Group. An expanded version of a lightning talk with limited time, so a bit high level. Hoping for a longer version with details for JavaZone.
So you think you can change? - JavaZone 2010Anders Sveen
油
The document discusses how to support and respond to change. It notes that while plans may be worthless, planning is essential. It advocates for continuous learning and discovering change, and emphasizes that change should be made as easy as possible. It stresses the importance of automated testing, evolvable code design, encapsulation, and good tests to create a safety net that is willing to change. The document concludes that while change is hard, experience, knowledge, and focus will help organizations try, try again to implement changes successfully.
The document discusses embracing and managing change through agile practices. It advocates adopting an iterative and incremental approach that focuses on responding to change rather than following a rigid plan. It also emphasizes understanding the agile philosophy, avoiding resistance to change, building refactorable code and tests, minimizing red tape, and cultivating an organizational culture that is open to change. The document is written by Anders Sveen and provides his contact information.
This document discusses the benefits of agile development and shipping software early. It recommends shipping working software as soon as possible to expose any problems in the development process or technology. By shipping and validating software in small increments, teams can better handle risk, focus on one task at a time, and change course if needed, rather than delaying production and accumulating large amounts of risk. Shipping early and adapting based on feedback is worth the effort required.
Presentation held for Norwegian Java User Group. An expanded version of a lightning talk with limited time, so a bit high level. Hoping for a longer version with details for JavaZone.
4. IaaS
On demand
Forh奪ndsdefinerte image
Self service
Openstack
Propreit脱rt
5. PaaS
On demand
Forh奪ndsdefinerte templates
Self service
Raskt
F淡lg disse patterns s奪 f奪r du:
Automatisk skalering
Drifting og backup av DB
Overv奪kning
Fail over
Minimumsgaranti i forhold til resursser
10. root@docker-demo:~# lxc-create -t ubuntu -n test
Checking cache download in /var/cache/lxc/saucy/rootfs-amd64 ...
Copy /var/cache/lxc/saucy/rootfs-amd64 to /usr/lib/x86_64-linux-gnu/lxc ...
Copying rootfs to /usr/lib/x86_64-linux-gnu/lxc ...
##
# The default user is 'ubuntu' with password 'ubuntu'!
# Use the 'sudo' command to run tasks as root in the container.
##
root@docker-demo:~# lxc-start -n test -d
root@docker-demo:~# lxc-ls --fancy
NAME STATE
IPV4
IPV6 AUTOSTART
-----------------------------------------test RUNNING 10.0.3.237 NO
root@docker-demo:~# ssh ubuntu@10.0.3.237
ubuntu@10.0.3.237's password:
Ubuntu comes with ABSOLUTELY NO WARRANTY, to the extent permitted by
applicable law.
ubuntu@test:~$
11. LXC
Etabler egen mappe som filsystem
Sett opp Cgroups og Namespace slik at det
isoleres
Start prosesser
D奪rlig
18. This changes everything
Alle kan virtualisere
Alle kan virtualisere mye
Alle kan distribuere fullstendige snapshots av
maskiner
Det g奪r kjapt
Det gir fullstendig isolasjon
19. IaaS? PaaS?
Docker i OpenStack
PaaS har ikke lenger hastighetsfordelen
Trenger fortsatt templates for 奪 komme i gang
Fortsatt utfordring 奪 monitorere, overv奪ke,
skalere og gj淡re failover
20. Fremover
Openshift skal integrere Docker
Bedre verkt淡y
Andre PaaS l淡sninger
Erstatte Vagrant?
Integrert i Vagrant?
Flere Linux varianter
OS X st淡tte?