From 188a2b337d910878fccb5a2a51298d9d4875d20d Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Tue, 25 Jul 2017 06:50:16 +0800 Subject: Add Global Interop Talk --- src/images/Robbie_Williams_Cannes_2015.jpg | Bin 0 -> 61274 bytes src/talks/global-interop.hbs | 534 +++++++++++++++++++++++++++++ 2 files changed, 534 insertions(+) create mode 100644 src/images/Robbie_Williams_Cannes_2015.jpg create mode 100644 src/talks/global-interop.hbs diff --git a/src/images/Robbie_Williams_Cannes_2015.jpg b/src/images/Robbie_Williams_Cannes_2015.jpg new file mode 100644 index 0000000..e802301 Binary files /dev/null and b/src/images/Robbie_Williams_Cannes_2015.jpg differ diff --git a/src/talks/global-interop.hbs b/src/talks/global-interop.hbs new file mode 100644 index 0000000..c7b4b66 --- /dev/null +++ b/src/talks/global-interop.hbs @@ -0,0 +1,534 @@ + + + + + + + Global OpenStack: the Power of Cloud Interoperability + + + + +
+

Who am I?

+ +

Office of Technology

+

Zuul

+

Ansible

+
+ +
+

Who am I?

+ +

Technical Committee

+

Developer Infrastructure Core Team

+

Former Foundation Board of Directors

+

PTL of shade project

+
+ +
+

+ I want to deploy and run an application on the internet + so that my customers all over the world can consume it.

+
+ +
+

+ I want to deploy the application across multiple clouds or regions + so that my service survives issues in any one of them.

+
+ +
+

+ I want to deploy the application in a location of my choosing + so that I can comply with regulatory demands.

+
+ +
+

THIS WORKS

+

I'm doing it myself as we speak

+ + + +

20k VMs per-day

+

20 Cloud Regions in 9 clouds

+

Only using OpenStack APIs

+ +
+ +
+

OpenStack Infra

+
+ +
+

Tooling, Automation and CI for OpenStack Project

+
+ +
+

2000 Developers

+
+ +
+

Gated Commits

+

Every commit is fully integration tested (twice) before landing

+
+ +
+

Each Test Runs on a Single Use Cloud Slave

+

This is that "cloud scale out" part

+
+ +
+

2 kjph

+
+ +
+

2 KJPH (kilo-jobs per hour)

+
+ +
+

Our VMs are everywhere

+

Public Clouds

+ +

Managed Private Clouds

+ +
+ +
+

Private Cloud

+

Infra Cloud

+ +
+ +
+

image

+
+ +
+

Gerrit

+ +
+ +
+

nodepool

+ +
+ +
+

How do we do this?

+
+ +
+

Control plane

+

http://git.openstack.org/cgit/openstack-infra/system-config

+ +
+ +
+

os-client-config

+

http://git.openstack.org/cgit/openstack/os-client-config

+

A library to handle config information for openstack clients

+

Tracks differences in vendors that can't be discovered

+

In use in python-openstackclient, shade and ansible

+
+ +
+

os-client-config

+

~/.config/openstack/clouds.yaml

+
+clouds:
+  citycloud:
+     profile: citycloud
+     auth:
+      username: mordred
+      password: XXXXXXXXXXXXXXXXXXXXX
+      project_id: 65222a4d09ea4c68934fa1028c77f394
+      user_domain_id: d0919bd5e8d74e49adf0e145807ffc38
+      project_domain_id: d0919bd5e8d74e49adf0e145807ffc38
+    regions:
+      - Kna1
+      - Sto2
+      - Lon1
+  dreamcompute:
+    profile: dreamhost
+    auth:
+      username: montay6
+      project_name: dhc2111978
+      password: XXXXXXXXXXXXX
+    region_name: RegionOne
+      
+
+ +
+

shade

+

http://git.openstack.org/cgit/openstack-infra/shade

+

A library to wrap business logic around client libraries

+
+cloud.create_image('image-name', filename='image-filename.qcow2')
+cloud.create_server('my-server', image='immage-name', auto_ip=True)
+      
+

In use in Infra Nodepool and ansible

+
+ +
+

ansible

+

Based on shade

+
+- os_keypair:
+    cloud: citycloud
+    name: mordred
+    public_key_file: ~/.ssh/id_rsa.pub
+- os_image:
+    cloud: citycloud
+    name: Monty Ubuntu
+    file: ubuntu.vhd
+- os_server:
+    cloud: citycloud
+    name: my-server
+    flavor_ram: 1024
+    image: Monty Ubuntu
+      
+
+ +
+

ansible

+

Add my keypair to 30 Regions in 13 clouds

+

+- os_keypair:
+    cloud: "{{ item.cloud }}"
+    region_name: "{{ item.region_name }}"
+    name: mordred
+    public_key_file: ~/.ssh/id_rsa.pub
+    with-items:
+    - {cloud: vexxhost, region_name: ca-ymq-1}
+    - {cloud: ovh, region_name: SBG1}
+    - {cloud: ovh, region_name: BHS1}
+    - {cloud: ovh, region_name: GRA1}
+    - {cloud: citycloud, region_name: Buf1}
+    - {cloud: citycloud, region_name: La1}
+    - {cloud: citycloud, region_name: Fra1}
+    - {cloud: citycloud, region_name: Lon1}
+    - {cloud: citycloud, region_name: Sto2}
+    - {cloud: citycloud, region_name: Kna1}
+    - {cloud: internap, region_name: ams01}
+    - {cloud: internap, region_name: da01}
+    - {cloud: internap, region_name: nyj01}
+    - {cloud: internap, region_name: sin01}
+    - {cloud: internap, region_name: sjc01}
+    - {cloud: infracloud, region_name: vanilla}
+    - {cloud: infracloud, region_name: chocolate}
+    - {cloud: fuga, region_name: cystack}
+    - {cloud: datacentred, region_name: sal01}
+    - {cloud: clouda, region_name: regionOne}
+    - {cloud: auro, region_name: van1}
+    - {cloud: ustack, region_name: bj1}
+    - {cloud: zetta, region_name: no-osl1}
+    - {cloud: kiss, region_name: region1}
+    - {cloud: rax, region_name: IAD}
+    - {cloud: rax, region_name: ORD}
+    - {cloud: rax, region_name: SYD}
+    - {cloud: rax, region_name: LON}
+    - {cloud: rax, region_name: DFW}
+    - {cloud: rax, region_name: HKG}
+      
+

+ +
+

nodepool

+ +
+ +
+

OpenStack Works!

+

Why should you care?

+

Is interop really important?

+
+ +
+

Run what you want

+

Cloud-native application

+

Traditional Java web application

+

High-performance Database on Baremetal

+
+ +
+

Run it where you want

+ + +
+ +
+

Geography

+ +
+ +
+

Delivery Model

+ +
+ +
+

China’s Sinorail Information Cloud

+
+ +
+

Billions of Passengers

+
+ +
+

Anybody REALLY think that should just run in a + Public Cloud?

+
+ +
+

Anybody REALLY think that should run in a + Public Cloud owned by a US company?

+
+ +
+

What about the China National Offshore Oil Corp?

+
+ +
+

or the State Grid of China?

+
+ +
+ +
+ +
+

Chinese OpenStack

+

sorted alphabetically

+

99 Cloud

+

China Mobile

+

China National Offshore Oil Corp

+

China Telecom

+

China Unicom

+

EasyStack

+

Huawei

+

Inspur

+

Sinorail

+

State Grid of China

+

T2 Cloud

+

Tencent

+

UMCloud

+

UnitedStack

+

ZTE

+
+ +
+

European Public OpenStack

+

CityCloud: Sweden, UK, US

+

Datacentred: UK

+

Elastx: Sweden

+

Enter Cloud Suite: Italy, Germany

+

Fugo: Netherlands

+

Internap: Netherlands, US, Singapore

+

OTC: Frankfurt

+

OVH: France, US

+

Switch: Switzerland

+

Ultimum: Czech Republic

+

Zetta: Norway

+

kiss.cloud: Netherlands

+
+ +
+

Other Public OpenStack

+

Auro: Vancouver

+

Catalyst: New Zealand

+

Conoha: Japan, Singapore, US

+

Dreamhost: US

+

Ormuco: Canada + Federated

+

Vexxhost: Canada

+
+ +
+

What about the US?

+ +

Robbie Williams

+

Best-selling British solo artist in the UK

+

Best-selling non-Latino artist in Latin America

+

Basically unknown in the US

+
+ +
+

OpenStack Community is Designed for Collaboration

+
+ +
+

In the OpenStack Project, all participants are Equal

+
+ +
+

We aren't going to remove something you need...

+

because we ARE you.

+
+ +
+

I'm in this to make the world better. The whole world.

+
+ +
+

Why does Interop Matter

+
+ +
+

Is Sinorail going to run China's Train system with + an app they download from an App Store?

+

Nope

+

+ +
+

Are they going to let me run VMs for OpenStack Infra + Nodepool on their Cloud?

+

Nope

+

That would be SUPER cool though!

+
+ +
+

Who cares if China National Offshore Oil Corp, State Grid of China + and Deutsche Telecom's clouds work the same?

+

+ +
+

It's all about the tools

+ +
+ +
+

It's about spending resources wisely

+

If China National Offshore Oil Corp, State Grid of China and + Sinorail all run Interoperable OpenStack Clouds ...

+

they share not just the OpenStack Cloud software itself...

+

they ALSO share consumption and orchestration software.

+

It's like I work for all of you!

+

It's like we all work with each other

+
+ +
+

China, and the rest of the Global Community, understands the power + of collaborating on our shared problems.

+
+ +
+

What are we doing to help you with Interop?

+
+ +
+

Interop Working Group

+ +
+ +
+

API Working Group

+ +
+ +
+

API Working Group Consumption Specs

+ + +
+ +
+

API Consumers Mailing List

+

http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-api-consumers

+

Collaboration between SDK, Framework, Tool Authors

+

Python, Go, Java, Ruby, Javascript ...

+
+ +
+

Writing Software!

+ +

All of these can use help!

+
+ +
+

OpenStack gives you the power to make the choices that + are right for you, your business, your users, your country + and the world.

+
+ + + -- cgit v1.2.3