Project

General

Profile

Actions

Task #6869

closed

Challenge OpenStack and OpenNebula with ucloud

Added by Nico Schottelius almost 5 years ago. Updated 4 months ago.

Status:
Rejected
Priority:
Normal
Target version:
-
Start date:
06/23/2019
Due date:
09/18/2019
% Done:

100%

Estimated time:
(Total: 0.00 h)
PM Check date:

Description

Introduction

For proper growth and stability, we need to challenge our setup. We will try to replace opennebula with ucloud and at the same time challenge OpenStack.

This is not only a technical, but also a public project, which Sanghee will write the public story of.

ucloud supports IPv6 first and might only support IPv4 via NAT64 or proxying.

General Requirements:

  • a fully portable cloud management system that is API based, exposes all internals w/o secret keys
    • supporting console via guacamole
    • users in ldap
    • api authentication in ungleich-otp
    • firewalling in ufirewall (or similar)
  • A great team
  • To be built in less than 100 days

Technology stack

  • python3
    • easy to read
  • flask
    • easy to understand
  • ldap
    • well known
  • ungleich-otp
    • for API authentication
  • etcd
    • storing VMs, networks, etc.
  • nft (Linux), pf (BSD)
  • JSON
    • describing the data, easy to handle
  • Prometheus
    • For monitoring hosts and VMs
  • VXLAN
    • For networks
  • Ceph
    • as a datastore

Technical requirements

  • ucloud should be portable
    • While the primary target is Linux, it should run on FreeBSD/OpenBSD as well
  • There should be no single point of failure
    • APIs should be announced via BGP to the routers
    • Switches will then use ECMP to load balance
    • All APIs write to a distributed data store (v1: etcd) -> all data is distributed, too.
  • Fast dead host detection
    • Dead hosts should be detected fast, VMs should be rescheduled fast

Components

User API (ucloud-api)

Entrance point / communication with the user by CLI. Flask based. Allows for the following actions in v1:

  • Create VM
  • Delete VM
  • Create new network
  • Attach network to VM
  • Detach network from VM
  • Delete network

User web interface (ucloud-web)

Might be based on original dynamicweb code (https://code.ungleich.ch/ungleich-public/dynamicweb).

Scheduler (ucloud-scheduler)

The scheduler knows about hosts, their capacities and their usage. The scheduler decides which VM gets scheduled where. The scheduler is also responsible for rescheduling VMs (f.i. due to another host becoming better for a specific VM).

How it works:

  • Has a list of hosts for usage
  • Knows about the capacity (installed cores, installed ram) of a host

Host manager (ucloud-host)

Manages hosts. If a host crashes, instructs scheduler to restart VMs (host will be selected by scheduler).
If a host is added, the scheduler can use it.

VM manager (ucloud-vm)

Starts and stops VMs. Runs on every VM host.
Reacts on information from the scheduler. This component needs to support qemu on Linux and bhyve and co. on OpenBSD/FreeBSD.

How it works:

  • watches a specific key in etcd, for instance: /v1/vm/
  • if a key is added, check if it is a VM that should be started on THIS host.
    • if yes, start it
  • if a key is modified, check if a VM that is on this host, should be stopped

Network manager (ucloud-net)

This service will run on every host and watch keys in the prefix /v1/network/

Creates and manages virtual layer 2 networks. Basically does the following:

  • Create VXLAN with correct IPv6 multicast address

IPAM (ucloud-ipam)

Network address manager. Provides dhcpd/dhcp6d/router advertisements.

Legacy IP supporter (ucloud-legacy-ip)

For users who require legacy IP (IPv4), add a service that

  • adds a 1:1 NAT64 entry
  • adds a protocol based proxy entry
    • http(s)
    • smtp(s)
    • ssh jumphost

Firewall (ucloud-firewall)

The VMs should not be able to interfere with other VMs or hosts in a malicious way. The following protective measures need to be implemented:

  • prevent dhcpd answers in public networks
  • prevent router advertisements in public networks
  • prevent VM from using incorrect mac address
  • prevent VM from using incorrect ipv6 addresses

Note to Nico: ping reyk for possible involvement

Image store (ucloud-image)

Ceph will be used for storing images.

Features:

  • Allow uploading of images
  • Allow cloning of images (required for starting a VM based on an existing image)
  • Allow deleting of images
    • For cloned images after shutting down the VM

How it works for uploading:

  • There is a server named image.datacenterlight.ch
  • Every user in ldap can login via sftp and upload files
    • The server needs to authenticate against ldap for listing users
    • There needs to be a service to pull ssh keys from users into their home
  • There will be a base path for users to store their stuff
    • like /var/www/$USER/
    • reasoning for /var/www: to use nextcloud on top later
  • The required image format is qcow2

How it works for using it as an image:

  • User uses ucloud-cli image-create --name xyz
  • The service picks up the image from /var/www/$USER
  • Checks if it is qcow2 -> if not reject
  • If qcow2: use qemu-img | rbd import

Metadata (ucloud-meta)

Provides access to this to

  • public ssh keys
  • other data users provide

How it works

  • VMs need well known entry point
  • Should likely be DNS based
  • Might be reachable by http://metadata
    • This excludes https!
    • Maybe network configuration can contain metadata server?
      • dhcp option
      • router advertisement?
    • Maybe by convention: metadata.$domain
      • $domain injected by dhcp/router advertisements

Payment service (ucloud-pay)

If a user requests a service and the service is not free, the user will be asked to pay for it. Should support at least

  • credit card
  • bank transfer

Might also manage existing money / coupon / etc.

CLI (ucloud-cli)

All services will be primarily available via API, web is a second class citizien. The CLI might be based on / related to https://code.ungleich.ch/ungleich-public/ungleich-cli.

Authentication

time based one time tokens as implemented in ungleich-otp will be used for service authentication: https://code.ungleich.ch/ungleich-public/ungleich-otp

Milestones

v1 First MVP : 2019-07-02

This version should have the following features:

  • create and delete VMs

v2 : 2019-07-16

Additionally supports

  • network service: so VMs get an IPv6 address
  • Cleanups / clarifications from v1

v3 : 2019-07-30

Additionally supports

  • metadata service (for injecting ssh keys and more)
  • Cleanups / clarifications from v2

From v3 on we should be able to setup test VMs for our own usage

v4 : 2019-08-12

Productive version. We are able to migrate our own production VMs to ucloud.

v5: 2019-08-26:

Customer usable version.

Additionally supports

  • Console access via guacamole (ldap, totp, vnc)

Features not mapped to versions

  • VNC should only be exposed as a unix socket from the VM
    • This is much more secure and requires local access to the socket
    • To access the console as a user, we will ssh into the host that runs the VM and start socat on the host
    • i.e. similar to ssh VMHOST "socat ..." and then access it via guacamole

Subtasks 38 (0 open38 closed)

Task #6857: Create ucloud-firewallRejectedNico Schottelius06/26/2019

Actions
Task #6871: Create ucloud-apiClosedAhmed Bilal06/23/201906/28/2019

Actions
Task #6872: Create ucloud-vmClosedAhmed Bilal06/23/201906/27/2019

Actions
Task #6875: Create ucloud-schedulerClosedAhmed Bilal06/24/2019

Actions
Task #6876: Define ucloud JSON formatsClosedAhmed Bilal06/24/2019

Actions
Task #6877: Start the first VMs on place9 cluster using ucloud (ucloud v1)RejectedNico Schottelius06/24/2019

Actions
Task #6897: Create ucloud-image serviceRejected06/28/2019

Actions
Task #6899: Create ucloud-file-scan serviceRejected06/28/2019

Actions
Task #6900: Allow creating an image from a file in ucloud-api and ucloud-cliRejected06/28/2019

Actions
Task #6901: Describe on how to configure the files serviceRejectedll nu06/28/2019

Actions
Task #6903: Create a cdist type for files.datacenterlight.ch RejectedNico Schottelius06/28/2019

Actions
Task #6904: Implement ucloud-image-store managementRejected06/29/2019

Actions
Task #6914: ucloud-image-scannerClosedAhmed Bilal07/01/2019

Actions
Task #6902: Document the ucloud services and APIs in the open infrastructureClosedAhmed Bilal06/28/2019

Actions
Task #6908: ucloud v2 featuresRejectedNico Schottelius07/01/2019

Actions
Task #6909: Accept units in ucloud-api, but store in non-unit formatClosedAhmed Bilal07/01/2019

Actions
Task #6915: Introduce host status' and over/underbooking constraintsRejected07/01/2019

Actions
Task #6931: ucloud-hostRejectedNico Schottelius07/05/2019

Actions
Task #6995: ucloud-pay v1: Implement payment support into ucloudRejected07/24/2019

Actions
Task #6996: ucloud-pay v2: add support for retrieving payments from ZKBRejected07/24/2019

Actions
Task #7138: Nico's open / next points for ucloudRejectedNico Schottelius10/06/2019

Actions
Task #7205: Try 1: Installing ucloud on Arch LinuxRejectedNico Schottelius10/06/2019

Actions
Task #7139: Approach Azure, AWS, Softwayer, OpenStack and Cloudstack users and ask them about their opinionClosedAhmed Bilal09/12/201909/18/2019

Actions
Task #7206: Create ucloud page under ungleich.ch/ucloudRejectedNico Schottelius10/06/2019

Actions
Task #7221: Pre 0.0.1 release fixesRejectedNico Schottelius10/12/2019

Actions
Task #7278: Define how networking works in ucloudRejectedNico Schottelius10/30/2019

Actions
Task #7283: Cleanups for ucloud 0.0.2ClosedAhmed Bilal11/01/2019

Actions
Task #7285: Flows to implement and do document for go live (parent)RejectedNico Schottelius11/02/2019

Actions
Task #7286: Flow 1: as a sysadmin, I want to setup ucloud w/o ceph and run a VMClosedNico Schottelius11/02/2019

Actions
Task #7287: Flow 2: As a user I want to order an IPv6 only VM (via cli) (existing OS)Rejected11/02/2019

Actions
Task #7288: Flow 3: As a user I want to order a VM with my own OS (IPv6 only)Rejected11/02/2019

Actions
Task #7289: Flow 4: As a user I want to have a dualstack reachable VMRejected11/02/2019

Actions
Task #7290: Flow 5: as a user I want to map an IPv4 address to another VMRejected11/02/2019

Actions
Task #7291: Flow 6: as a sysadmin I want to know / install all requirementsRejectedNico Schottelius11/02/2019

Actions
Task #7292: Flow 7: as a sysadmin I want to be able to migrate VMsRejected11/02/2019

Actions
Task #7293: Flow 8: As a user I want to be able to order a new network and use it Rejected11/02/2019

Actions
Task #7294: Flow 9: as a user I want to have an overview of my spendings and billsRejectedMondi Ravi11/02/2019

Actions
Task #7295: Flow 10: as a sysadmin, I want to be able to see statisticsRejected11/02/2019

Actions
Actions #1

Updated by Nico Schottelius almost 5 years ago

  • Project changed from 5 to Open Infrastructure
Actions #2

Updated by Nico Schottelius almost 5 years ago

  • Description updated (diff)
Actions #4

Updated by Nico Schottelius almost 5 years ago

  • Description updated (diff)
Actions #5

Updated by Nico Schottelius almost 5 years ago

  • Description updated (diff)
Actions #6

Updated by Nico Schottelius almost 5 years ago

  • Description updated (diff)
Actions #7

Updated by Nico Schottelius almost 5 years ago

  • Description updated (diff)
Actions #8

Updated by Nico Schottelius almost 5 years ago

  • Description updated (diff)
Actions #9

Updated by Nico Schottelius almost 5 years ago

  • Description updated (diff)
Actions #10

Updated by Evil Ham almost 5 years ago

I think payment method --> pluggable thing that let's the system know sth can be processed.
That can be: codes, credit in account, credit card, bank transfer (aka manual validation because banks live in the 20th century (note: openbanking is a thing that should be working Europe wide, it can have gotten better/usable)).
Basically: you don't care about the specifics, design so payment is handled somehow.

The rest requires a non-available brain. It's too warm.

Actions #11

Updated by Nico Schottelius almost 5 years ago

  • Description updated (diff)
Actions #12

Updated by Nico Schottelius almost 5 years ago

  • Description updated (diff)
Actions #13

Updated by Nico Schottelius almost 5 years ago

  • Description updated (diff)
Actions #14

Updated by Nico Schottelius almost 5 years ago

  • Description updated (diff)
Actions #15

Updated by Nico Schottelius almost 5 years ago

  • Description updated (diff)
Actions #16

Updated by Nico Schottelius 4 months ago

  • Status changed from In Progress to Rejected
Actions

Also available in: Atom PDF