SlideShare a Scribd company logo
1 of 23
Download to read offline
Linux höchstpersönlich.
CloudStack & Terraform
[CloudStack EUG Meetup 2020]
Robert Sander <r.sander@heinlein-support.de>
CloudStack
&
Terraform
Linux höchstpersönlich.
CloudStack & Terraform
[CloudStack EUG Meetup 2020]
Robert Sander <r.sander@heinlein-support.de>
Terraform?
➞ Provisioning
➞ Management
➞ on CloudStack
Linux höchstpersönlich.
CloudStack & Terraform
[CloudStack EUG Meetup 2020]
Robert Sander <r.sander@heinlein-support.de>
➞ Heinlein Support
➞ IT Consulting with 24/7 Linux support team (35 staff)
➞ Running ISP operations since 1992
➞ Vast experience of supporting core IT services for business of all sizes
➞ 24/7 Emergency Hotline: +49 30 40 50 5110
➞ LPIC-2 & LPIC-3-certified experts
➞ Competent to advise on any issues around Linux, servers, or DMZ
➞ Deals with incidents: Down times, Performance issues, Hacking attacks, Data loss
➞ Offers strategic advice: Revision, Planning, Consultancy, Configuration advice
Linux höchstpersönlich.
CloudStack & Terraform
[CloudStack EUG Meetup 2020]
Robert Sander <r.sander@heinlein-support.de>
Part 1:
Terraform
Linux höchstpersönlich.
CloudStack & Terraform
[CloudStack EUG Meetup 2020]
Robert Sander <r.sander@heinlein-support.de>
Terraform
What does it offer?
➞ Infrastructure as Code
➞ high level configuration syntax as blueprint of data center
➞ Execution Plans
➞ show changes before being applied
➞ Resource Graph
➞ parallelization of execution where possible
➞ Change Automation
➞ minimal interaction
Linux höchstpersönlich.
CloudStack & Terraform
[CloudStack EUG Meetup 2020]
Robert Sander <r.sander@heinlein-support.de>
Terraform
Where does it come from?
➞ created by HashiCorp
➞ also: Vagrant, Packer, Consul, Vault, Nomad, Serf, Sentinel
➞ initial release July 2014
➞ current release 0.12.21, February 2020
➞ written in Go
➞ https://github.com/hashicorp/terraform
➞ https://www.terraform.io/
Linux höchstpersönlich.
CloudStack & Terraform
[CloudStack EUG Meetup 2020]
Robert Sander <r.sander@heinlein-support.de>
Terraform
Why do I use it?
➞ I'm trainer for Ceph
➞ every student needs the same environment
➞ 6 - 12 VMs per environment, depending on course content
➞ up to 9 students plus trainer
➞ too much manual work
➞ we have CloudStack
➞ there's a CloudStack provider for Terraform
➞ https://www.terraform.io/docs/providers/cloudstack/index.html
Linux höchstpersönlich.
CloudStack & Terraform
[CloudStack EUG Meetup 2020]
Robert Sander <r.sander@heinlein-support.de>
Terraform
What can it do?
➞ Providers
provider "cloudstack" {
api_url = …
api_key = …
secret_key = …
}
➞ Resources
➞ "create things" depending on provider
➞ Modules
➞ Input Variables
➞ contain one or more resource definitions
➞ Output Values
➞ Variables
Linux höchstpersönlich.
CloudStack & Terraform
[CloudStack EUG Meetup 2020]
Robert Sander <r.sander@heinlein-support.de>
Terraform
What can it do?
➞ create network
resource "cloudstack_network" "net-01" {
zone = zone UUID
project = project UUID
name = "ceph-tn${var.student}-public"
display_text = "Ceph Academy TN ${var.student} Public"
cidr = "10.24.4.0/24"
network_domain = "ceph.heinlein-akademie.de"
network_offering = offering UUID
}
Linux höchstpersönlich.
CloudStack & Terraform
[CloudStack EUG Meetup 2020]
Robert Sander <r.sander@heinlein-support.de>
Terraform
What can it do?
➞ create instance
resource "cloudstack_instance" "vm" {
zone = zone UUID
project = project UUID
network_id = network UUID
ip_address = IP UUID
name = var.name
display_name = "TN ${var.student} ${var.name}"
service_offering = offering UUID
template = template UUID
keypair = var.keypair
expunge = true
}
➞
Linux höchstpersönlich.
CloudStack & Terraform
[CloudStack EUG Meetup 2020]
Robert Sander <r.sander@heinlein-support.de>
Terraform
What can it do?
➞ create disk volume
resource "cloudstack_disk" "disk-01" {
name = "tn${var.student}-${cloudstack_instance.vm.name}-01"
zone = zone UUID
project = project UUID
disk_offering = offering UUID
virtual_machine_id = cloudstack_instance.vm.id
attach = true
device_id = 4
}
Linux höchstpersönlich.
CloudStack & Terraform
[CloudStack EUG Meetup 2020]
Robert Sander <r.sander@heinlein-support.de>
Terraform
Afterwards
➞ Terraform does nothing inside the created VMs
➞ Ansible
➞ SaltStack
➞ Puppet
➞ Chef
Linux höchstpersönlich.
CloudStack & Terraform
[CloudStack EUG Meetup 2020]
Robert Sander <r.sander@heinlein-support.de>
Terraform Modules
➞ sub directories with main.tf
➞ terraform init after changing modules
➞ .
├── ceph-academy.tf
├── cephnode
│   └── main.tf
├── clientnode
│   └── main.tf
├── student
│   └── main.tf
└── variables.tf
Linux höchstpersönlich.
CloudStack & Terraform
[CloudStack EUG Meetup 2020]
Robert Sander <r.sander@heinlein-support.de>
Terraform
Projects
➞ Terraform directory ⇔ CloudStack project
➞ Terraform reads every .tf file in current working directory
➞ Terraform creates execution plan
➞ Terraform applies all changes
➞ adds new instances
➞ removes instances not in config any more
➞ state is saved in terraform.tfstate
➞ terraform refresh
Linux höchstpersönlich.
CloudStack & Terraform
[CloudStack EUG Meetup 2020]
Robert Sander <r.sander@heinlein-support.de>
Part 1:
Demo
Linux höchstpersönlich.
CloudStack & Terraform
[CloudStack EUG Meetup 2020]
Robert Sander <r.sander@heinlein-support.de>
instance.tf_init.tf
Simple Example
provider
"cloudstack"
resource
"cloudstack_ssh_keypair"
"rsander"
resource
"cloudstack_instance"
"instance01"
Linux höchstpersönlich.
CloudStack & Terraform
[CloudStack EUG Meetup 2020]
Robert Sander <r.sander@heinlein-support.de>
student/main.tfceph-academy.tf
Ceph Academy Example
provider
"cloudstack"
resource
"ssh_keypair"
"rsander"
resource
"cloudstack_network"
"public-net"
module
"trainer"
source = ./student
module
"student01"
source = ./student
resource
"cloudstack_network"
"cluster-net"
module
"ceph01"
source = ../cephnode
Linux höchstpersönlich.
CloudStack & Terraform
[CloudStack EUG Meetup 2020]
Robert Sander <r.sander@heinlein-support.de>
student/main.tf cephnode/main.tf
Ceph Academy Example
resource
"cloudstack_instance"
"vm"
resource
"cloudstack_network"
"public-net"
resource
"cloudstack_network"
"cluster-net"
resource
"cloudstack_nic"
"eth1"
resource
"cloudstack_disk"
"disk-01"
resource
"ssh_keypair"
"rsander"
Linux höchstpersönlich.
CloudStack & Terraform
[CloudStack EUG Meetup 2020]
Robert Sander <r.sander@heinlein-support.de>
➞ I am always happy to help and look forward to connecting with
you.
➞ Robert Sander
➞ Mail: r.sander@heinlein-support.de
➞ Phone: +49 30 40 50 51 43
➞ If it's urgent:
➞ Heinlein Support 24/7 Emergency hotline +49 30 40 50 5110
Linux höchstpersönlich.
CloudStack & Terraform
[CloudStack EUG Meetup 2020]
Robert Sander <r.sander@heinlein-support.de>
So far, so good.
Now it is your turn:
Time for questions and discussions!
Linux höchstpersönlich.
CloudStack & Terraform
[CloudStack EUG Meetup 2020]
Robert Sander <r.sander@heinlein-support.de>
We are looking for:
Administrators, consultants, and trainers
We are offering:
Interesting projects, appreciation and customer satisfaction,
opportunities to work independently, a great team, work-life
balance
...and of course: Linux, Linux, Linux...
http://www.heinlein-support.de/jobs
Linux höchstpersönlich.
CloudStack & Terraform
[CloudStack EUG Meetup 2020]
Robert Sander <r.sander@heinlein-support.de>
And finally...
➞ Thank you for your attention!
➞ We hope you had a productive day and wish you the best of
success
Hope to see you again soon!
Linux höchstpersönlich.
CloudStack & Terraform
[CloudStack EUG Meetup 2020]
Robert Sander <r.sander@heinlein-support.de>
Heinlein Support assists with all questions
around Linux servers
HEINLEIN AKADEMIE
Professional training by professionals: We convey the top
10% of knowledge: Acquire useful know-how and benefit
from our extensive practical experience.
HEINLEIN CONSULTING
The backup for your own Linux administration: LPIC-2-
certified professionals help with your CompetenceCall
emergencies, also available on SLAs covering 24/7-
availability.
HEINLEIN HOSTING
Business hosting tailored to your needs and professional
maintenance. Security and availability are our top
priorities.

More Related Content

What's hot

CloudStack EU User Group - Making stuff better through CloudStack
CloudStack EU User Group - Making stuff better through CloudStackCloudStack EU User Group - Making stuff better through CloudStack
CloudStack EU User Group - Making stuff better through CloudStackShapeBlue
 
Policy driven SDN in CloudStack
Policy driven SDN in CloudStack Policy driven SDN in CloudStack
Policy driven SDN in CloudStack ShapeBlue
 
CloudStack IPv6 in production
CloudStack IPv6 in productionCloudStack IPv6 in production
CloudStack IPv6 in productionShapeBlue
 
Telia latvija cloudstack
Telia latvija cloudstackTelia latvija cloudstack
Telia latvija cloudstackShapeBlue
 
Improving CloudStack for operators
Improving CloudStack for operatorsImproving CloudStack for operators
Improving CloudStack for operatorsShapeBlue
 
Cloud stack user group - Welcome
Cloud stack user group -  WelcomeCloud stack user group -  Welcome
Cloud stack user group - WelcomeShapeBlue
 
CloudStack news
CloudStack newsCloudStack news
CloudStack newsShapeBlue
 
CloudStack Container Service
CloudStack Container ServiceCloudStack Container Service
CloudStack Container ServiceShapeBlue
 
Introduction and news
Introduction and newsIntroduction and news
Introduction and newsShapeBlue
 
Designing Lean CloudStack Environments for the Edge - IndiQus - CloudStack E...
 Designing Lean CloudStack Environments for the Edge - IndiQus - CloudStack E... Designing Lean CloudStack Environments for the Edge - IndiQus - CloudStack E...
Designing Lean CloudStack Environments for the Edge - IndiQus - CloudStack E...ShapeBlue
 
Containers and CloudStack
Containers and CloudStackContainers and CloudStack
Containers and CloudStackShapeBlue
 
Introduction and CloudStack news
Introduction and CloudStack newsIntroduction and CloudStack news
Introduction and CloudStack newsShapeBlue
 
Simplifying the Move to OpenStack
Simplifying the Move to OpenStackSimplifying the Move to OpenStack
Simplifying the Move to OpenStackOpenStack
 
[OpenStack Day in Korea 2015] Track 2-6 - Apache Tajo on Swift
[OpenStack Day in Korea 2015] Track 2-6 - Apache Tajo on Swift[OpenStack Day in Korea 2015] Track 2-6 - Apache Tajo on Swift
[OpenStack Day in Korea 2015] Track 2-6 - Apache Tajo on SwiftOpenStack Korea Community
 
Introductions & CloudStack news - Giles Sirett
Introductions & CloudStack news - Giles SirettIntroductions & CloudStack news - Giles Sirett
Introductions & CloudStack news - Giles SirettShapeBlue
 
CloudStack EU user group - fast SAP provisioning
CloudStack EU user group - fast SAP provisioningCloudStack EU user group - fast SAP provisioning
CloudStack EU user group - fast SAP provisioningShapeBlue
 
Fast SAP system provisioning based on CloudStack
Fast SAP system provisioning based on CloudStack Fast SAP system provisioning based on CloudStack
Fast SAP system provisioning based on CloudStack ShapeBlue
 
[OpenStack Day in Korea 2015] Track 2-2 - OpenStack for PaaS: Why it's Hot
[OpenStack Day in Korea 2015] Track 2-2 - OpenStack for PaaS: Why it's Hot[OpenStack Day in Korea 2015] Track 2-2 - OpenStack for PaaS: Why it's Hot
[OpenStack Day in Korea 2015] Track 2-2 - OpenStack for PaaS: Why it's HotOpenStack Korea Community
 
Meshing OpenStack and Bare Metal Networks with EVPN - David Iles, Mellanox Te...
Meshing OpenStack and Bare Metal Networks with EVPN - David Iles, Mellanox Te...Meshing OpenStack and Bare Metal Networks with EVPN - David Iles, Mellanox Te...
Meshing OpenStack and Bare Metal Networks with EVPN - David Iles, Mellanox Te...OpenStack
 
Adam Dagnall: Advanced S3 compatible storage integration in CloudStack
Adam Dagnall: Advanced S3 compatible storage integration in CloudStackAdam Dagnall: Advanced S3 compatible storage integration in CloudStack
Adam Dagnall: Advanced S3 compatible storage integration in CloudStackShapeBlue
 

What's hot (20)

CloudStack EU User Group - Making stuff better through CloudStack
CloudStack EU User Group - Making stuff better through CloudStackCloudStack EU User Group - Making stuff better through CloudStack
CloudStack EU User Group - Making stuff better through CloudStack
 
Policy driven SDN in CloudStack
Policy driven SDN in CloudStack Policy driven SDN in CloudStack
Policy driven SDN in CloudStack
 
CloudStack IPv6 in production
CloudStack IPv6 in productionCloudStack IPv6 in production
CloudStack IPv6 in production
 
Telia latvija cloudstack
Telia latvija cloudstackTelia latvija cloudstack
Telia latvija cloudstack
 
Improving CloudStack for operators
Improving CloudStack for operatorsImproving CloudStack for operators
Improving CloudStack for operators
 
Cloud stack user group - Welcome
Cloud stack user group -  WelcomeCloud stack user group -  Welcome
Cloud stack user group - Welcome
 
CloudStack news
CloudStack newsCloudStack news
CloudStack news
 
CloudStack Container Service
CloudStack Container ServiceCloudStack Container Service
CloudStack Container Service
 
Introduction and news
Introduction and newsIntroduction and news
Introduction and news
 
Designing Lean CloudStack Environments for the Edge - IndiQus - CloudStack E...
 Designing Lean CloudStack Environments for the Edge - IndiQus - CloudStack E... Designing Lean CloudStack Environments for the Edge - IndiQus - CloudStack E...
Designing Lean CloudStack Environments for the Edge - IndiQus - CloudStack E...
 
Containers and CloudStack
Containers and CloudStackContainers and CloudStack
Containers and CloudStack
 
Introduction and CloudStack news
Introduction and CloudStack newsIntroduction and CloudStack news
Introduction and CloudStack news
 
Simplifying the Move to OpenStack
Simplifying the Move to OpenStackSimplifying the Move to OpenStack
Simplifying the Move to OpenStack
 
[OpenStack Day in Korea 2015] Track 2-6 - Apache Tajo on Swift
[OpenStack Day in Korea 2015] Track 2-6 - Apache Tajo on Swift[OpenStack Day in Korea 2015] Track 2-6 - Apache Tajo on Swift
[OpenStack Day in Korea 2015] Track 2-6 - Apache Tajo on Swift
 
Introductions & CloudStack news - Giles Sirett
Introductions & CloudStack news - Giles SirettIntroductions & CloudStack news - Giles Sirett
Introductions & CloudStack news - Giles Sirett
 
CloudStack EU user group - fast SAP provisioning
CloudStack EU user group - fast SAP provisioningCloudStack EU user group - fast SAP provisioning
CloudStack EU user group - fast SAP provisioning
 
Fast SAP system provisioning based on CloudStack
Fast SAP system provisioning based on CloudStack Fast SAP system provisioning based on CloudStack
Fast SAP system provisioning based on CloudStack
 
[OpenStack Day in Korea 2015] Track 2-2 - OpenStack for PaaS: Why it's Hot
[OpenStack Day in Korea 2015] Track 2-2 - OpenStack for PaaS: Why it's Hot[OpenStack Day in Korea 2015] Track 2-2 - OpenStack for PaaS: Why it's Hot
[OpenStack Day in Korea 2015] Track 2-2 - OpenStack for PaaS: Why it's Hot
 
Meshing OpenStack and Bare Metal Networks with EVPN - David Iles, Mellanox Te...
Meshing OpenStack and Bare Metal Networks with EVPN - David Iles, Mellanox Te...Meshing OpenStack and Bare Metal Networks with EVPN - David Iles, Mellanox Te...
Meshing OpenStack and Bare Metal Networks with EVPN - David Iles, Mellanox Te...
 
Adam Dagnall: Advanced S3 compatible storage integration in CloudStack
Adam Dagnall: Advanced S3 compatible storage integration in CloudStackAdam Dagnall: Advanced S3 compatible storage integration in CloudStack
Adam Dagnall: Advanced S3 compatible storage integration in CloudStack
 

Similar to Terraform for Provisioning CloudStack Infrastructure

Cloud-native .NET Microservices mit Kubernetes
Cloud-native .NET Microservices mit KubernetesCloud-native .NET Microservices mit Kubernetes
Cloud-native .NET Microservices mit KubernetesQAware GmbH
 
Exploring Phantom Traffic Jams in Your Data Flows
Exploring Phantom Traffic Jams in Your Data Flows Exploring Phantom Traffic Jams in Your Data Flows
Exploring Phantom Traffic Jams in Your Data Flows ScyllaDB
 
CEPH DAY BERLIN - UNLIMITED FILESERVER WITH SAMBA CTDB AND CEPHFS
CEPH DAY BERLIN - UNLIMITED FILESERVER WITH SAMBA CTDB AND CEPHFSCEPH DAY BERLIN - UNLIMITED FILESERVER WITH SAMBA CTDB AND CEPHFS
CEPH DAY BERLIN - UNLIMITED FILESERVER WITH SAMBA CTDB AND CEPHFSCeph Community
 
A hitchhiker‘s guide to the cloud native stack
A hitchhiker‘s guide to the cloud native stackA hitchhiker‘s guide to the cloud native stack
A hitchhiker‘s guide to the cloud native stackQAware GmbH
 
A Hitchhiker’s Guide to the Cloud Native Stack. #CDS17
A Hitchhiker’s Guide to the Cloud Native Stack. #CDS17A Hitchhiker’s Guide to the Cloud Native Stack. #CDS17
A Hitchhiker’s Guide to the Cloud Native Stack. #CDS17Mario-Leander Reimer
 
Tech Talk: DevOps at LeanIX @ Startup Camp Berlin
Tech Talk: DevOps at LeanIX @ Startup Camp BerlinTech Talk: DevOps at LeanIX @ Startup Camp Berlin
Tech Talk: DevOps at LeanIX @ Startup Camp BerlinLeanIX GmbH
 
Apache Spark with Hortonworks Data Platform - Seattle Meetup
Apache Spark with Hortonworks Data Platform - Seattle MeetupApache Spark with Hortonworks Data Platform - Seattle Meetup
Apache Spark with Hortonworks Data Platform - Seattle MeetupSaptak Sen
 
AKS - Azure Kubernetes Services 101
AKS - Azure Kubernetes Services 101AKS - Azure Kubernetes Services 101
AKS - Azure Kubernetes Services 101Jorge Arteiro
 
Cloud-native .NET-Microservices mit Kubernetes @BASTAcon
Cloud-native .NET-Microservices mit Kubernetes @BASTAconCloud-native .NET-Microservices mit Kubernetes @BASTAcon
Cloud-native .NET-Microservices mit Kubernetes @BASTAconMario-Leander Reimer
 
Steeltoe Meetup Toronto 4-18-2017
Steeltoe Meetup Toronto 4-18-2017Steeltoe Meetup Toronto 4-18-2017
Steeltoe Meetup Toronto 4-18-2017Zach Brown
 
Was is Docker? Or: Docker for Software Developers
Was is Docker? Or: Docker for Software DevelopersWas is Docker? Or: Docker for Software Developers
Was is Docker? Or: Docker for Software DevelopersChristian Nagel
 
High-Performance FAAS with Nuclio
High-Performance FAAS with NuclioHigh-Performance FAAS with Nuclio
High-Performance FAAS with NuclioQAware GmbH
 
Connect Everything with NATS - Cloud Expo Europe
Connect Everything with NATS - Cloud Expo EuropeConnect Everything with NATS - Cloud Expo Europe
Connect Everything with NATS - Cloud Expo Europewallyqs
 
TIAD 2016 : Real-Time Data Processing Pipeline & Visualization with Docker, S...
TIAD 2016 : Real-Time Data Processing Pipeline & Visualization with Docker, S...TIAD 2016 : Real-Time Data Processing Pipeline & Visualization with Docker, S...
TIAD 2016 : Real-Time Data Processing Pipeline & Visualization with Docker, S...The Incredible Automation Day
 
Real-Time Data Processing Pipeline & Visualization with Docker, Spark, Kafka ...
Real-Time Data Processing Pipeline & Visualization with Docker, Spark, Kafka ...Real-Time Data Processing Pipeline & Visualization with Docker, Spark, Kafka ...
Real-Time Data Processing Pipeline & Visualization with Docker, Spark, Kafka ...Roberto Hashioka
 
Machine Learning in the Enterprise 2019
Machine Learning in the Enterprise 2019   Machine Learning in the Enterprise 2019
Machine Learning in the Enterprise 2019 Timothy Spann
 
Introduction to TensorFlow
Introduction to TensorFlowIntroduction to TensorFlow
Introduction to TensorFlowMatthias Feys
 
Openstack Benelux Conference 2014 Red Hat Keynote
Openstack Benelux Conference 2014  Red Hat KeynoteOpenstack Benelux Conference 2014  Red Hat Keynote
Openstack Benelux Conference 2014 Red Hat KeynoteMicrosoft
 

Similar to Terraform for Provisioning CloudStack Infrastructure (20)

Cloud-native .NET Microservices mit Kubernetes
Cloud-native .NET Microservices mit KubernetesCloud-native .NET Microservices mit Kubernetes
Cloud-native .NET Microservices mit Kubernetes
 
Exploring Phantom Traffic Jams in Your Data Flows
Exploring Phantom Traffic Jams in Your Data Flows Exploring Phantom Traffic Jams in Your Data Flows
Exploring Phantom Traffic Jams in Your Data Flows
 
CEPH DAY BERLIN - UNLIMITED FILESERVER WITH SAMBA CTDB AND CEPHFS
CEPH DAY BERLIN - UNLIMITED FILESERVER WITH SAMBA CTDB AND CEPHFSCEPH DAY BERLIN - UNLIMITED FILESERVER WITH SAMBA CTDB AND CEPHFS
CEPH DAY BERLIN - UNLIMITED FILESERVER WITH SAMBA CTDB AND CEPHFS
 
A hitchhiker‘s guide to the cloud native stack
A hitchhiker‘s guide to the cloud native stackA hitchhiker‘s guide to the cloud native stack
A hitchhiker‘s guide to the cloud native stack
 
A Hitchhiker’s Guide to the Cloud Native Stack. #CDS17
A Hitchhiker’s Guide to the Cloud Native Stack. #CDS17A Hitchhiker’s Guide to the Cloud Native Stack. #CDS17
A Hitchhiker’s Guide to the Cloud Native Stack. #CDS17
 
From Zero to Hero - Nexinto
From Zero to Hero - NexintoFrom Zero to Hero - Nexinto
From Zero to Hero - Nexinto
 
Tech Talk: DevOps at LeanIX @ Startup Camp Berlin
Tech Talk: DevOps at LeanIX @ Startup Camp BerlinTech Talk: DevOps at LeanIX @ Startup Camp Berlin
Tech Talk: DevOps at LeanIX @ Startup Camp Berlin
 
Apache Spark with Hortonworks Data Platform - Seattle Meetup
Apache Spark with Hortonworks Data Platform - Seattle MeetupApache Spark with Hortonworks Data Platform - Seattle Meetup
Apache Spark with Hortonworks Data Platform - Seattle Meetup
 
AKS - Azure Kubernetes Services 101
AKS - Azure Kubernetes Services 101AKS - Azure Kubernetes Services 101
AKS - Azure Kubernetes Services 101
 
Cloud-native .NET-Microservices mit Kubernetes @BASTAcon
Cloud-native .NET-Microservices mit Kubernetes @BASTAconCloud-native .NET-Microservices mit Kubernetes @BASTAcon
Cloud-native .NET-Microservices mit Kubernetes @BASTAcon
 
Steeltoe Meetup Toronto 4-18-2017
Steeltoe Meetup Toronto 4-18-2017Steeltoe Meetup Toronto 4-18-2017
Steeltoe Meetup Toronto 4-18-2017
 
Was is Docker? Or: Docker for Software Developers
Was is Docker? Or: Docker for Software DevelopersWas is Docker? Or: Docker for Software Developers
Was is Docker? Or: Docker for Software Developers
 
High-Performance FAAS with Nuclio
High-Performance FAAS with NuclioHigh-Performance FAAS with Nuclio
High-Performance FAAS with Nuclio
 
Connect Everything with NATS - Cloud Expo Europe
Connect Everything with NATS - Cloud Expo EuropeConnect Everything with NATS - Cloud Expo Europe
Connect Everything with NATS - Cloud Expo Europe
 
TIAD 2016 : Real-Time Data Processing Pipeline & Visualization with Docker, S...
TIAD 2016 : Real-Time Data Processing Pipeline & Visualization with Docker, S...TIAD 2016 : Real-Time Data Processing Pipeline & Visualization with Docker, S...
TIAD 2016 : Real-Time Data Processing Pipeline & Visualization with Docker, S...
 
Real-Time Data Processing Pipeline & Visualization with Docker, Spark, Kafka ...
Real-Time Data Processing Pipeline & Visualization with Docker, Spark, Kafka ...Real-Time Data Processing Pipeline & Visualization with Docker, Spark, Kafka ...
Real-Time Data Processing Pipeline & Visualization with Docker, Spark, Kafka ...
 
London HUG 12/4
London HUG 12/4London HUG 12/4
London HUG 12/4
 
Machine Learning in the Enterprise 2019
Machine Learning in the Enterprise 2019   Machine Learning in the Enterprise 2019
Machine Learning in the Enterprise 2019
 
Introduction to TensorFlow
Introduction to TensorFlowIntroduction to TensorFlow
Introduction to TensorFlow
 
Openstack Benelux Conference 2014 Red Hat Keynote
Openstack Benelux Conference 2014  Red Hat KeynoteOpenstack Benelux Conference 2014  Red Hat Keynote
Openstack Benelux Conference 2014 Red Hat Keynote
 

More from ShapeBlue

CloudStack Authentication Methods – Harikrishna Patnala, ShapeBlue
CloudStack Authentication Methods – Harikrishna Patnala, ShapeBlueCloudStack Authentication Methods – Harikrishna Patnala, ShapeBlue
CloudStack Authentication Methods – Harikrishna Patnala, ShapeBlueShapeBlue
 
CloudStack Tooling Ecosystem – Kiran Chavala, ShapeBlue
CloudStack Tooling Ecosystem – Kiran Chavala, ShapeBlueCloudStack Tooling Ecosystem – Kiran Chavala, ShapeBlue
CloudStack Tooling Ecosystem – Kiran Chavala, ShapeBlueShapeBlue
 
Elevating Cloud Infrastructure with Object Storage, DRS, VM Scheduling, and D...
Elevating Cloud Infrastructure with Object Storage, DRS, VM Scheduling, and D...Elevating Cloud Infrastructure with Object Storage, DRS, VM Scheduling, and D...
Elevating Cloud Infrastructure with Object Storage, DRS, VM Scheduling, and D...ShapeBlue
 
VM Migration from VMware to CloudStack and KVM – Suresh Anaparti, ShapeBlue
VM Migration from VMware to CloudStack and KVM – Suresh Anaparti, ShapeBlueVM Migration from VMware to CloudStack and KVM – Suresh Anaparti, ShapeBlue
VM Migration from VMware to CloudStack and KVM – Suresh Anaparti, ShapeBlueShapeBlue
 
How We Grew Up with CloudStack and its Journey – Dilip Singh, DataHub
How We Grew Up with CloudStack and its Journey – Dilip Singh, DataHubHow We Grew Up with CloudStack and its Journey – Dilip Singh, DataHub
How We Grew Up with CloudStack and its Journey – Dilip Singh, DataHubShapeBlue
 
What’s New in CloudStack 4.19, Abhishek Kumar, Release Manager Apache CloudSt...
What’s New in CloudStack 4.19, Abhishek Kumar, Release Manager Apache CloudSt...What’s New in CloudStack 4.19, Abhishek Kumar, Release Manager Apache CloudSt...
What’s New in CloudStack 4.19, Abhishek Kumar, Release Manager Apache CloudSt...ShapeBlue
 
CloudStack 101: The Best Way to Build Your Private Cloud – Rohit Yadav, VP Ap...
CloudStack 101: The Best Way to Build Your Private Cloud – Rohit Yadav, VP Ap...CloudStack 101: The Best Way to Build Your Private Cloud – Rohit Yadav, VP Ap...
CloudStack 101: The Best Way to Build Your Private Cloud – Rohit Yadav, VP Ap...ShapeBlue
 
How We Use CloudStack to Provide Managed Hosting - Swen Brüseke - proIO
How We Use CloudStack to Provide Managed Hosting - Swen Brüseke - proIOHow We Use CloudStack to Provide Managed Hosting - Swen Brüseke - proIO
How We Use CloudStack to Provide Managed Hosting - Swen Brüseke - proIOShapeBlue
 
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...ShapeBlue
 
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...ShapeBlue
 
KVM Security Groups Under the Hood - Wido den Hollander - Your.Online
KVM Security Groups Under the Hood - Wido den Hollander - Your.OnlineKVM Security Groups Under the Hood - Wido den Hollander - Your.Online
KVM Security Groups Under the Hood - Wido den Hollander - Your.OnlineShapeBlue
 
How to Re-use Old Hardware with CloudStack. Saving Money and the Environment ...
How to Re-use Old Hardware with CloudStack. Saving Money and the Environment ...How to Re-use Old Hardware with CloudStack. Saving Money and the Environment ...
How to Re-use Old Hardware with CloudStack. Saving Money and the Environment ...ShapeBlue
 
Use Existing Assets to Build a Powerful In-house Cloud Solution - Magali Perv...
Use Existing Assets to Build a Powerful In-house Cloud Solution - Magali Perv...Use Existing Assets to Build a Powerful In-house Cloud Solution - Magali Perv...
Use Existing Assets to Build a Powerful In-house Cloud Solution - Magali Perv...ShapeBlue
 
Import Export Virtual Machine for KVM Hypervisor - Ayush Pandey - University ...
Import Export Virtual Machine for KVM Hypervisor - Ayush Pandey - University ...Import Export Virtual Machine for KVM Hypervisor - Ayush Pandey - University ...
Import Export Virtual Machine for KVM Hypervisor - Ayush Pandey - University ...ShapeBlue
 
DRaaS using Snapshot copy and destination selection (DRaaS) - Alexandre Matti...
DRaaS using Snapshot copy and destination selection (DRaaS) - Alexandre Matti...DRaaS using Snapshot copy and destination selection (DRaaS) - Alexandre Matti...
DRaaS using Snapshot copy and destination selection (DRaaS) - Alexandre Matti...ShapeBlue
 
Mitigating Common CloudStack Instance Deployment Failures - Jithin Raju - Sha...
Mitigating Common CloudStack Instance Deployment Failures - Jithin Raju - Sha...Mitigating Common CloudStack Instance Deployment Failures - Jithin Raju - Sha...
Mitigating Common CloudStack Instance Deployment Failures - Jithin Raju - Sha...ShapeBlue
 
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlue
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlueElevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlue
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlueShapeBlue
 
Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...
Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...
Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...ShapeBlue
 
Hypervisor Agnostic DRS in CloudStack - Brief overview & demo - Vishesh Jinda...
Hypervisor Agnostic DRS in CloudStack - Brief overview & demo - Vishesh Jinda...Hypervisor Agnostic DRS in CloudStack - Brief overview & demo - Vishesh Jinda...
Hypervisor Agnostic DRS in CloudStack - Brief overview & demo - Vishesh Jinda...ShapeBlue
 
What’s New in CloudStack 4.19 - Abhishek Kumar - ShapeBlue
What’s New in CloudStack 4.19 - Abhishek Kumar - ShapeBlueWhat’s New in CloudStack 4.19 - Abhishek Kumar - ShapeBlue
What’s New in CloudStack 4.19 - Abhishek Kumar - ShapeBlueShapeBlue
 

More from ShapeBlue (20)

CloudStack Authentication Methods – Harikrishna Patnala, ShapeBlue
CloudStack Authentication Methods – Harikrishna Patnala, ShapeBlueCloudStack Authentication Methods – Harikrishna Patnala, ShapeBlue
CloudStack Authentication Methods – Harikrishna Patnala, ShapeBlue
 
CloudStack Tooling Ecosystem – Kiran Chavala, ShapeBlue
CloudStack Tooling Ecosystem – Kiran Chavala, ShapeBlueCloudStack Tooling Ecosystem – Kiran Chavala, ShapeBlue
CloudStack Tooling Ecosystem – Kiran Chavala, ShapeBlue
 
Elevating Cloud Infrastructure with Object Storage, DRS, VM Scheduling, and D...
Elevating Cloud Infrastructure with Object Storage, DRS, VM Scheduling, and D...Elevating Cloud Infrastructure with Object Storage, DRS, VM Scheduling, and D...
Elevating Cloud Infrastructure with Object Storage, DRS, VM Scheduling, and D...
 
VM Migration from VMware to CloudStack and KVM – Suresh Anaparti, ShapeBlue
VM Migration from VMware to CloudStack and KVM – Suresh Anaparti, ShapeBlueVM Migration from VMware to CloudStack and KVM – Suresh Anaparti, ShapeBlue
VM Migration from VMware to CloudStack and KVM – Suresh Anaparti, ShapeBlue
 
How We Grew Up with CloudStack and its Journey – Dilip Singh, DataHub
How We Grew Up with CloudStack and its Journey – Dilip Singh, DataHubHow We Grew Up with CloudStack and its Journey – Dilip Singh, DataHub
How We Grew Up with CloudStack and its Journey – Dilip Singh, DataHub
 
What’s New in CloudStack 4.19, Abhishek Kumar, Release Manager Apache CloudSt...
What’s New in CloudStack 4.19, Abhishek Kumar, Release Manager Apache CloudSt...What’s New in CloudStack 4.19, Abhishek Kumar, Release Manager Apache CloudSt...
What’s New in CloudStack 4.19, Abhishek Kumar, Release Manager Apache CloudSt...
 
CloudStack 101: The Best Way to Build Your Private Cloud – Rohit Yadav, VP Ap...
CloudStack 101: The Best Way to Build Your Private Cloud – Rohit Yadav, VP Ap...CloudStack 101: The Best Way to Build Your Private Cloud – Rohit Yadav, VP Ap...
CloudStack 101: The Best Way to Build Your Private Cloud – Rohit Yadav, VP Ap...
 
How We Use CloudStack to Provide Managed Hosting - Swen Brüseke - proIO
How We Use CloudStack to Provide Managed Hosting - Swen Brüseke - proIOHow We Use CloudStack to Provide Managed Hosting - Swen Brüseke - proIO
How We Use CloudStack to Provide Managed Hosting - Swen Brüseke - proIO
 
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...
 
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...
 
KVM Security Groups Under the Hood - Wido den Hollander - Your.Online
KVM Security Groups Under the Hood - Wido den Hollander - Your.OnlineKVM Security Groups Under the Hood - Wido den Hollander - Your.Online
KVM Security Groups Under the Hood - Wido den Hollander - Your.Online
 
How to Re-use Old Hardware with CloudStack. Saving Money and the Environment ...
How to Re-use Old Hardware with CloudStack. Saving Money and the Environment ...How to Re-use Old Hardware with CloudStack. Saving Money and the Environment ...
How to Re-use Old Hardware with CloudStack. Saving Money and the Environment ...
 
Use Existing Assets to Build a Powerful In-house Cloud Solution - Magali Perv...
Use Existing Assets to Build a Powerful In-house Cloud Solution - Magali Perv...Use Existing Assets to Build a Powerful In-house Cloud Solution - Magali Perv...
Use Existing Assets to Build a Powerful In-house Cloud Solution - Magali Perv...
 
Import Export Virtual Machine for KVM Hypervisor - Ayush Pandey - University ...
Import Export Virtual Machine for KVM Hypervisor - Ayush Pandey - University ...Import Export Virtual Machine for KVM Hypervisor - Ayush Pandey - University ...
Import Export Virtual Machine for KVM Hypervisor - Ayush Pandey - University ...
 
DRaaS using Snapshot copy and destination selection (DRaaS) - Alexandre Matti...
DRaaS using Snapshot copy and destination selection (DRaaS) - Alexandre Matti...DRaaS using Snapshot copy and destination selection (DRaaS) - Alexandre Matti...
DRaaS using Snapshot copy and destination selection (DRaaS) - Alexandre Matti...
 
Mitigating Common CloudStack Instance Deployment Failures - Jithin Raju - Sha...
Mitigating Common CloudStack Instance Deployment Failures - Jithin Raju - Sha...Mitigating Common CloudStack Instance Deployment Failures - Jithin Raju - Sha...
Mitigating Common CloudStack Instance Deployment Failures - Jithin Raju - Sha...
 
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlue
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlueElevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlue
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlue
 
Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...
Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...
Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...
 
Hypervisor Agnostic DRS in CloudStack - Brief overview & demo - Vishesh Jinda...
Hypervisor Agnostic DRS in CloudStack - Brief overview & demo - Vishesh Jinda...Hypervisor Agnostic DRS in CloudStack - Brief overview & demo - Vishesh Jinda...
Hypervisor Agnostic DRS in CloudStack - Brief overview & demo - Vishesh Jinda...
 
What’s New in CloudStack 4.19 - Abhishek Kumar - ShapeBlue
What’s New in CloudStack 4.19 - Abhishek Kumar - ShapeBlueWhat’s New in CloudStack 4.19 - Abhishek Kumar - ShapeBlue
What’s New in CloudStack 4.19 - Abhishek Kumar - ShapeBlue
 

Recently uploaded

"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentationphoebematthew05
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Neo4j
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfngoud9212
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 

Recently uploaded (20)

"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentation
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdf
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 

Terraform for Provisioning CloudStack Infrastructure

  • 1. Linux höchstpersönlich. CloudStack & Terraform [CloudStack EUG Meetup 2020] Robert Sander <r.sander@heinlein-support.de> CloudStack & Terraform
  • 2. Linux höchstpersönlich. CloudStack & Terraform [CloudStack EUG Meetup 2020] Robert Sander <r.sander@heinlein-support.de> Terraform? ➞ Provisioning ➞ Management ➞ on CloudStack
  • 3. Linux höchstpersönlich. CloudStack & Terraform [CloudStack EUG Meetup 2020] Robert Sander <r.sander@heinlein-support.de> ➞ Heinlein Support ➞ IT Consulting with 24/7 Linux support team (35 staff) ➞ Running ISP operations since 1992 ➞ Vast experience of supporting core IT services for business of all sizes ➞ 24/7 Emergency Hotline: +49 30 40 50 5110 ➞ LPIC-2 & LPIC-3-certified experts ➞ Competent to advise on any issues around Linux, servers, or DMZ ➞ Deals with incidents: Down times, Performance issues, Hacking attacks, Data loss ➞ Offers strategic advice: Revision, Planning, Consultancy, Configuration advice
  • 4. Linux höchstpersönlich. CloudStack & Terraform [CloudStack EUG Meetup 2020] Robert Sander <r.sander@heinlein-support.de> Part 1: Terraform
  • 5. Linux höchstpersönlich. CloudStack & Terraform [CloudStack EUG Meetup 2020] Robert Sander <r.sander@heinlein-support.de> Terraform What does it offer? ➞ Infrastructure as Code ➞ high level configuration syntax as blueprint of data center ➞ Execution Plans ➞ show changes before being applied ➞ Resource Graph ➞ parallelization of execution where possible ➞ Change Automation ➞ minimal interaction
  • 6. Linux höchstpersönlich. CloudStack & Terraform [CloudStack EUG Meetup 2020] Robert Sander <r.sander@heinlein-support.de> Terraform Where does it come from? ➞ created by HashiCorp ➞ also: Vagrant, Packer, Consul, Vault, Nomad, Serf, Sentinel ➞ initial release July 2014 ➞ current release 0.12.21, February 2020 ➞ written in Go ➞ https://github.com/hashicorp/terraform ➞ https://www.terraform.io/
  • 7. Linux höchstpersönlich. CloudStack & Terraform [CloudStack EUG Meetup 2020] Robert Sander <r.sander@heinlein-support.de> Terraform Why do I use it? ➞ I'm trainer for Ceph ➞ every student needs the same environment ➞ 6 - 12 VMs per environment, depending on course content ➞ up to 9 students plus trainer ➞ too much manual work ➞ we have CloudStack ➞ there's a CloudStack provider for Terraform ➞ https://www.terraform.io/docs/providers/cloudstack/index.html
  • 8. Linux höchstpersönlich. CloudStack & Terraform [CloudStack EUG Meetup 2020] Robert Sander <r.sander@heinlein-support.de> Terraform What can it do? ➞ Providers provider "cloudstack" { api_url = … api_key = … secret_key = … } ➞ Resources ➞ "create things" depending on provider ➞ Modules ➞ Input Variables ➞ contain one or more resource definitions ➞ Output Values ➞ Variables
  • 9. Linux höchstpersönlich. CloudStack & Terraform [CloudStack EUG Meetup 2020] Robert Sander <r.sander@heinlein-support.de> Terraform What can it do? ➞ create network resource "cloudstack_network" "net-01" { zone = zone UUID project = project UUID name = "ceph-tn${var.student}-public" display_text = "Ceph Academy TN ${var.student} Public" cidr = "10.24.4.0/24" network_domain = "ceph.heinlein-akademie.de" network_offering = offering UUID }
  • 10. Linux höchstpersönlich. CloudStack & Terraform [CloudStack EUG Meetup 2020] Robert Sander <r.sander@heinlein-support.de> Terraform What can it do? ➞ create instance resource "cloudstack_instance" "vm" { zone = zone UUID project = project UUID network_id = network UUID ip_address = IP UUID name = var.name display_name = "TN ${var.student} ${var.name}" service_offering = offering UUID template = template UUID keypair = var.keypair expunge = true } ➞
  • 11. Linux höchstpersönlich. CloudStack & Terraform [CloudStack EUG Meetup 2020] Robert Sander <r.sander@heinlein-support.de> Terraform What can it do? ➞ create disk volume resource "cloudstack_disk" "disk-01" { name = "tn${var.student}-${cloudstack_instance.vm.name}-01" zone = zone UUID project = project UUID disk_offering = offering UUID virtual_machine_id = cloudstack_instance.vm.id attach = true device_id = 4 }
  • 12. Linux höchstpersönlich. CloudStack & Terraform [CloudStack EUG Meetup 2020] Robert Sander <r.sander@heinlein-support.de> Terraform Afterwards ➞ Terraform does nothing inside the created VMs ➞ Ansible ➞ SaltStack ➞ Puppet ➞ Chef
  • 13. Linux höchstpersönlich. CloudStack & Terraform [CloudStack EUG Meetup 2020] Robert Sander <r.sander@heinlein-support.de> Terraform Modules ➞ sub directories with main.tf ➞ terraform init after changing modules ➞ . ├── ceph-academy.tf ├── cephnode │   └── main.tf ├── clientnode │   └── main.tf ├── student │   └── main.tf └── variables.tf
  • 14. Linux höchstpersönlich. CloudStack & Terraform [CloudStack EUG Meetup 2020] Robert Sander <r.sander@heinlein-support.de> Terraform Projects ➞ Terraform directory ⇔ CloudStack project ➞ Terraform reads every .tf file in current working directory ➞ Terraform creates execution plan ➞ Terraform applies all changes ➞ adds new instances ➞ removes instances not in config any more ➞ state is saved in terraform.tfstate ➞ terraform refresh
  • 15. Linux höchstpersönlich. CloudStack & Terraform [CloudStack EUG Meetup 2020] Robert Sander <r.sander@heinlein-support.de> Part 1: Demo
  • 16. Linux höchstpersönlich. CloudStack & Terraform [CloudStack EUG Meetup 2020] Robert Sander <r.sander@heinlein-support.de> instance.tf_init.tf Simple Example provider "cloudstack" resource "cloudstack_ssh_keypair" "rsander" resource "cloudstack_instance" "instance01"
  • 17. Linux höchstpersönlich. CloudStack & Terraform [CloudStack EUG Meetup 2020] Robert Sander <r.sander@heinlein-support.de> student/main.tfceph-academy.tf Ceph Academy Example provider "cloudstack" resource "ssh_keypair" "rsander" resource "cloudstack_network" "public-net" module "trainer" source = ./student module "student01" source = ./student resource "cloudstack_network" "cluster-net" module "ceph01" source = ../cephnode
  • 18. Linux höchstpersönlich. CloudStack & Terraform [CloudStack EUG Meetup 2020] Robert Sander <r.sander@heinlein-support.de> student/main.tf cephnode/main.tf Ceph Academy Example resource "cloudstack_instance" "vm" resource "cloudstack_network" "public-net" resource "cloudstack_network" "cluster-net" resource "cloudstack_nic" "eth1" resource "cloudstack_disk" "disk-01" resource "ssh_keypair" "rsander"
  • 19. Linux höchstpersönlich. CloudStack & Terraform [CloudStack EUG Meetup 2020] Robert Sander <r.sander@heinlein-support.de> ➞ I am always happy to help and look forward to connecting with you. ➞ Robert Sander ➞ Mail: r.sander@heinlein-support.de ➞ Phone: +49 30 40 50 51 43 ➞ If it's urgent: ➞ Heinlein Support 24/7 Emergency hotline +49 30 40 50 5110
  • 20. Linux höchstpersönlich. CloudStack & Terraform [CloudStack EUG Meetup 2020] Robert Sander <r.sander@heinlein-support.de> So far, so good. Now it is your turn: Time for questions and discussions!
  • 21. Linux höchstpersönlich. CloudStack & Terraform [CloudStack EUG Meetup 2020] Robert Sander <r.sander@heinlein-support.de> We are looking for: Administrators, consultants, and trainers We are offering: Interesting projects, appreciation and customer satisfaction, opportunities to work independently, a great team, work-life balance ...and of course: Linux, Linux, Linux... http://www.heinlein-support.de/jobs
  • 22. Linux höchstpersönlich. CloudStack & Terraform [CloudStack EUG Meetup 2020] Robert Sander <r.sander@heinlein-support.de> And finally... ➞ Thank you for your attention! ➞ We hope you had a productive day and wish you the best of success Hope to see you again soon!
  • 23. Linux höchstpersönlich. CloudStack & Terraform [CloudStack EUG Meetup 2020] Robert Sander <r.sander@heinlein-support.de> Heinlein Support assists with all questions around Linux servers HEINLEIN AKADEMIE Professional training by professionals: We convey the top 10% of knowledge: Acquire useful know-how and benefit from our extensive practical experience. HEINLEIN CONSULTING The backup for your own Linux administration: LPIC-2- certified professionals help with your CompetenceCall emergencies, also available on SLAs covering 24/7- availability. HEINLEIN HOSTING Business hosting tailored to your needs and professional maintenance. Security and availability are our top priorities.