XOS. The Service Composition and Management Layer for CORD and SEBA. Scott Baker

Size: px
Start display at page:

Download "XOS. The Service Composition and Management Layer for CORD and SEBA. Scott Baker"

Transcription

1 XOS The Service Composition and Management Layer for CORD and SEBA Scott Baker

2 Managing the service stack is a big space... Container lifecycle management Deploy on hardware Scheduling Redeploy/migrate if hardware fails Service coordination Service A needs to work with Service B Abstractions may span A and B 2

3 Other tools handle container lifecycles Docker Enforces compute isolation between services Kubernetes Deploys containers Schedules containers to compute resources Helm The Kubernetes Package Manager Manage dependencies between services Chart A is comprised of charts B, C, and D... 3

4 XOS manages and coordinates services Unify Provide coherent interface to collection of disaggregated components Tools to avoid NxM scenario (N northside masters and M components) Coordinate (East/West) Support low-latency/fine-grain interaction among internal components State needed to coordinate interdependent/adjacent components Synchronize (North/South) Provide rendez-vous point for north-side directives / component activity State needed to synchronize both top-down and bottom-up workflows 4

5 Why invent our own? Create service meshes that span multiple disparate technologies and security domains: XOS K8s #1 Kafka (local) OpenStack Kibana K8s #2 (Google Cloud) ONOS 5

6 Unify Integrate Across Components Use Cases (Trials) Extensible Platform CORD VOLTHA xran Fabric vepc vrouter Building Blocks

7 XOS Operationalizes CORD TOSCA Workflows Workflow Provision & Configure Services Runtime Operation CORD Controller (XOS) Ctrl Ctrl Ctrl Ctrl Ctrl Ctrl App App App App App App Ctrl Ctrl Ctrl Ctrl Ctrl VNF App App App App App Kubernetes (OpenStack) ONOS OCP Hardware CORD POD Protobuf (xproto) Models Schema that Model Services Core set Loaded at Boot Time Dynamically Updated at Runtime Helm Charts Lifecycle Management Containers that Implement Services Core set Loaded at Boot Time Dynamically Updated at Runtime Kubernetes (Optionally MaaS)

8 Unification using the XOS data model Base Models (stuff you get for free) Users and Permissions Compute and Network Resources Services, Tenancy, and Dependencies Chains Extensibility (value you can add) Any service can add new models Service models can inherit from base models 8

9 VOLT service example RCORD Service Fabric XC Service RCORD Subscriber VOLT Service Fabric XC ServiceInstance VOLT ServiceInstance OLT Device ONU Device PON Port UNI Port 9 NNI Port

10 Unification facilitates consistency "xproto", the XOS data modeling language Based on protobuf, extended with relational features Used to autogenerate various targets (REST, GUI, etc) Make a change in one place, not six different places volt.xproto xosgenx Data grpc APIModel grpc API grpc API GUI CLI 10 REST API

11 xproto example message ONUDevice (XOSBase){ option verbose_name = "ONU Device"; option description = "Represents a physical ONU device"; required manytoone pon_port->ponport:onu_devices = 1:1001 [db_index = True]; required string serial_number = 2 [max_length = 254, db_index = False, tosca_key=true, unique = True]; required string vendor = 3 [max_length = 254, db_index = False]; required string device_type = 4 [help_text = "Device Type", default = "asfvolt16_olt", max_length = 254, db_index = False]; optional string device_id = 5 [max_length = 254, db_index = False, feedback_state = True]; optional string admin_state = 6 [choices = "(('DISABLED', 'DISABLED'), ('ENABLED', 'ENABLED'))", default="enabled", help_text = "admin_state", db_index = False]; optional string oper_status = 7 [help_text = "oper_status", db_index = False, feedback_state = True]; optional string connect_status = 8 [help_text = "connect_status", db_index = False, feedback_state = True]; } 11

12 From unification to coordination Since we have a single unifying data model, services can use it to as a point of inter-service coordination 12

13 Coordinate East/West Top-Down Directives Inter-Component State Bottom-Up Activity Backend Components 13

14 Coordination Example Authoritative state is held by different services RCORD Subscriber Service Subscriber -> c_tag, s_tag, onu serial #, ip, mac,... OLT Service OLTDevice -> name, switch_datapath_id, switch_port, set of ONUs, ONUDevice -> onu serial #, admin_state,... Fabric Crossconnect Service needs to connect a subscriber to the Internet, uses information from RCORD Subscriber Service and OLT Service (s_tag, switch_datapath_id, src_port, dest_port) 14

15 Coordination Example Authoritative state is held by different services RCORD Subscriber Service Subscriber -> c_tag, s_tag, onu serial #, ip, mac,... OLT Service OLTDevice -> name, switch_datapath_id, switch_port, set of ONUs, ONUDevice -> onu serial #, admin_state,... Fabric Crossconnect Service needs to connect a subscriber to the Internet, uses information from RCORD Subscriber Service and OLT Service (s_tag, switch_datapath_id, src_port, dest_port) 15

16 Coordination often occurs in Model Policies Properties of model policies Triggered when models are created, updated, or deleted Causes changes to occur elsewhere in the data model Does not directly cause changes to occur in underlying services Policy code resides in service-specific synchronizers 16

17 Model Policies live in Synchronizer Containers XOS Core Container Bar Foo "Update Bar" "Foo Changed" Foo Synchronizer Container Policy 17

18 Example: VOLT Service Western neighbors RCORD Service - Manages subscriber state Eastern neighbors Fabric Crossconnect Service - Connects OLT to BNG via switch RCORD Service VOLT Service 18 Fabric XC Service

19 VOLTServiceInstance Create/Update Policy 1. VOLTServiceInstance created RCORD Subscriber (1) Create VOLT ServiceInstance ONU Device 19

20 VOLTServiceInstance Create/Update Policy 1. VOLTServiceInstance created 2. FabricCrossconnectServiceInstance created and linked RCORD Subscriber (1) Create VOLT ServiceInstance ONU Device 20 (2a) Create (2b) Link Fabric XC ServiceInstance

21 VOLTServiceInstance Create/Update Policy 1. VOLTServiceInstance created 2. FabricCrossconnectServiceInstance created and linked 3. Retrieve serial number from Subscriber RCORD Subscriber (1) Create VOLT (3) Query ServiceInstance ONU Device 21 (2a) Create (2b) Link Fabric XC ServiceInstance

22 VOLTServiceInstance Create/Update Policy VOLTServiceInstance created FabricCrossconnectServiceInstance created and linked Retrieve serial number from Subscriber Attach ONUDevice matching serial number to VOLTServiceInstance RCORD Subscriber (1) Create VOLT (3) Query ServiceInstance (4) Link ONU Device 22 (2a) Create (2b) Link Fabric XC ServiceInstance

23 From coordination to Synchronization Model policies operate within the data model. Synchronizer containers also handle coordinating state between the data model and external services. 23

24 Synchronize North/South Top-Down Directives Rendez-Vous State Bottom-Up Activity Backend Components 24

25 Example - Authorize an ONU Operator uses API to add an ONU Serial number to whitelist Create AttWorkflowDriverWhiteListEntry in data model Check to see if ONU is on the wrong PONPort: Set onu_state="disabled", authentication_state="awaiting" Make REST call to Voltha to disable ONU Else: Make REST call to Voltha to enable ONU Wait for ONU activate event Wait for ONU authenticate event Set authentication_state="approved", subscriber.status="enabled" move on to DHCP state machine... 25

26 Example - Authorize an ONU 26

27 Types of Synchronizer "Steps" Sync Step Apply data model state to an underlying service Keeps running until the job is done Example: OLTDevice has been created in XOS, so make REST call to create the OLT in Voltha Delete Step Delete an object in an underlying service Example: OLTDevice has been deleted in XOS, so make REST call to delete the OLT in Voltha 27

28 Types of Synchronizer "Steps" Pull Step Poll and underlying service for state, apply to data model Example: Query Voltha via REST for ONUs, create ONUDevices in XOS Event Step Watch kafka for events Example: ONU connectivity status has changed, update ONUDevice in XOS 28

29 Steps Also live in Synchronizer Containers VOLT XOS Core Container "OLTDevice Changed" VOLT Synchronizer Container "Update OLT" VOLTHA Sync Step 29

30 Ways to get involved Integrate existing services Cassandra Nagios CDN... Invent new services Firewall VNF Parental control VNF... 30

CORD: Putting the Pedal to the Metal

CORD: Putting the Pedal to the Metal CORD: Putting the Pedal to the Metal Larry Peterson ONF #OpenCORD CORD and Car Analogies CORD is like a car in that it is an integrated whole, as opposed to a pile of parts that must be assembled. à Yes,

More information

XOS Data Modeling Abstractions. XOS APIs. Models. Policies. References. VNF mechanisms DJANGO. Docker Containers. Docker Containers.

XOS Data Modeling Abstractions. XOS APIs. Models. Policies. References. VNF mechanisms DJANGO. Docker Containers. Docker Containers. XOS Data Modeling Abstractions XOS APIs Models GRPC TOSCA References Policies DJANGO Docker Containers Docker Containers OpenStack VM VNF mechanisms XOS Data Modeling Abstractions (Technology-agnostic)

More information

CORD Technical Overview

CORD Technical Overview CORD Technical Overview Larry Peterson Open Networking Lab #OpenCORD What is CORD? CORD is a Vision A common goal the open goal the source community is working is working towards towards Start with Business

More information

CORD Roadmap. Release Management. #OpenCORD

CORD Roadmap. Release Management. #OpenCORD CORD Roadmap Release Management #OpenCORD Reference Implementation When is the reference implementation released? Four-month cadence: January / May / September Mid-cycle support branches (e.g., 3.0.1)

More information

Residential CORD. Jonathan Hart, ONF. ONOS Build 2017, Seoul September 22, 2017

Residential CORD. Jonathan Hart, ONF. ONOS Build 2017, Seoul September 22, 2017 Residential CORD Jonathan Hart, ONF ONOS Build 2017, Seoul September 22, 2017 Disaggregation vsg vrouter volt CPE ONU OLT ETH AGG BNG BNG Residence Switching Fabric Central Office Backbone Network CPE:

More information

Understanding ONF s Curated Portfolio of Projects. Timon Sloane, VP, Marketing & Ecosystem

Understanding ONF s Curated Portfolio of Projects. Timon Sloane, VP, Marketing & Ecosystem Understanding ONF s Curated Portfolio of Projects Timon Sloane, VP, Marketing & Ecosystem ONF s Far Reaching Mission ONF Operators have tasked our community with a massive undertaking Transformation of

More information

ENABLING 5G NETWORKS & MULTI-ACCESS EDGE CLOUD

ENABLING 5G NETWORKS & MULTI-ACCESS EDGE CLOUD ENABLING 5G NETWORKS & MULTI-ACCESS EDGE CLOUD OĞUZ SUNAY CHIEF ARCHITECT OPEN NETWORKING FOUNDATION 5G & NETWORK 1 TRANSFORMATION CONFERENCE OCTOBER 17, 2018 OUTLINE WHY DO TELCOS NEED AN EDGE CLOUD?

More information

Hands-On Tutorial: Developing and Onboarding Services in CORD

Hands-On Tutorial: Developing and Onboarding Services in CORD Hands-On Tutorial: Developing and Onboarding Services in CORD CORD BUILD 2017 Customize templateservice Add the service description and VM image to a profile Onboard the service Verify that the service

More information

SDN-Enabled Broadband Access (SEBA) SEBA RD Team Thomas Moore (AT&T) December 4, 2018

SDN-Enabled Broadband Access (SEBA) SEBA RD Team Thomas Moore (AT&T) December 4, 2018 SDN-Enabled Broadband Access (SEBA) SEBA RD Team Thomas Moore (AT&T) December 4, 2018 SEBA Rationale, Assumptions & Architecture Operator-Driven Deploy in 2018 Common infrastructure Containers run in Kubernetes

More information

Welcome! Guru Parulkar, Executive Director, ONF

Welcome! Guru Parulkar, Executive Director, ONF Welcome! Guru Parulkar, Executive Director, ONF Our industry s Billion + Dollar Puzzle ONF Connect to help you unlock this puzzle Here is the Puzzle Access and Edge Platform POC/Trial Quality Operators

More information

Virtual Infrastructure: VMs and Containers

Virtual Infrastructure: VMs and Containers Virtual Infrastructure: VMs and Containers Andy Bavier and Gopinath Taget ONF CORD Build Nov. 7-9, 2017 An Operator Led Consortium CORD platform evolution Cutting edge innovate Initial CORD prototype (ONS

More information

QA and Testing. Suchitra Vemuri, ONF Karthick Ramanarayanan, Ciena November 8th, 2017

QA and Testing. Suchitra Vemuri, ONF Karthick Ramanarayanan, Ciena November 8th, 2017 QA and Testing Suchitra Vemuri, ONF Karthick Ramanarayanan, Ciena November 8th, 2017 1 Introduction Framework Overview Test Suites QA Jenkins Setup/Run Tests Collaborations Contribution Opportunities QA

More information

SEBA: SDN Enabled Broadband Access

SEBA: SDN Enabled Broadband Access SEBA: SDN Enabled Broadband Access Saurav Das Director of Engineering, ONF December 4 th, 2018 CORD Central Office Rearchitected as a Datacenter Residential volt, vsg, vrouter, vcdn Mobile vbbu. vmme,

More information

Guru Parulkar

Guru Parulkar Guru Parulkar guru@opennetworking.org Mission Transform network infrastructure and services with SDN, NFV, & Cloudification to bring Capex and Opex efficiencies and innovation to network operators leveraging

More information

Nokia Contributions to R-CORD

Nokia Contributions to R-CORD Nokia Contributions to R-CORD CORD Build 2017 Randy Sharpe In Fixed Networks CTO 1 Nokia 2017 Introduction Nokia contributions to ONOS Nokia contributions to VOLTHA Gaps and potential areas for improvement

More information

ONF & CORD for Cable DAA. Timon Sloane VP Marketing & Ecosystem

ONF & CORD for Cable DAA. Timon Sloane VP Marketing & Ecosystem ONF & CORD for Cable DAA Timon Sloane VP Marketing & Ecosystem ONF - Unique Operator Led Consortium Board of Directors By Operators for Operators Collaborating to Drive Transformation 2 ONF - Unique Operator

More information

Building Kubernetes cloud: real world deployment examples, challenges and approaches. Alena Prokharchyk, Rancher Labs

Building Kubernetes cloud: real world deployment examples, challenges and approaches. Alena Prokharchyk, Rancher Labs Building Kubernetes cloud: real world deployment examples, challenges and approaches Alena Prokharchyk, Rancher Labs Making a right choice is not easy The illustrated children guide to Kubernetes https://www.youtube.com/watch?v=4ht22rebjno

More information

Logging and Monitoring in CORD. Zack Williams -

Logging and Monitoring in CORD. Zack Williams - Logging and Monitoring in CORD Zack Williams - zdw@opennetworking.org Goals Answers the operational question: What is the system doing? Collects statistics, actionable items, and other monitoring data

More information

SP SDN/NFV Use Cases. Mike McBride Sr. Director of Innovation, Huawei. India Symposium, January 31 February 1, 2016, Bangalore. Networking Foundation

SP SDN/NFV Use Cases. Mike McBride Sr. Director of Innovation, Huawei. India Symposium, January 31 February 1, 2016, Bangalore. Networking Foundation SP SDN/NFV Use Cases Mike McBride Sr. Director of Innovation, Huawei Open 2014 Open Networking Networking Foundation India Symposium, January 31 February 1, 2016, Bangalore This is the year of open source

More information

Integrating the Calix FPGA OLT into R-CORD. Alan DiCicco 8 November 2017

Integrating the Calix FPGA OLT into R-CORD. Alan DiCicco 8 November 2017 Integrating the Calix FPGA OLT into R-CORD Alan DiCicco 8 November 2017 1 Agenda We ve come a long way! FPGA OLT. What s the deal? What did Calix accomplish? Where are you headed? 2 Celebrate accomplishments

More information

Enterprise CORD. Marc De Leenheer, Andrea Campanella, ONF. CORD Build, QCT headquarters, San Jose November 10, 2017

Enterprise CORD. Marc De Leenheer, Andrea Campanella, ONF. CORD Build, QCT headquarters, San Jose November 10, 2017 Enterprise CORD Marc De Leenheer, Andrea Campanella, ONF CORD Build, QCT headquarters, San Jose November 10, 2017 Today s Schedule Outline Value Proposition Architecture Services Roadmap, Partners & Results

More information

ONOS(/CORD) Update 樋口裕太 (NEC)

ONOS(/CORD) Update 樋口裕太 (NEC) ONOS(/CORD) Update 樋口裕太 (NEC) Agenda What is ONOS ONOS アプリ ユースケース例 ( 時間があれば )CORD 関係 Evolution of SDN and ONF projects protocol independent single table multiple tables fixed function tables OF1.0 OF1.3

More information

ONOS Roadmap. September, 2017

ONOS Roadmap. September, 2017 ONOS Roadmap September, 2017 distributed core provides high-availability, scalability and performance abstractions & models allow applications to configure and control the network without becoming dependent

More information

Open CORD Project Paves the Way for 5G Innovation. Participation from:

Open CORD Project Paves the Way for 5G Innovation. Participation from: Open CORD Project Paves the Way for 5G Innovation Participation from: Today s Presenters: Moderator Presenter Presenter Presenter Mike Robuck Editor Telco Transformation Larry Peterson CTO, Open Networking

More information

LAB EXERCISE: RedHat OpenShift with Contrail 5.0

LAB EXERCISE: RedHat OpenShift with Contrail 5.0 LAB EXERCISE: RedHat OpenShift with Contrail 5.0 Author Savithru Lokanath , v1.4 Prerequisites An AWS account with permissions to CRUD Compute, Storage & Network resources CentOS

More information

Exploring Cloud Security, Operational Visibility & Elastic Datacenters. Kiran Mohandas Consulting Engineer

Exploring Cloud Security, Operational Visibility & Elastic Datacenters. Kiran Mohandas Consulting Engineer Exploring Cloud Security, Operational Visibility & Elastic Datacenters Kiran Mohandas Consulting Engineer The Ideal Goal of Network Access Policies People (Developers, Net Ops, CISO, ) V I S I O N Provide

More information

Adapting SEBA to Diverse Access Technologies. Shaun Missett (Radisys Corporation)

Adapting SEBA to Diverse Access Technologies. Shaun Missett (Radisys Corporation) Adapting SEBA to Diverse Access Technologies Shaun Missett (Radisys Corporation) 1 SEBA Exemplar - 2018 At the beginning of 2018 the ONF Community were wrestling with a couple of problems: How to Maintain

More information

DreamFactory Security Guide

DreamFactory Security Guide DreamFactory Security Guide This white paper is designed to provide security information about DreamFactory. The sections below discuss the inherently secure characteristics of the platform and the explicit

More information

What s New in Red Hat OpenShift Container Platform 3.4. Torben Jäger Red Hat Solution Architect

What s New in Red Hat OpenShift Container Platform 3.4. Torben Jäger Red Hat Solution Architect What s New in Red Hat OpenShift Container Platform 3.4 Torben Jäger Red Hat Solution Architect OpenShift Roadmap OpenShift Container Platform 3.2 Kubernetes 1.2 & Docker 1.9 Red Hat

More information

Welcome! Thank You! 1

Welcome! Thank You! 1 Welcome! Thank You! 1 Special Thanks to Our Event Sponsors 2 The ONF Ecosystem Operator Led Consortium Partner Operators (8) Vendors (10) ONF Board ONF (& Stanford) Guru Parulkar Network Operators AT&T

More information

Mobile CORD (M-CORD) Open Reference Solu.on for 5G. Bill Snow ON.Lab/ONF

Mobile CORD (M-CORD) Open Reference Solu.on for 5G. Bill Snow ON.Lab/ONF Mobile CORD (M-CORD) Open Reference Solu.on for 5G Bill Snow ON.Lab/ONF bill@opennetworking.org A brief history - SDN origins 2006 - Clean Slate Program - Stanford, Berkeley, NSF First open source projects

More information

Introduction. Figure 1 - AFS Applicability in CORD Use Cases

Introduction. Figure 1 - AFS Applicability in CORD Use Cases Introduction Central Offices (COs) are not going away anytime soon. They are strategically located in the center of every city, and are critical assets for all types of current and future communications

More information

Building a Kubernetes on Bare-Metal Cluster to Serve Wikipedia. Alexandros Kosiaris Giuseppe Lavagetto

Building a Kubernetes on Bare-Metal Cluster to Serve Wikipedia. Alexandros Kosiaris Giuseppe Lavagetto Building a Kubernetes on Bare-Metal Cluster to Serve Wikipedia Alexandros Kosiaris Giuseppe Lavagetto Introduction The Wikimedia Foundation is the organization running the infrastructure supporting Wikipedia

More information

CONTAINERS AND MICROSERVICES WITH CONTRAIL

CONTAINERS AND MICROSERVICES WITH CONTRAIL CONTAINERS AND MICROSERVICES WITH CONTRAIL Scott Sneddon Sree Sarva DP Ayyadevara Sr. Director Sr. Director Director Cloud and SDN Contrail Solutions Product Line Management This statement of direction

More information

ACI Terminology. This chapter contains the following sections: ACI Terminology, on page 1. Cisco ACI Term. (Approximation)

ACI Terminology. This chapter contains the following sections: ACI Terminology, on page 1. Cisco ACI Term. (Approximation) This chapter contains the following sections:, on page 1 Alias API Inspector App Center Alias A changeable name for a given object. While the name of an object, once created, cannot be changed, the Alias

More information

Program Access 4.0 / A4 engagement on SEBA and VOLTHA. Access 4.0 Team Presenter: Bjoern Nagel

Program Access 4.0 / A4 engagement on SEBA and VOLTHA. Access 4.0 Team Presenter: Bjoern Nagel Program Access 4.0 / A4 engagement on SEBA and VOLTHA Access 4.0 Team Presenter: Bjoern Nagel VOLTHA VOLTHA contributions related to DT Access 4.0 Changes in voltha adapter & core Support for reporting

More information

Leveraging OPNFV test tools beyond the NFV domain. Georg Kunz, Emma Foley & the OPNFV testing community

Leveraging OPNFV test tools beyond the NFV domain. Georg Kunz, Emma Foley & the OPNFV testing community Leveraging OPNFV test tools beyond the NFV domain Georg Kunz, Emma Foley & the OPNFV testing community Goals of this talk 1. Create awareness for OPNFV test tools Targeting users outside of NFV domain

More information

Converged Multi-Access Edge and Next-Gen SDN Tutorial

Converged Multi-Access Edge and Next-Gen SDN Tutorial Converged Multi-Access Edge and Next-Gen SDN Tutorial Agenda Time Topics Presenters 9:00am 9:20am Introduction & Updates to ONF Project Portfolio Timon Sloane, ONF 9:20am 9:45am NG-SDN: Stratum & P4 Project

More information

Use Case Brief BORDERLESS DATACENTERS

Use Case Brief BORDERLESS DATACENTERS Use Case Brief BORDERLESS DATACENTERS Today s cloud service providers must maintain consistent levels of service for each end user or customer, independent of physical location and hardware. This brief

More information

Kubernetes Integration Guide

Kubernetes Integration Guide Kubernetes Integration Guide Cloud-Native Security www.aporeto.com Aporeto Kubernetes Integration Guide The purpose of this document is to describe the features of Aporeto that secure application services

More information

KUBERNETES IN A GROWN ENVIRONMENT AND INTEGRATION INTO CONTINUOUS DELIVERY

KUBERNETES IN A GROWN ENVIRONMENT AND INTEGRATION INTO CONTINUOUS DELIVERY KUBERNETES IN A GROWN ENVIRONMENT AND INTEGRATION INTO CONTINUOUS DELIVERY Stephan Fudeus, Expert Continuous Delivery Dr. Sascha Mühlbach, Expert Infrastructure Architect United Internet / 1&1 Mail & Media

More information

Developing Enterprise Cloud Solutions with Azure

Developing Enterprise Cloud Solutions with Azure Developing Enterprise Cloud Solutions with Azure Java Focused 5 Day Course AUDIENCE FORMAT Developers and Software Architects Instructor-led with hands-on labs LEVEL 300 COURSE DESCRIPTION This course

More information

ViryaOS RFC: Secure Containers for Embedded and IoT. A proposal for a new Xen Project sub-project

ViryaOS RFC: Secure Containers for Embedded and IoT. A proposal for a new Xen Project sub-project ViryaOS RFC: Secure Containers for Embedded and IoT A proposal for a new Xen Project sub-project Stefano Stabellini @stabellinist The problem Package applications for the target Contain all dependencies

More information

Casa Systems Axyom Multiservice Router

Casa Systems Axyom Multiservice Router Solution Brief Casa Systems Axyom Multiservice Router Solving the Edge Network Challenge To keep up with broadband demand, service providers have used proprietary routers to grow their edge networks. Cost

More information

Voltha Architecture in a clustered HA configuration. Sergio Slobodrian, Ciena CORD Build Wed, November 7 th, 2017

Voltha Architecture in a clustered HA configuration. Sergio Slobodrian, Ciena CORD Build Wed, November 7 th, 2017 Voltha Architecture in a clustered HA configuration Sergio Slobodrian, Ciena CORD Build Wed, November 7 th, 2017 Abstract This talk will dive in on VOLTHA s clustered high availability architecture including

More information

Preparing your Business for Virtualization

Preparing your Business for Virtualization Preparing your Business for Virtualization Pierre Lavillat NFV Director Program Manager - HPE 2018 TM Forum 1 Future Network will be virtualized Classic Appliance Approach Virtualization Approach Message

More information

Casa Systems Axyom Multiservice Router

Casa Systems Axyom Multiservice Router Solution Brief Casa Systems Axyom Multiservice Router Solving the Edge Network Challenge To keep up with broadband demand, service providers have used proprietary routers to grow their edge networks. Cost

More information

Virtualizing 5G Infrastructure using Cloud VIM. Sangho Shin SK Telecom

Virtualizing 5G Infrastructure using Cloud VIM. Sangho Shin SK Telecom Virtualizing 5G Infrastructure using Cloud VIM Sangho Shin SK Telecom NFV ETSI Standard T-MANO Cloud VIM Cloud VIM T-MANO 2 T-MANO In lined with SK Telecom s unified orchestration strategy, T-MANO provides

More information

Enterprise CORD. Marc De Leenheer. h6p://cord.onosproject.org/

Enterprise CORD. Marc De Leenheer. h6p://cord.onosproject.org/ Enterprise CORD Marc De Leenheer Ayaka Koshibe ON.Lab ON.Lab h6p://cord.onosproject.org/ Expensive and verncally integrated equipment Current State of the Art Branch Very hard to spawn VNFs, enterprises

More information

Windows Azure Services - At Different Levels

Windows Azure Services - At Different Levels Windows Azure Windows Azure Services - At Different Levels SaaS eg : MS Office 365 Paas eg : Azure SQL Database, Azure websites, Azure Content Delivery Network (CDN), Azure BizTalk Services, and Azure

More information

Microsoft MB2-716 Exam

Microsoft MB2-716 Exam Volume: 93 Questions Question: 1 You create a custom field and set the requirement level to Business Required. For which scenarios is the requirement level enforced? A. A user creates a record through

More information

Cisco ACI Terminology ACI Terminology 2

Cisco ACI Terminology ACI Terminology 2 inology ACI Terminology 2 Revised: May 24, 2018, ACI Terminology Cisco ACI Term Alias API Inspector App Center Application Policy Infrastructure Controller (APIC) Application Profile Atomic Counters Alias

More information

TEN LAYERS OF CONTAINER SECURITY

TEN LAYERS OF CONTAINER SECURITY TEN LAYERS OF CONTAINER SECURITY Tim Hunt Kirsten Newcomer May 2017 ABOUT YOU Are you using containers? What s your role? Security professionals Developers / Architects Infrastructure / Ops Who considers

More information

Service Orchestration- Need for Users

Service Orchestration- Need for Users Service Orchestration- Need for Users Background Issues: Increased Capex and Opex Huge manual efforts involved single-purpose/ domain specific / homogenous networks Possible way out: SDN NFV Automation

More information

voltha Project: The Story and Where We Are

voltha Project: The Story and Where We Are voltha Project: The Story and Where We Are ONF & AT&T BBWF October 19, 2017 Agenda voltha What, Why, and Some Framework Stuff voltha Releases in 2017 voltha before and after May 2017 Release roadmap and

More information

Cisco Enterprise Cloud Suite Overview Cisco and/or its affiliates. All rights reserved.

Cisco Enterprise Cloud Suite Overview Cisco and/or its affiliates. All rights reserved. Cisco Enterprise Cloud Suite Overview 2015 Cisco and/or its affiliates. All rights reserved. 1 CECS Components End User Service Catalog SERVICE PORTAL Orchestration and Management UCS Director Application

More information

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme CNA2080BU Deep Dive: How to Deploy and Operationalize Kubernetes Cornelia Davis, Pivotal Nathan Ness Technical Product Manager, CNABU @nvpnathan #VMworld #CNA2080BU Disclaimer This presentation may contain

More information

Central Office Re-Architected as a Data Center

Central Office Re-Architected as a Data Center SDN Use Cases for Service Provider Networks Central Office Re-Architected as a Data Center Larry Peterson, Ali Al-Shabibi, Tom Anshutz, Scott Baker, Andy Bavier, Saurav Das, Jonathan Hart, Guru Palukar,

More information

Accelerate at DevOps Speed With Openshift v3. Alessandro Vozza & Samuel Terburg Red Hat

Accelerate at DevOps Speed With Openshift v3. Alessandro Vozza & Samuel Terburg Red Hat Accelerate at DevOps Speed With Openshift v3 Alessandro Vozza & Samuel Terburg Red Hat IT (R)Evolution Red Hat Brings It All Together What is Kubernetes Open source container cluster manager Inspired by

More information

Containers OpenStack. Murano brings Docker & Kubernetes to OpenStack. Serg Melikyan. software.mirantis.com. January 27, 2015

Containers OpenStack. Murano brings Docker & Kubernetes to OpenStack. Serg Melikyan. software.mirantis.com. January 27, 2015 Containers OpenStack Murano brings Docker & Kubernetes to OpenStack Serg Melikyan software.mirantis.com January 27, 2015 Agenda Introduction Murano Kubernetes Empowering Docker on OpenStack Kubernetes

More information

São Paulo. August,

São Paulo. August, São Paulo August, 28 2018 Going Cloud Native with Cloud Foundry Luis Macedo Sr Platform Engineer, Pivotal @luis0macedo What is Cloud Native Platform? - A platform that delivers predictable deployment

More information

VMWARE PIVOTAL CONTAINER SERVICE

VMWARE PIVOTAL CONTAINER SERVICE DATASHEET VMWARE PIVOTAL CONTAINER SERVICE AT A GLANCE VMware Pivotal Container Service (PKS) is a production-grade Kubernetes-based container solution equipped with advanced networking, a private container

More information

OpenStack Mitaka Release Overview

OpenStack Mitaka Release Overview OpenStack Mitaka Release Overview Brad Topol, Ph.D., IBM Distinguished Engineer, OpenStack Core Contributor Davanum Srinivas, Community Architect and OpenStack TC Member / Principal Software Engineer,

More information

Taming your heterogeneous cloud with Red Hat OpenShift Container Platform.

Taming your heterogeneous cloud with Red Hat OpenShift Container Platform. Taming your heterogeneous cloud with Red Hat OpenShift Container Platform martin@redhat.com Business Problem: Building a Hybrid Cloud solution PartyCo Some Bare Metal machines Mostly Virtualised CosPlayUK

More information

Continuous delivery while migrating to Kubernetes

Continuous delivery while migrating to Kubernetes Continuous delivery while migrating to Kubernetes Audun Fauchald Strand Øyvind Ingebrigtsen Øvergaard @audunstrand @oyvindio FINN Infrastructure History Kubernetes at FINN Agenda Finn Infrastructure As

More information

Inventing Future Access and Services

Inventing Future Access and Services CORD: Central Office Re-architected as a Datacenter Inventing Future Access and Services Guru Parulkar ON.Lab and Stanford University parulkar@stanford.edu CORD + ONOS Community ON.LAB SERVICE PROVIDER

More information

Hillstone CloudEdge For Network Function Virtualization (NFV) Solutions

Hillstone CloudEdge For Network Function Virtualization (NFV) Solutions Hillstone CloudEdge For Network Function Virtualization (NFV) Solutions Introduction With the advancing technologies, business applications and operations naturally have become more dynamic in order to

More information

Trellis Introduction. Saurav Das, Charles Chan & Jono Hart. with contributions from many more. CORD Build 2017, San Jose January 14, 2018

Trellis Introduction. Saurav Das, Charles Chan & Jono Hart. with contributions from many more. CORD Build 2017, San Jose January 14, 2018 Trellis Introduction aurav Das, Charles Chan & Jono Hart with contributions from many more CORD uild 2017, an Jose January 14, 2018 Outline What is Trellis? Why Trellis? Trellis Roadmap Open ource oftware

More information

Kubernetes - Networking. Konstantinos Tsakalozos

Kubernetes - Networking. Konstantinos Tsakalozos Kubernetes - Networking Konstantinos Tsakalozos Kubernetes From the greek word κυβερνήτης originally designed by Google and donated to the Cloud Native Computing Foundation. Presented at "Large-scale cluster

More information

Building a government cloud Concepts and Solutions

Building a government cloud Concepts and Solutions Building a government cloud Concepts and Solutions Dr. Gabor Szentivanyi, ULX Open Source Consulting & Distribution Background Over 18 years of experience in enterprise grade open source Based in Budapest,

More information

10 Kube Commandments

10 Kube Commandments 10 Kube Commandments We've been in the game for years That in itself is admirable There's rules to this biz We wrote y'all a manual A step-by-step conf talk for you to get... Your clusters on track And

More information

The Elements of Kubernetes. Aaron Schlesinger Microsoft Azure Containers Lead, SIG-Service-Catalog

The Elements of Kubernetes. Aaron Schlesinger Microsoft Azure Containers Lead, SIG-Service-Catalog The Elements of Kubernetes Aaron Schlesinger Microsoft Azure Containers Lead, SIG-Service-Catalog Why we re here Kubernetes is growing fast Usage, development, projects We re in the wild west Building

More information

OpenShift Dedicated 3 Release Notes

OpenShift Dedicated 3 Release Notes OpenShift Dedicated 3 Release Notes Last Updated: 2018-05-17 OpenShift Dedicated 3 Release Notes Legal Notice Copyright 2018 Red Hat, Inc. The text of and illustrations in this document are licensed by

More information

ONOS Support for P4. Carmelo Cascone MTS, ONF. December 6, 2018

ONOS Support for P4. Carmelo Cascone MTS, ONF. December 6, 2018 ONOS Support for P4 Carmelo Cascone MTS, ONF December 6, 2018 Pipelines Pipeline of match-action tables Packets ASIC, FPGA, NPU, or CPU 2 P4 - The pipeline programing language Domain-specific language

More information

Flexible MAC Architecture (FMA)

Flexible MAC Architecture (FMA) Flexible MAC Architecture (FMA) Copyright 2017 ARRIS Enterprises, LLC. All rights reserved Mike Emmendorfer Vice President, Systems Engineering and Architecture as well as Vendor Co-Chair of the CableLabs

More information

OPEN-O DevOps Practice with Automation Toolchain

OPEN-O DevOps Practice with Automation Toolchain OPEN-O DevOps Practice with Automation Toolchain Helen Chen Principal Architect, Huawei USA PTL of OPEN-O Integration helen.chen@huawei.com Weidong Shao Principal Engineer, Huawei USA weidong.shao@huawei.com

More information

Integrate OAI-as-a-Service into M-CORD. Wilson Wang Chien-Hao Chen Wei-Yu Chen Ching Tang

Integrate OAI-as-a-Service into M-CORD. Wilson Wang Chien-Hao Chen Wei-Yu Chen Ching Tang Integrate OAI-as-a-Service into M-CORD Wilson Wang Chien-Hao Chen Wei-Yu Chen Ching Tang 1 About Us Wilson Wang (ITRI / NCTU) Chien-Hao Chen (ITRI) Jimmy Wen (ITRI) Wei-Yu Chen (NCTU) Ching Tang (NCTU)

More information

Mini-PON: Softwarized module-type PON architecture enhanced by SEBA

Mini-PON: Softwarized module-type PON architecture enhanced by SEBA Mini-PON: Softwarized module-type PON architecture enhanced by SEBA Keita Nishimoto, Takamitsu Tochino, Tomoya Hatano NTT Access Network Service Systems Lab (AS-Lab), Japan ONF Connect @ Santa Clara, USA

More information

TEN LAYERS OF CONTAINER SECURITY

TEN LAYERS OF CONTAINER SECURITY TEN LAYERS OF CONTAINER SECURITY A Deeper Dive 2 WHAT ARE CONTAINERS? It depends on who you ask... INFRASTRUCTURE APPLICATIONS Sandboxed application processes on a shared Linux OS kernel Simpler, lighter,

More information

INSTALLATION RUNBOOK FOR Iron.io + IronWorker

INSTALLATION RUNBOOK FOR Iron.io + IronWorker INSTALLATION RUNBOOK FOR Iron.io + IronWorker Application Type: Job processing Application Version: 1.0 MOS Version: 8.0 OpenStack version: Liberty Murano package checksum: Glance image checksum (docker):

More information

Container based network service/function deployment

Container based network service/function deployment Container based network service/function deployment For ARC 2nd review. Jan 9th, 2018 Isaku Yamahata , Session goal: answer feedbacks The purpose of

More information

Genomics on Cisco Metacloud + SwiftStack

Genomics on Cisco Metacloud + SwiftStack Genomics on Cisco Metacloud + SwiftStack Technology is a large component of driving discovery in both research and providing timely answers for clinical treatments. Advances in genomic sequencing have

More information

CORD Mini-Summit, Beijing, China

CORD Mini-Summit, Beijing, China 1 CORD Mini-Summit, Beijing, China Aseem Parikh, VP Solutions and Partnerships, ONF August 2017 About ONF 3 SDN & NFV Where Are We Now? Monolithic Systems Disaggregated Network New ONF Being Formed to

More information

Cloud-Native Network Functions (CNFs)

Cloud-Native Network Functions (CNFs) White Paper Cloud-Native Network Functions (CNFs) 2018 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public Information. Page 1 of 15 Contents Introduction... 3 Primary cloud-native

More information

Onto Petaflops with Kubernetes

Onto Petaflops with Kubernetes Onto Petaflops with Kubernetes Vishnu Kannan Google Inc. vishh@google.com Key Takeaways Kubernetes can manage hardware accelerators at Scale Kubernetes provides a playground for ML ML journey with Kubernetes

More information

M-CORD Connectivity: Deep Technical Dive

M-CORD Connectivity: Deep Technical Dive M-CORD Connectivity: Deep Technical Dive Open Networking Foundation (ONF) Woojoong Kim (woojoong@opennetworking.org) January 14, 2018 Contents EPC Connectivity Code-Level Analysis Let s Connect a New Service

More information

Open Security Controller Project Use Cases

Open Security Controller Project Use Cases Open Security Controller Project Use Cases Security Orchestration for Software-defined Infrastructure https://www.opensecuritycontroller.org Conceptual Architecture Orchestrating security policies with

More information

Program Access 4.0 / A4 Hans-Joerg Kolbe, Thomas Haag (technical lead) Robert Soukup (head of program) December 2018 ONF Connect

Program Access 4.0 / A4 Hans-Joerg Kolbe, Thomas Haag (technical lead) Robert Soukup (head of program) December 2018 ONF Connect Program Access 4.0 / A4 Hans-Joerg Kolbe, Thomas Haag (technical lead) Robert Soukup (head of program) December 2018 ONF Connect 1. Quick Re-cap Access 4.0 / A4 2. Achievements since last year and current

More information

Trellis Bare Metal Switches From Edgecore

Trellis Bare Metal Switches From Edgecore Trellis Bare Metal Switches From Edgecore Phil Huang Open Networking Solution Engineer, Edgecore Networks November, 9 2017 Phil Huang 黃秉鈞 Edgecore Networks Solution Engineer

More information

The speed of containers, the security of VMs. KataContainers.io

The speed of containers, the security of VMs. KataContainers.io * The speed of containers, the security of VMs KataContainers.io Contents Project Overview Technical Details Governance Get Involved History Intel Clear Containers * May 2015 Dec 2017 *Other names and

More information

Kubernetes. An open platform for container orchestration. Johannes M. Scheuermann. Karlsruhe,

Kubernetes. An open platform for container orchestration. Johannes M. Scheuermann. Karlsruhe, Kubernetes An open platform for container orchestration Johannes M. Scheuermann Karlsruhe, 30.08.2017 Johannes M. Scheuermann Cloud Platform Engineer @ inovex Software-Defined Datacenters Infrastructure

More information

Avanan for G Suite. Technical Overview. Copyright 2017 Avanan. All rights reserved.

Avanan for G Suite. Technical Overview. Copyright 2017 Avanan. All rights reserved. Avanan for G Suite Technical Overview Contents Intro 1 How Avanan Works 2 Email Security for Gmail 3 Data Security for Google Drive 4 Policy Automation 5 Workflows and Notifications 6 Authentication 7

More information

Akraino & Starlingx: a technical overview

Akraino & Starlingx: a technical overview Akraino & Starlingx: a technical overview Agenda Why Edge Computing? What s Edge Computing? Akraino and its Building Blocks StarlingX and its Technical Overview Collaboration in Akraino Community 2 Emerging

More information

WHY COMPOSABLE INFRASTRUCTURE INSTEAD OF HYPERCONVERGENCE

WHY COMPOSABLE INFRASTRUCTURE INSTEAD OF HYPERCONVERGENCE WHY COMPOSABLE INFRASTRUCTURE INSTEAD OF HYPERCONVERGENCE WHO WE ARE GOAL: Composable Infrastruture HEADQUARTERS: Toronto - Canada COMPANY FOCUS: Composable infrastructure True Software Defined Datacenter

More information

Vitess on Kubernetes. followed by a demo of VReplication. Jiten Vaidya

Vitess on Kubernetes. followed by a demo of VReplication. Jiten Vaidya Vitess on Kubernetes followed by a demo of VReplication Jiten Vaidya jiten@planetscale.com A word about me... Jiten Vaidya - Managed teams that operationalized Vitess at Youtube CEO at PlanetScale Founded

More information

Kubernetes 1.8 and Beyond

Kubernetes 1.8 and Beyond Kubernetes 1.8 and Beyond Aparna Sinha, Group Product Manager, Google OpenShift Commons Gathering - Austin, Texas Why do users choose Kubernetes? Open Source Community Frequent releases Resource efficiency

More information

ENHANCE APPLICATION SCALABILITY AND AVAILABILITY WITH NGINX PLUS AND THE DIAMANTI BARE-METAL KUBERNETES PLATFORM

ENHANCE APPLICATION SCALABILITY AND AVAILABILITY WITH NGINX PLUS AND THE DIAMANTI BARE-METAL KUBERNETES PLATFORM JOINT SOLUTION BRIEF ENHANCE APPLICATION SCALABILITY AND AVAILABILITY WITH NGINX PLUS AND THE DIAMANTI BARE-METAL KUBERNETES PLATFORM DIAMANTI PLATFORM AT A GLANCE Modern load balancers which deploy as

More information

Customize OpenStack for Telco NFV

Customize OpenStack for Telco NFV Security Level: Customize OpenStack for Telco NFV Tianran Zhou (zhoutianran@huawei.com) Feng Dong (albert.dongfeng@huawei.com) www.huawei.com HUAWEI TECHNOLOGIES CO., LTD. Motivation Linux as a general

More information

Serverless architectures with Fn Project

Serverless architectures with Fn Project überraschend mehr Möglichkeiten! Serverless architectures with Fn Project s Sven Bernhardt, Danilo Schmiedel OPITZ CONSULTING 2018 OPITZ CONSULTING - A success story since 1990 Our Mission: Help organizations

More information

WHITE PAPER. RedHat OpenShift Container Platform. Benefits: Abstract. 1.1 Introduction

WHITE PAPER. RedHat OpenShift Container Platform. Benefits: Abstract. 1.1 Introduction WHITE PAPER RedHat OpenShift Container Platform Abstract Benefits: Applications are designed around smaller independent components called microservices. Elastic resources: Scale up or down quickly and

More information