SlideShare uma empresa Scribd logo
1 de 23
1
Cloudify 4.6
May 2019
2
FYI
● The webinar is being recorded and you will receive
a copy of the slides and recording.
● Live Q & A session - Use the Button on your ZOOM
platform
● Duration - Roughly 50 Minutes
3
Agenda
● The Cloudify Roadmap for Next Generation Orchestration
● Cloudify 4.6 Highlights and Features
● Demo Theatre from MEF18 PoC
Orchestrated SD-WAN: LSO-Enabled Solution With Container-Based uCPEs
● Live Q & A session
4
Cloudify Strategic Focus
Please note that all references to future releases and timing represent indicative strategy and future product
plans known to Cloudify at this time, and that all references to dates and features are subject to change.
Cloudify retains the right to make changes at any time to future software development plans or timescales and
assumes no liability for the use of the information set out herein.
Edge Orchestration
Running enterprise grade edge networks requires top notch management and orchestration solution capable of supporting a huge number of devices and a wide range of operations
• Federated management solution
o Wide horizontal scaling (active-active management clusters)
o Vertical scaling leveraging edge site local (potentially lightweight) managers
• Criteria based orchestration – Automatically match services to deployment sites by context
• Edge dedicated actionable dashboards – easy provisioning and day2 operations
End-to-End Orchestration Manager
Networks are large, complex, and diverse. Existing VNFM solutions run segments of the networks. Cloudify solution provides overarching orchestration management
• Intuitive Service Composition
o Self aware services and sites capable of communication with each other
o Simple intent based declarations (combine advanced plugins into simplified composer actions)
• Policy Driven orchestration – Closed loop automation, Subscribe to deployment changes
Built for the Enterprise
Cloudify solutions are built with enterprise in mind. Operational aspects, regulatory compliance requirements and topology considerations are core themes.
• Manager of managers – scale, ease of deployment and maintenance, balance LOB requirements and operational needs..
• Cloud native - Microservice deployment
• Live updates with short-to-zero downtime
• Security & Ecosystem friendliness - Local user password policy, Audit service
• SaaS hybrid solution
5
Cloudify 12-month Plan
Q1’ 2019 Q2’ 2019 Q3’ 2019 Q4’ 2019
V4.6
• Agents widget
• Namespaces and capability
declaration allow for easier
service composition
• Scheduled workflows
• Ansible plugin
• Kubespray integration
• Considerable reduction of
snapshot time (faster upgrades)
• Manager support for external DB
• Security improvements (AES256,
RabbitMQ Segregation)
V5.0
• Management horizontal scaling:
Active-Active Management
Clusters
• Sites and labels backend + simple
view
• Closed loop automation
connectors (ph.1)
• Ansible plugin
• Service composition: Component
• Input validation
• Manager of Managers aligned for
5.0
• Cloud native managers (ph. 1)
• Backend adjustments supporting
local and geo-resilience
• Preps for non-snapshot upgrade
V5.1
• Lightweight edge managers
• Criteria based orchestration
• Intuitive Service Composition
• Closed loop automation
connectors (ph.2)
• Audit service
• Cloud native manager -
microservice arch & K8S based
MoM
• Zero-downtime upgrades
Extend Cloudify’s repository of certified vendors and flows, Continuous alignment with TOSCA, Getting started materials
Please note that all references to future releases and timing represent indicative strategy and future product
plans known to Cloudify at this time, and that all references to dates and features are subject to change.
Cloudify retains the right to make changes at any time to future software development plans or timescales and
assumes no liability for the use of the information set out herein.
6
Multi Cloud & Stack Orchestration
Service
Orchestration
E2E Service Definition
End to End Orchestration
ConfigurationWorkflowPolicy Infrastructure
uService
External Service
7
Multi Cloud & Stack Orchestration
Service
Orchestration
E2E Service Definition
Infrastructure Orchestration
End to End Orchestration
Configuration
IaaS Orchestration Cloud Infrastructure Network Edge
Azure
ARM
WorkflowPolicy Infrastructure
uService
External Service
uService Orchestration
External service orchestration
8
Multi Cloud & Stack Orchestration
Service
Orchestration
E2E Service Definition
uService Orchestration
Infrastructure Orchestration
End to End Orchestration
Configuration
IaaS Orchestration Cloud Infrastructure Network Edge
Azure
ARM
Configuration
Automation tools Service configuration Network Script
WorkflowPolicy Infrastructure
uService
External Service
External service orchestration
9
What’s new?
Enhanced Service Composition
Enhanced Service Composition - Namespaces
Namespaces
Namespaces support in the Cloudify DSL allow for simpler service composition
through embedding blueprints inside other blueprints.
tosca_definitions_version: cloudify_dsl_1_3
imports:
- http://www.getcloudify.org/spec/cloudify/4.5/types.yaml
- web--blueprint:openstack_vm
- DB--blueprint:openstack_vm
node_templates:
app:
type: cloudify.nodes.Application
properties:
host_ip: { get_input: web--ip }
relationships:
- type: contained_in
target: web--vm
- type: connected_to
target: DB--vm
Import blueprint with namespace
Import an instance of the
openstack_vm blueprint and refer
to it as *web*, and another instance
of the same blueprint and refer to it
as *DB*
Inputs include namespace
Node names include namespace
tosca_definitions_version: cloudify_dsl_1_3
imports:
- http://www.getcloudify.org/spec/cloudify/4.5/types.yaml
- plugin:cloudify-openstack-plugin
inputs:
agent_user: centos
default: centos
flavor:
default: m1.medium
ip: {}
node_templates:
vm:
type: cloudify.openstack.nodes.Server
properties:
openstack_config: *openstack_config
agent_config:
user: { get_input: agent_user }
install_method: init_script
flavor: { get_input: flavor }
relationships:
- type: connected_to_security_group
target: security_group
Enhanced Service Composition - Deployment capabilities
Deployment can now declare it’s capabilities, allowing users, scripts and other deployment workflows to query these details in real-time
tosca_definitions_version: cloudify_dsl_1_3
imports:
- http://www.getcloudify.org/spec/cloudify/4.5/types.yaml
- web--blueprint:openstack_vm
node_templates:
app:
type: cloudify.nodes.Application
properties:
db_url: { get_capability: [
get_input: shared_db_dep_name, db_url ] }
tosca_definitions_version: cloudify_dsl_1_3
imports:
- http://www.getcloudify.org/spec/cloudify/4.5/types.yaml
- db--blueprint:openstack_vm
inputs:
...
node_templates:
db:
type: cloudify.nodes.DataBase
properties:
...
capabilities:
db_url: { concat: [ get_attribute: [db, ip], ‘thedb’ ] }
shared_db.yaml my_app.yaml
Deployment declares its
capabilities
Using the capabilities
Enhanced Service Composition
Composite and recursive intrinsic functions
Intrinsic functions allow usage of complex structures such as
lists or YAML and allow the selection of a certain item in
these objects. One may also use this recursively and use an
intrinsic function as a parameter in another intrinsic function
node_templates:
...
vm:
type: cloudify.openstack.nodes.Server
properties:
server:
image_name: { get_input: image_name }
key_name: { get_input: [ vm_info, key_name ] }
node_templates:
...
http_web_server:
type: cloudify.nodes.Compute
properties:
# The parser will first evaluate the result of the inner `get_input` and
# then using it's result, will evaluate the outter get_input.
# If the input available_ports = [8000, 8080] and web_server_port_no = 0,
# then http_web_server.port = 8000.
port: { get_input: [ available_ports, { get_input: web_server_port_no } ] }
...
Service Composition Best Practices
Code Example
● Provisioning of virtual network
appliances across multi-cloud
● Configuration automation through REST,
Ansible, Netconf etc..
● Service Chaining through composite
blueprint.
● Serve as best practice for Service
Chaining, VNFM, Multi Cloud, Enterprise
Networking patterns..
15
Ansible plugin
● Cloudify Automation-First approach allowing users to leverage existing Ansible
playbooks to integrate into Cloudify rather than convert into a Cloudify format.
● Ansible playbooks are referred to via Cloudify blueprints
○ Map lifecycle operations to ansible-playbook runs
● New Examples
● DB-LB-App, a modular application utilizing Ansible Playbooks for MariaDB/Galera Cluster,
HAProxy, and Drupal7.
● Testing Examples with Vagrantfile (OpenVPN, Clearwater, LAMP, etc).
● More information
○ Blog Post
○ Documentation
16
Kubespray support
● Built using the new Ansible Plugin
● Deploy Kubernetes clusters over Azure, AWS, Openstack or GCP.
● Orthogonal to the current Kubernetes plugin
● Example
○ Kubespray blueprint & resources
17
Scheduled and resumable workflows
● Scheduling workflow execution time allows for more granular lifecycle management
○ Schedule updates to maintenance windows
○ Set TTL to trial / temp services
○ Orchestrate network and workload changes adjusting venue edge sites during events
● Resumable workflows allows easy response to deployment / workflow issues
18
OpenStack v3 plugin
● OpenStack v3 is a *new* plugin
● What’s new?
○ Based on OpenStack SDK (recommended approach)
○ Plugin structure based on new best practices
○ Easier blueprint VIM migration
● Backward compatibility via node type aliases.
19
4.6 enhancements
Service
Orchestration
E2E Service Definition
uService Orchestration
Infrastructure Orchestration
End to End Orchestration
Configuration
IaaS Orchestration Cloud Infrastructure Network Edge
Azure
ARM
Configuration
Automation tools Service configuration Network Script
WorkflowPolicy Infrastructure
uService
External Service
External service orchestration
Scheduled Workflow
Resumable Workflow
New Ansible plugin
New Openstack plugin
Kubespray
Enhanced service
composition
20
Open Cloud Native SD-WAN demo by Amartus
21
Stay tuned ...
• Easy definition of different edge targets (types)
• Self aware edge targets allow for zero touch provisioning of
hosted edge services
• Capability and property tagging of services and edge
targets
o Workflow by criteria
• Provision services to edge targets by location / OS / type…
• Mistake free operations - define the audience for every workflow based
on capability / property matching
• Cloudify manager cluster scaling (active-active)
• and much more...
22
Live Q & A
● Download Cloudify - Cloudify.co/download
● Questions? Hello@Cloudify.co
● Try a Cloudify Lab -
● Slack Channel - Cloudify.co/slack
Thank You.

Mais conteúdo relacionado

Mais procurados

CloudStack news
CloudStack newsCloudStack news
CloudStack newsShapeBlue
 
MuleSoft Deployment Strategies (RTF vs Hybrid vs CloudHub)
MuleSoft Deployment Strategies (RTF vs Hybrid vs CloudHub)MuleSoft Deployment Strategies (RTF vs Hybrid vs CloudHub)
MuleSoft Deployment Strategies (RTF vs Hybrid vs CloudHub)Prashanth Kurimella
 
Cloudify 4.2 Webinar - Agility & Control
Cloudify 4.2 Webinar - Agility & ControlCloudify 4.2 Webinar - Agility & Control
Cloudify 4.2 Webinar - Agility & ControlCloudify Community
 
SaaS company in north america
SaaS company in north americaSaaS company in north america
SaaS company in north americaGabe Akisanmi
 
Cloud Application Blueprints with Apache Brooklyn by Alex Henevald
Cloud Application Blueprints with Apache Brooklyn by Alex HenevaldCloud Application Blueprints with Apache Brooklyn by Alex Henevald
Cloud Application Blueprints with Apache Brooklyn by Alex Henevaldbuildacloud
 
What’s Mule 4.3? How Does Anytime RTF Help? Our insights explain.
What’s Mule 4.3? How Does Anytime RTF Help? Our insights explain. What’s Mule 4.3? How Does Anytime RTF Help? Our insights explain.
What’s Mule 4.3? How Does Anytime RTF Help? Our insights explain. Kellton Tech Solutions Ltd
 
Cloudify NFV Orchestrator for Optimal Performance
Cloudify NFV Orchestrator for Optimal PerformanceCloudify NFV Orchestrator for Optimal Performance
Cloudify NFV Orchestrator for Optimal PerformanceArthur Berezin
 
High Availability - Brett Thurber - ManageIQ Design Summit 2016
High Availability - Brett Thurber - ManageIQ Design Summit 2016High Availability - Brett Thurber - ManageIQ Design Summit 2016
High Availability - Brett Thurber - ManageIQ Design Summit 2016ManageIQ
 
Onboarding and Orchestrating High Performing Networking Software
Onboarding and Orchestrating High Performing Networking SoftwareOnboarding and Orchestrating High Performing Networking Software
Onboarding and Orchestrating High Performing Networking SoftwareCloudify Community
 
ManageIQ Overview at Management and Orchestration Developer (MODM) Meet-up
ManageIQ Overview at Management and Orchestration Developer (MODM) Meet-upManageIQ Overview at Management and Orchestration Developer (MODM) Meet-up
ManageIQ Overview at Management and Orchestration Developer (MODM) Meet-upJerome Marc
 
使用 Prometheus 監控 Kubernetes Cluster
使用 Prometheus 監控 Kubernetes Cluster 使用 Prometheus 監控 Kubernetes Cluster
使用 Prometheus 監控 Kubernetes Cluster inwin stack
 
Sven Vogel: Running CloudStack and OpenShift with NetApp on KVM
Sven Vogel: Running CloudStack and OpenShift with NetApp on KVMSven Vogel: Running CloudStack and OpenShift with NetApp on KVM
Sven Vogel: Running CloudStack and OpenShift with NetApp on KVMShapeBlue
 
OpenNebulaConf2017US: Welcome and project update by Ignacio M. Llorente and R...
OpenNebulaConf2017US: Welcome and project update by Ignacio M. Llorente and R...OpenNebulaConf2017US: Welcome and project update by Ignacio M. Llorente and R...
OpenNebulaConf2017US: Welcome and project update by Ignacio M. Llorente and R...OpenNebula Project
 
Kube Your Enthusiasm - Paul Czarkowski
Kube Your Enthusiasm - Paul CzarkowskiKube Your Enthusiasm - Paul Czarkowski
Kube Your Enthusiasm - Paul CzarkowskiVMware Tanzu
 
PaaS Design & Architecture: A Deep Dive into Apache Stratos
PaaS Design & Architecture: A Deep Dive into Apache StratosPaaS Design & Architecture: A Deep Dive into Apache Stratos
PaaS Design & Architecture: A Deep Dive into Apache StratosWSO2
 
KURMA - A Containerized Container Platform - KubeCon 2016
KURMA - A Containerized Container Platform - KubeCon 2016KURMA - A Containerized Container Platform - KubeCon 2016
KURMA - A Containerized Container Platform - KubeCon 2016Apcera
 
CSEUG introduction
CSEUG introductionCSEUG introduction
CSEUG introductionShapeBlue
 
Cloud-Native Operations with Kubernetes and CI/CD
Cloud-Native Operations with Kubernetes and CI/CDCloud-Native Operations with Kubernetes and CI/CD
Cloud-Native Operations with Kubernetes and CI/CDVMware Tanzu
 

Mais procurados (20)

CloudStack news
CloudStack newsCloudStack news
CloudStack news
 
MuleSoft Deployment Strategies (RTF vs Hybrid vs CloudHub)
MuleSoft Deployment Strategies (RTF vs Hybrid vs CloudHub)MuleSoft Deployment Strategies (RTF vs Hybrid vs CloudHub)
MuleSoft Deployment Strategies (RTF vs Hybrid vs CloudHub)
 
Cloudify 4.2 Webinar - Agility & Control
Cloudify 4.2 Webinar - Agility & ControlCloudify 4.2 Webinar - Agility & Control
Cloudify 4.2 Webinar - Agility & Control
 
SaaS company in north america
SaaS company in north americaSaaS company in north america
SaaS company in north america
 
Cloud Application Blueprints with Apache Brooklyn by Alex Henevald
Cloud Application Blueprints with Apache Brooklyn by Alex HenevaldCloud Application Blueprints with Apache Brooklyn by Alex Henevald
Cloud Application Blueprints with Apache Brooklyn by Alex Henevald
 
What’s Mule 4.3? How Does Anytime RTF Help? Our insights explain.
What’s Mule 4.3? How Does Anytime RTF Help? Our insights explain. What’s Mule 4.3? How Does Anytime RTF Help? Our insights explain.
What’s Mule 4.3? How Does Anytime RTF Help? Our insights explain.
 
Cloudify NFV Orchestrator for Optimal Performance
Cloudify NFV Orchestrator for Optimal PerformanceCloudify NFV Orchestrator for Optimal Performance
Cloudify NFV Orchestrator for Optimal Performance
 
High Availability - Brett Thurber - ManageIQ Design Summit 2016
High Availability - Brett Thurber - ManageIQ Design Summit 2016High Availability - Brett Thurber - ManageIQ Design Summit 2016
High Availability - Brett Thurber - ManageIQ Design Summit 2016
 
VietOpenStack meetup 7th Kilo overview
VietOpenStack meetup 7th Kilo overviewVietOpenStack meetup 7th Kilo overview
VietOpenStack meetup 7th Kilo overview
 
Onboarding and Orchestrating High Performing Networking Software
Onboarding and Orchestrating High Performing Networking SoftwareOnboarding and Orchestrating High Performing Networking Software
Onboarding and Orchestrating High Performing Networking Software
 
ManageIQ Overview at Management and Orchestration Developer (MODM) Meet-up
ManageIQ Overview at Management and Orchestration Developer (MODM) Meet-upManageIQ Overview at Management and Orchestration Developer (MODM) Meet-up
ManageIQ Overview at Management and Orchestration Developer (MODM) Meet-up
 
使用 Prometheus 監控 Kubernetes Cluster
使用 Prometheus 監控 Kubernetes Cluster 使用 Prometheus 監控 Kubernetes Cluster
使用 Prometheus 監控 Kubernetes Cluster
 
Sven Vogel: Running CloudStack and OpenShift with NetApp on KVM
Sven Vogel: Running CloudStack and OpenShift with NetApp on KVMSven Vogel: Running CloudStack and OpenShift with NetApp on KVM
Sven Vogel: Running CloudStack and OpenShift with NetApp on KVM
 
OpenNebulaConf2017US: Welcome and project update by Ignacio M. Llorente and R...
OpenNebulaConf2017US: Welcome and project update by Ignacio M. Llorente and R...OpenNebulaConf2017US: Welcome and project update by Ignacio M. Llorente and R...
OpenNebulaConf2017US: Welcome and project update by Ignacio M. Llorente and R...
 
Kube Your Enthusiasm - Paul Czarkowski
Kube Your Enthusiasm - Paul CzarkowskiKube Your Enthusiasm - Paul Czarkowski
Kube Your Enthusiasm - Paul Czarkowski
 
PaaS Design & Architecture: A Deep Dive into Apache Stratos
PaaS Design & Architecture: A Deep Dive into Apache StratosPaaS Design & Architecture: A Deep Dive into Apache Stratos
PaaS Design & Architecture: A Deep Dive into Apache Stratos
 
StarlingX - A Platform for the Distributed Edge | Ildiko Vancsa
StarlingX - A Platform for the Distributed Edge | Ildiko VancsaStarlingX - A Platform for the Distributed Edge | Ildiko Vancsa
StarlingX - A Platform for the Distributed Edge | Ildiko Vancsa
 
KURMA - A Containerized Container Platform - KubeCon 2016
KURMA - A Containerized Container Platform - KubeCon 2016KURMA - A Containerized Container Platform - KubeCon 2016
KURMA - A Containerized Container Platform - KubeCon 2016
 
CSEUG introduction
CSEUG introductionCSEUG introduction
CSEUG introduction
 
Cloud-Native Operations with Kubernetes and CI/CD
Cloud-Native Operations with Kubernetes and CI/CDCloud-Native Operations with Kubernetes and CI/CD
Cloud-Native Operations with Kubernetes and CI/CD
 

Semelhante a Cloudify 4.6 Webinar Highlights

Lessons Learned during IBM SmartCloud Orchestrator Deployment at a Large Tel...
Lessons Learned during IBM SmartCloud Orchestrator Deployment at a Large Tel...Lessons Learned during IBM SmartCloud Orchestrator Deployment at a Large Tel...
Lessons Learned during IBM SmartCloud Orchestrator Deployment at a Large Tel...Eduardo Patrocinio
 
Pivotal CloudFoundry on Google cloud platform
Pivotal CloudFoundry on Google cloud platformPivotal CloudFoundry on Google cloud platform
Pivotal CloudFoundry on Google cloud platformRonak Banka
 
Building a PaaS Platform like Bluemix on OpenStack
Building a PaaS Platform like Bluemix on OpenStackBuilding a PaaS Platform like Bluemix on OpenStack
Building a PaaS Platform like Bluemix on OpenStackAnimesh Singh
 
Openshift serverless Solution
Openshift serverless SolutionOpenshift serverless Solution
Openshift serverless SolutionRyan ZhangCheng
 
VMworld 2013: NSX PCI Reference Architecture Workshop Session 3 - Operational...
VMworld 2013: NSX PCI Reference Architecture Workshop Session 3 - Operational...VMworld 2013: NSX PCI Reference Architecture Workshop Session 3 - Operational...
VMworld 2013: NSX PCI Reference Architecture Workshop Session 3 - Operational...VMworld
 
Eseguire Applicazioni Cloud-Native con Pivotal Cloud Foundry su Google Cloud ...
Eseguire Applicazioni Cloud-Native con Pivotal Cloud Foundry su Google Cloud ...Eseguire Applicazioni Cloud-Native con Pivotal Cloud Foundry su Google Cloud ...
Eseguire Applicazioni Cloud-Native con Pivotal Cloud Foundry su Google Cloud ...VMware Tanzu
 
Pivotal Cloud Foundry 2.6: A First Look
Pivotal Cloud Foundry 2.6: A First LookPivotal Cloud Foundry 2.6: A First Look
Pivotal Cloud Foundry 2.6: A First LookVMware Tanzu
 
UTF-8'en'IBM_Cloud_SCO_Content_20130702c
UTF-8'en'IBM_Cloud_SCO_Content_20130702cUTF-8'en'IBM_Cloud_SCO_Content_20130702c
UTF-8'en'IBM_Cloud_SCO_Content_20130702cR.gowtham kumar
 
Deploying couchbaseserverazure cihanbiyikoglu_microsoft
Deploying couchbaseserverazure cihanbiyikoglu_microsoftDeploying couchbaseserverazure cihanbiyikoglu_microsoft
Deploying couchbaseserverazure cihanbiyikoglu_microsoftCihan Biyikoglu
 
vCloud Automation Center and Pivotal Cloud Foundry – Better PaaS Solution (VM...
vCloud Automation Center and Pivotal Cloud Foundry – Better PaaS Solution (VM...vCloud Automation Center and Pivotal Cloud Foundry – Better PaaS Solution (VM...
vCloud Automation Center and Pivotal Cloud Foundry – Better PaaS Solution (VM...VMware Tanzu
 
.NET Cloud-Native Bootcamp- Los Angeles
.NET Cloud-Native Bootcamp- Los Angeles.NET Cloud-Native Bootcamp- Los Angeles
.NET Cloud-Native Bootcamp- Los AngelesVMware Tanzu
 
10 Key Steps for Moving from Legacy Infrastructure to the Cloud
10 Key Steps for Moving from Legacy Infrastructure to the Cloud10 Key Steps for Moving from Legacy Infrastructure to the Cloud
10 Key Steps for Moving from Legacy Infrastructure to the CloudNGINX, Inc.
 
Confluent Operator as Cloud-Native Kafka Operator for Kubernetes
Confluent Operator as Cloud-Native Kafka Operator for KubernetesConfluent Operator as Cloud-Native Kafka Operator for Kubernetes
Confluent Operator as Cloud-Native Kafka Operator for KubernetesKai Wähner
 
WebSphere Application Server - Meeting Your Cloud and On-Premise Demands
WebSphere Application Server - Meeting Your Cloud and On-Premise DemandsWebSphere Application Server - Meeting Your Cloud and On-Premise Demands
WebSphere Application Server - Meeting Your Cloud and On-Premise DemandsIan Robinson
 
Spring Cloud Services with Pivotal Cloud Foundry- Gokhan Goksu
Spring Cloud Services with Pivotal Cloud Foundry- Gokhan GoksuSpring Cloud Services with Pivotal Cloud Foundry- Gokhan Goksu
Spring Cloud Services with Pivotal Cloud Foundry- Gokhan GoksuVMware Tanzu
 
From OpenStack.... towards an Open cloud architecture
From OpenStack.... towards an Open cloud architecture From OpenStack.... towards an Open cloud architecture
From OpenStack.... towards an Open cloud architecture Claude Riousset
 
DevOps and BigData Analytics
DevOps and BigData Analytics DevOps and BigData Analytics
DevOps and BigData Analytics sbbabu
 
Migrating Java EE applications to IBM Bluemix platform as-a-service (CloudFou...
Migrating Java EE applications to IBM Bluemix platform as-a-service (CloudFou...Migrating Java EE applications to IBM Bluemix platform as-a-service (CloudFou...
Migrating Java EE applications to IBM Bluemix platform as-a-service (CloudFou...Jack-Junjie Cai
 
Backroll: Production Grade KVM Backup Solution Integrated in CloudStack
Backroll: Production Grade KVM Backup Solution Integrated in CloudStackBackroll: Production Grade KVM Backup Solution Integrated in CloudStack
Backroll: Production Grade KVM Backup Solution Integrated in CloudStackShapeBlue
 

Semelhante a Cloudify 4.6 Webinar Highlights (20)

Lessons Learned during IBM SmartCloud Orchestrator Deployment at a Large Tel...
Lessons Learned during IBM SmartCloud Orchestrator Deployment at a Large Tel...Lessons Learned during IBM SmartCloud Orchestrator Deployment at a Large Tel...
Lessons Learned during IBM SmartCloud Orchestrator Deployment at a Large Tel...
 
Pivotal CloudFoundry on Google cloud platform
Pivotal CloudFoundry on Google cloud platformPivotal CloudFoundry on Google cloud platform
Pivotal CloudFoundry on Google cloud platform
 
Building a PaaS Platform like Bluemix on OpenStack
Building a PaaS Platform like Bluemix on OpenStackBuilding a PaaS Platform like Bluemix on OpenStack
Building a PaaS Platform like Bluemix on OpenStack
 
Openshift serverless Solution
Openshift serverless SolutionOpenshift serverless Solution
Openshift serverless Solution
 
VMworld 2013: NSX PCI Reference Architecture Workshop Session 3 - Operational...
VMworld 2013: NSX PCI Reference Architecture Workshop Session 3 - Operational...VMworld 2013: NSX PCI Reference Architecture Workshop Session 3 - Operational...
VMworld 2013: NSX PCI Reference Architecture Workshop Session 3 - Operational...
 
Eseguire Applicazioni Cloud-Native con Pivotal Cloud Foundry su Google Cloud ...
Eseguire Applicazioni Cloud-Native con Pivotal Cloud Foundry su Google Cloud ...Eseguire Applicazioni Cloud-Native con Pivotal Cloud Foundry su Google Cloud ...
Eseguire Applicazioni Cloud-Native con Pivotal Cloud Foundry su Google Cloud ...
 
Pivotal Cloud Foundry 2.6: A First Look
Pivotal Cloud Foundry 2.6: A First LookPivotal Cloud Foundry 2.6: A First Look
Pivotal Cloud Foundry 2.6: A First Look
 
UTF-8'en'IBM_Cloud_SCO_Content_20130702c
UTF-8'en'IBM_Cloud_SCO_Content_20130702cUTF-8'en'IBM_Cloud_SCO_Content_20130702c
UTF-8'en'IBM_Cloud_SCO_Content_20130702c
 
Deploying couchbaseserverazure cihanbiyikoglu_microsoft
Deploying couchbaseserverazure cihanbiyikoglu_microsoftDeploying couchbaseserverazure cihanbiyikoglu_microsoft
Deploying couchbaseserverazure cihanbiyikoglu_microsoft
 
vCloud Automation Center and Pivotal Cloud Foundry – Better PaaS Solution (VM...
vCloud Automation Center and Pivotal Cloud Foundry – Better PaaS Solution (VM...vCloud Automation Center and Pivotal Cloud Foundry – Better PaaS Solution (VM...
vCloud Automation Center and Pivotal Cloud Foundry – Better PaaS Solution (VM...
 
.NET Cloud-Native Bootcamp- Los Angeles
.NET Cloud-Native Bootcamp- Los Angeles.NET Cloud-Native Bootcamp- Los Angeles
.NET Cloud-Native Bootcamp- Los Angeles
 
10 Key Steps for Moving from Legacy Infrastructure to the Cloud
10 Key Steps for Moving from Legacy Infrastructure to the Cloud10 Key Steps for Moving from Legacy Infrastructure to the Cloud
10 Key Steps for Moving from Legacy Infrastructure to the Cloud
 
Confluent Operator as Cloud-Native Kafka Operator for Kubernetes
Confluent Operator as Cloud-Native Kafka Operator for KubernetesConfluent Operator as Cloud-Native Kafka Operator for Kubernetes
Confluent Operator as Cloud-Native Kafka Operator for Kubernetes
 
WebSphere Application Server - Meeting Your Cloud and On-Premise Demands
WebSphere Application Server - Meeting Your Cloud and On-Premise DemandsWebSphere Application Server - Meeting Your Cloud and On-Premise Demands
WebSphere Application Server - Meeting Your Cloud and On-Premise Demands
 
Spring Cloud Services with Pivotal Cloud Foundry- Gokhan Goksu
Spring Cloud Services with Pivotal Cloud Foundry- Gokhan GoksuSpring Cloud Services with Pivotal Cloud Foundry- Gokhan Goksu
Spring Cloud Services with Pivotal Cloud Foundry- Gokhan Goksu
 
From OpenStack.... towards an Open cloud architecture
From OpenStack.... towards an Open cloud architecture From OpenStack.... towards an Open cloud architecture
From OpenStack.... towards an Open cloud architecture
 
Enterprise Cloud Transformation
Enterprise Cloud TransformationEnterprise Cloud Transformation
Enterprise Cloud Transformation
 
DevOps and BigData Analytics
DevOps and BigData Analytics DevOps and BigData Analytics
DevOps and BigData Analytics
 
Migrating Java EE applications to IBM Bluemix platform as-a-service (CloudFou...
Migrating Java EE applications to IBM Bluemix platform as-a-service (CloudFou...Migrating Java EE applications to IBM Bluemix platform as-a-service (CloudFou...
Migrating Java EE applications to IBM Bluemix platform as-a-service (CloudFou...
 
Backroll: Production Grade KVM Backup Solution Integrated in CloudStack
Backroll: Production Grade KVM Backup Solution Integrated in CloudStackBackroll: Production Grade KVM Backup Solution Integrated in CloudStack
Backroll: Production Grade KVM Backup Solution Integrated in CloudStack
 

Mais de Cloudify Community

Edge Computing: A Unified Infrastructure for all the Different Pieces
Edge Computing: A Unified Infrastructure for all the Different PiecesEdge Computing: A Unified Infrastructure for all the Different Pieces
Edge Computing: A Unified Infrastructure for all the Different PiecesCloudify Community
 
Why nfv and digital transformation projects fail!
Why nfv and digital transformation projects fail! Why nfv and digital transformation projects fail!
Why nfv and digital transformation projects fail! Cloudify Community
 
Orchestrating Complex Multi Cloud Enterprise Applications
Orchestrating Complex Multi Cloud Enterprise ApplicationsOrchestrating Complex Multi Cloud Enterprise Applications
Orchestrating Complex Multi Cloud Enterprise ApplicationsCloudify Community
 
Making Your Apps Cloudy - Migrating to Microservices
Making Your Apps Cloudy - Migrating to MicroservicesMaking Your Apps Cloudy - Migrating to Microservices
Making Your Apps Cloudy - Migrating to MicroservicesCloudify Community
 
Multi tenancy RBAC in a multi-cloud world - webinar
Multi tenancy RBAC in a multi-cloud world - webinarMulti tenancy RBAC in a multi-cloud world - webinar
Multi tenancy RBAC in a multi-cloud world - webinarCloudify Community
 
ONAP Overview Webinar - Aarna Networks & Cloudify
ONAP Overview Webinar - Aarna Networks & CloudifyONAP Overview Webinar - Aarna Networks & Cloudify
ONAP Overview Webinar - Aarna Networks & CloudifyCloudify Community
 
Multi-Cloud Orchestration for Kubernetes with Cloudify - Webinar Presentation
Multi-Cloud Orchestration for Kubernetes with Cloudify - Webinar PresentationMulti-Cloud Orchestration for Kubernetes with Cloudify - Webinar Presentation
Multi-Cloud Orchestration for Kubernetes with Cloudify - Webinar PresentationCloudify Community
 
Deep Work For Programmers - Reversim Summit 2017 - Pavel Brodksy
Deep Work For Programmers - Reversim Summit 2017 - Pavel BrodksyDeep Work For Programmers - Reversim Summit 2017 - Pavel Brodksy
Deep Work For Programmers - Reversim Summit 2017 - Pavel BrodksyCloudify Community
 
A David vs. Goliath Tale of Triumph - Reversim Summit 2017 - Nati Shalom
A David vs. Goliath Tale of Triumph - Reversim Summit 2017 - Nati ShalomA David vs. Goliath Tale of Triumph - Reversim Summit 2017 - Nati Shalom
A David vs. Goliath Tale of Triumph - Reversim Summit 2017 - Nati ShalomCloudify Community
 
ONAP TOSCA Orchestration with Cloudify
ONAP TOSCA Orchestration with CloudifyONAP TOSCA Orchestration with Cloudify
ONAP TOSCA Orchestration with CloudifyCloudify Community
 
Introducing ONAP (Open Network Automation Platform) - Bay Area Meetup
Introducing ONAP (Open Network Automation Platform)  - Bay Area MeetupIntroducing ONAP (Open Network Automation Platform)  - Bay Area Meetup
Introducing ONAP (Open Network Automation Platform) - Bay Area MeetupCloudify Community
 
2017 State Enterprise Multi Cloud Webinar
2017 State Enterprise Multi Cloud Webinar2017 State Enterprise Multi Cloud Webinar
2017 State Enterprise Multi Cloud WebinarCloudify Community
 
vCPE 2.0 – the business case for an open vCPE framework
vCPE 2.0 – the business case for an open vCPE frameworkvCPE 2.0 – the business case for an open vCPE framework
vCPE 2.0 – the business case for an open vCPE frameworkCloudify Community
 
Overcoming the five hybrid cloud adoption challenges
Overcoming the five hybrid cloud adoption challengesOvercoming the five hybrid cloud adoption challenges
Overcoming the five hybrid cloud adoption challengesCloudify Community
 
OpenStack and serverless - long shot or sure thing
OpenStack and serverless - long shot or sure thingOpenStack and serverless - long shot or sure thing
OpenStack and serverless - long shot or sure thingCloudify Community
 
Openness is the true path of network functions virtualization
Openness is the true path of network functions virtualizationOpenness is the true path of network functions virtualization
Openness is the true path of network functions virtualizationCloudify Community
 
NFV's major movements - Cloudify in Light Reading
NFV's major movements - Cloudify in Light ReadingNFV's major movements - Cloudify in Light Reading
NFV's major movements - Cloudify in Light ReadingCloudify Community
 
NFV and DevOps converging to bring telecom lessons to the enterprise
NFV and DevOps converging to bring telecom lessons to the enterpriseNFV and DevOps converging to bring telecom lessons to the enterprise
NFV and DevOps converging to bring telecom lessons to the enterpriseCloudify Community
 
New VNF management platform enables carriers to configure, deploy VNFs faster
New VNF management platform enables carriers to configure, deploy VNFs fasterNew VNF management platform enables carriers to configure, deploy VNFs faster
New VNF management platform enables carriers to configure, deploy VNFs fasterCloudify Community
 
Cloudify kicks off cloud native vnf partner program with versa networks and a...
Cloudify kicks off cloud native vnf partner program with versa networks and a...Cloudify kicks off cloud native vnf partner program with versa networks and a...
Cloudify kicks off cloud native vnf partner program with versa networks and a...Cloudify Community
 

Mais de Cloudify Community (20)

Edge Computing: A Unified Infrastructure for all the Different Pieces
Edge Computing: A Unified Infrastructure for all the Different PiecesEdge Computing: A Unified Infrastructure for all the Different Pieces
Edge Computing: A Unified Infrastructure for all the Different Pieces
 
Why nfv and digital transformation projects fail!
Why nfv and digital transformation projects fail! Why nfv and digital transformation projects fail!
Why nfv and digital transformation projects fail!
 
Orchestrating Complex Multi Cloud Enterprise Applications
Orchestrating Complex Multi Cloud Enterprise ApplicationsOrchestrating Complex Multi Cloud Enterprise Applications
Orchestrating Complex Multi Cloud Enterprise Applications
 
Making Your Apps Cloudy - Migrating to Microservices
Making Your Apps Cloudy - Migrating to MicroservicesMaking Your Apps Cloudy - Migrating to Microservices
Making Your Apps Cloudy - Migrating to Microservices
 
Multi tenancy RBAC in a multi-cloud world - webinar
Multi tenancy RBAC in a multi-cloud world - webinarMulti tenancy RBAC in a multi-cloud world - webinar
Multi tenancy RBAC in a multi-cloud world - webinar
 
ONAP Overview Webinar - Aarna Networks & Cloudify
ONAP Overview Webinar - Aarna Networks & CloudifyONAP Overview Webinar - Aarna Networks & Cloudify
ONAP Overview Webinar - Aarna Networks & Cloudify
 
Multi-Cloud Orchestration for Kubernetes with Cloudify - Webinar Presentation
Multi-Cloud Orchestration for Kubernetes with Cloudify - Webinar PresentationMulti-Cloud Orchestration for Kubernetes with Cloudify - Webinar Presentation
Multi-Cloud Orchestration for Kubernetes with Cloudify - Webinar Presentation
 
Deep Work For Programmers - Reversim Summit 2017 - Pavel Brodksy
Deep Work For Programmers - Reversim Summit 2017 - Pavel BrodksyDeep Work For Programmers - Reversim Summit 2017 - Pavel Brodksy
Deep Work For Programmers - Reversim Summit 2017 - Pavel Brodksy
 
A David vs. Goliath Tale of Triumph - Reversim Summit 2017 - Nati Shalom
A David vs. Goliath Tale of Triumph - Reversim Summit 2017 - Nati ShalomA David vs. Goliath Tale of Triumph - Reversim Summit 2017 - Nati Shalom
A David vs. Goliath Tale of Triumph - Reversim Summit 2017 - Nati Shalom
 
ONAP TOSCA Orchestration with Cloudify
ONAP TOSCA Orchestration with CloudifyONAP TOSCA Orchestration with Cloudify
ONAP TOSCA Orchestration with Cloudify
 
Introducing ONAP (Open Network Automation Platform) - Bay Area Meetup
Introducing ONAP (Open Network Automation Platform)  - Bay Area MeetupIntroducing ONAP (Open Network Automation Platform)  - Bay Area Meetup
Introducing ONAP (Open Network Automation Platform) - Bay Area Meetup
 
2017 State Enterprise Multi Cloud Webinar
2017 State Enterprise Multi Cloud Webinar2017 State Enterprise Multi Cloud Webinar
2017 State Enterprise Multi Cloud Webinar
 
vCPE 2.0 – the business case for an open vCPE framework
vCPE 2.0 – the business case for an open vCPE frameworkvCPE 2.0 – the business case for an open vCPE framework
vCPE 2.0 – the business case for an open vCPE framework
 
Overcoming the five hybrid cloud adoption challenges
Overcoming the five hybrid cloud adoption challengesOvercoming the five hybrid cloud adoption challenges
Overcoming the five hybrid cloud adoption challenges
 
OpenStack and serverless - long shot or sure thing
OpenStack and serverless - long shot or sure thingOpenStack and serverless - long shot or sure thing
OpenStack and serverless - long shot or sure thing
 
Openness is the true path of network functions virtualization
Openness is the true path of network functions virtualizationOpenness is the true path of network functions virtualization
Openness is the true path of network functions virtualization
 
NFV's major movements - Cloudify in Light Reading
NFV's major movements - Cloudify in Light ReadingNFV's major movements - Cloudify in Light Reading
NFV's major movements - Cloudify in Light Reading
 
NFV and DevOps converging to bring telecom lessons to the enterprise
NFV and DevOps converging to bring telecom lessons to the enterpriseNFV and DevOps converging to bring telecom lessons to the enterprise
NFV and DevOps converging to bring telecom lessons to the enterprise
 
New VNF management platform enables carriers to configure, deploy VNFs faster
New VNF management platform enables carriers to configure, deploy VNFs fasterNew VNF management platform enables carriers to configure, deploy VNFs faster
New VNF management platform enables carriers to configure, deploy VNFs faster
 
Cloudify kicks off cloud native vnf partner program with versa networks and a...
Cloudify kicks off cloud native vnf partner program with versa networks and a...Cloudify kicks off cloud native vnf partner program with versa networks and a...
Cloudify kicks off cloud native vnf partner program with versa networks and a...
 

Último

Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsArshad QA
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...OnePlan Solutions
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsAlberto González Trastoy
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️anilsa9823
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
DNT_Corporate presentation know about us
DNT_Corporate presentation know about usDNT_Corporate presentation know about us
DNT_Corporate presentation know about usDynamic Netsoft
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...OnePlan Solutions
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...ICS
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...MyIntelliSource, Inc.
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...kellynguyen01
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
Test Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and BackendTest Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and BackendArshad QA
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 

Último (20)

Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
DNT_Corporate presentation know about us
DNT_Corporate presentation know about usDNT_Corporate presentation know about us
DNT_Corporate presentation know about us
 
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS LiveVip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
Test Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and BackendTest Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and Backend
 
Exploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the ProcessExploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the Process
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 

Cloudify 4.6 Webinar Highlights

  • 2. 2 FYI ● The webinar is being recorded and you will receive a copy of the slides and recording. ● Live Q & A session - Use the Button on your ZOOM platform ● Duration - Roughly 50 Minutes
  • 3. 3 Agenda ● The Cloudify Roadmap for Next Generation Orchestration ● Cloudify 4.6 Highlights and Features ● Demo Theatre from MEF18 PoC Orchestrated SD-WAN: LSO-Enabled Solution With Container-Based uCPEs ● Live Q & A session
  • 4. 4 Cloudify Strategic Focus Please note that all references to future releases and timing represent indicative strategy and future product plans known to Cloudify at this time, and that all references to dates and features are subject to change. Cloudify retains the right to make changes at any time to future software development plans or timescales and assumes no liability for the use of the information set out herein. Edge Orchestration Running enterprise grade edge networks requires top notch management and orchestration solution capable of supporting a huge number of devices and a wide range of operations • Federated management solution o Wide horizontal scaling (active-active management clusters) o Vertical scaling leveraging edge site local (potentially lightweight) managers • Criteria based orchestration – Automatically match services to deployment sites by context • Edge dedicated actionable dashboards – easy provisioning and day2 operations End-to-End Orchestration Manager Networks are large, complex, and diverse. Existing VNFM solutions run segments of the networks. Cloudify solution provides overarching orchestration management • Intuitive Service Composition o Self aware services and sites capable of communication with each other o Simple intent based declarations (combine advanced plugins into simplified composer actions) • Policy Driven orchestration – Closed loop automation, Subscribe to deployment changes Built for the Enterprise Cloudify solutions are built with enterprise in mind. Operational aspects, regulatory compliance requirements and topology considerations are core themes. • Manager of managers – scale, ease of deployment and maintenance, balance LOB requirements and operational needs.. • Cloud native - Microservice deployment • Live updates with short-to-zero downtime • Security & Ecosystem friendliness - Local user password policy, Audit service • SaaS hybrid solution
  • 5. 5 Cloudify 12-month Plan Q1’ 2019 Q2’ 2019 Q3’ 2019 Q4’ 2019 V4.6 • Agents widget • Namespaces and capability declaration allow for easier service composition • Scheduled workflows • Ansible plugin • Kubespray integration • Considerable reduction of snapshot time (faster upgrades) • Manager support for external DB • Security improvements (AES256, RabbitMQ Segregation) V5.0 • Management horizontal scaling: Active-Active Management Clusters • Sites and labels backend + simple view • Closed loop automation connectors (ph.1) • Ansible plugin • Service composition: Component • Input validation • Manager of Managers aligned for 5.0 • Cloud native managers (ph. 1) • Backend adjustments supporting local and geo-resilience • Preps for non-snapshot upgrade V5.1 • Lightweight edge managers • Criteria based orchestration • Intuitive Service Composition • Closed loop automation connectors (ph.2) • Audit service • Cloud native manager - microservice arch & K8S based MoM • Zero-downtime upgrades Extend Cloudify’s repository of certified vendors and flows, Continuous alignment with TOSCA, Getting started materials Please note that all references to future releases and timing represent indicative strategy and future product plans known to Cloudify at this time, and that all references to dates and features are subject to change. Cloudify retains the right to make changes at any time to future software development plans or timescales and assumes no liability for the use of the information set out herein.
  • 6. 6 Multi Cloud & Stack Orchestration Service Orchestration E2E Service Definition End to End Orchestration ConfigurationWorkflowPolicy Infrastructure uService External Service
  • 7. 7 Multi Cloud & Stack Orchestration Service Orchestration E2E Service Definition Infrastructure Orchestration End to End Orchestration Configuration IaaS Orchestration Cloud Infrastructure Network Edge Azure ARM WorkflowPolicy Infrastructure uService External Service uService Orchestration External service orchestration
  • 8. 8 Multi Cloud & Stack Orchestration Service Orchestration E2E Service Definition uService Orchestration Infrastructure Orchestration End to End Orchestration Configuration IaaS Orchestration Cloud Infrastructure Network Edge Azure ARM Configuration Automation tools Service configuration Network Script WorkflowPolicy Infrastructure uService External Service External service orchestration
  • 11. Enhanced Service Composition - Namespaces Namespaces Namespaces support in the Cloudify DSL allow for simpler service composition through embedding blueprints inside other blueprints. tosca_definitions_version: cloudify_dsl_1_3 imports: - http://www.getcloudify.org/spec/cloudify/4.5/types.yaml - web--blueprint:openstack_vm - DB--blueprint:openstack_vm node_templates: app: type: cloudify.nodes.Application properties: host_ip: { get_input: web--ip } relationships: - type: contained_in target: web--vm - type: connected_to target: DB--vm Import blueprint with namespace Import an instance of the openstack_vm blueprint and refer to it as *web*, and another instance of the same blueprint and refer to it as *DB* Inputs include namespace Node names include namespace tosca_definitions_version: cloudify_dsl_1_3 imports: - http://www.getcloudify.org/spec/cloudify/4.5/types.yaml - plugin:cloudify-openstack-plugin inputs: agent_user: centos default: centos flavor: default: m1.medium ip: {} node_templates: vm: type: cloudify.openstack.nodes.Server properties: openstack_config: *openstack_config agent_config: user: { get_input: agent_user } install_method: init_script flavor: { get_input: flavor } relationships: - type: connected_to_security_group target: security_group
  • 12. Enhanced Service Composition - Deployment capabilities Deployment can now declare it’s capabilities, allowing users, scripts and other deployment workflows to query these details in real-time tosca_definitions_version: cloudify_dsl_1_3 imports: - http://www.getcloudify.org/spec/cloudify/4.5/types.yaml - web--blueprint:openstack_vm node_templates: app: type: cloudify.nodes.Application properties: db_url: { get_capability: [ get_input: shared_db_dep_name, db_url ] } tosca_definitions_version: cloudify_dsl_1_3 imports: - http://www.getcloudify.org/spec/cloudify/4.5/types.yaml - db--blueprint:openstack_vm inputs: ... node_templates: db: type: cloudify.nodes.DataBase properties: ... capabilities: db_url: { concat: [ get_attribute: [db, ip], ‘thedb’ ] } shared_db.yaml my_app.yaml Deployment declares its capabilities Using the capabilities
  • 13. Enhanced Service Composition Composite and recursive intrinsic functions Intrinsic functions allow usage of complex structures such as lists or YAML and allow the selection of a certain item in these objects. One may also use this recursively and use an intrinsic function as a parameter in another intrinsic function node_templates: ... vm: type: cloudify.openstack.nodes.Server properties: server: image_name: { get_input: image_name } key_name: { get_input: [ vm_info, key_name ] } node_templates: ... http_web_server: type: cloudify.nodes.Compute properties: # The parser will first evaluate the result of the inner `get_input` and # then using it's result, will evaluate the outter get_input. # If the input available_ports = [8000, 8080] and web_server_port_no = 0, # then http_web_server.port = 8000. port: { get_input: [ available_ports, { get_input: web_server_port_no } ] } ...
  • 14. Service Composition Best Practices Code Example ● Provisioning of virtual network appliances across multi-cloud ● Configuration automation through REST, Ansible, Netconf etc.. ● Service Chaining through composite blueprint. ● Serve as best practice for Service Chaining, VNFM, Multi Cloud, Enterprise Networking patterns..
  • 15. 15 Ansible plugin ● Cloudify Automation-First approach allowing users to leverage existing Ansible playbooks to integrate into Cloudify rather than convert into a Cloudify format. ● Ansible playbooks are referred to via Cloudify blueprints ○ Map lifecycle operations to ansible-playbook runs ● New Examples ● DB-LB-App, a modular application utilizing Ansible Playbooks for MariaDB/Galera Cluster, HAProxy, and Drupal7. ● Testing Examples with Vagrantfile (OpenVPN, Clearwater, LAMP, etc). ● More information ○ Blog Post ○ Documentation
  • 16. 16 Kubespray support ● Built using the new Ansible Plugin ● Deploy Kubernetes clusters over Azure, AWS, Openstack or GCP. ● Orthogonal to the current Kubernetes plugin ● Example ○ Kubespray blueprint & resources
  • 17. 17 Scheduled and resumable workflows ● Scheduling workflow execution time allows for more granular lifecycle management ○ Schedule updates to maintenance windows ○ Set TTL to trial / temp services ○ Orchestrate network and workload changes adjusting venue edge sites during events ● Resumable workflows allows easy response to deployment / workflow issues
  • 18. 18 OpenStack v3 plugin ● OpenStack v3 is a *new* plugin ● What’s new? ○ Based on OpenStack SDK (recommended approach) ○ Plugin structure based on new best practices ○ Easier blueprint VIM migration ● Backward compatibility via node type aliases.
  • 19. 19 4.6 enhancements Service Orchestration E2E Service Definition uService Orchestration Infrastructure Orchestration End to End Orchestration Configuration IaaS Orchestration Cloud Infrastructure Network Edge Azure ARM Configuration Automation tools Service configuration Network Script WorkflowPolicy Infrastructure uService External Service External service orchestration Scheduled Workflow Resumable Workflow New Ansible plugin New Openstack plugin Kubespray Enhanced service composition
  • 20. 20 Open Cloud Native SD-WAN demo by Amartus
  • 21. 21 Stay tuned ... • Easy definition of different edge targets (types) • Self aware edge targets allow for zero touch provisioning of hosted edge services • Capability and property tagging of services and edge targets o Workflow by criteria • Provision services to edge targets by location / OS / type… • Mistake free operations - define the audience for every workflow based on capability / property matching • Cloudify manager cluster scaling (active-active) • and much more...
  • 22. 22 Live Q & A ● Download Cloudify - Cloudify.co/download ● Questions? Hello@Cloudify.co ● Try a Cloudify Lab - ● Slack Channel - Cloudify.co/slack