All Projects → hyperhq → Hyperd

hyperhq / Hyperd

Licence: apache-2.0
HyperContainer Daemon

Programming Languages

go
31211 projects - #10 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to Hyperd

Frakti
The hypervisor-based container runtime for Kubernetes.
Stars: ✭ 630 (-68.18%)
Mutual labels:  containers, hypervisor
Runv
Hypervisor-based Runtime for OCI
Stars: ✭ 798 (-59.7%)
Mutual labels:  containers, hypervisor
Hyperstart
The tiny Init service for HyperContainer
Stars: ✭ 135 (-93.18%)
Mutual labels:  containers, hypervisor
Kvm Vmi
KVM-based Virtual Machine Introspection
Stars: ✭ 153 (-92.27%)
Mutual labels:  hypervisor
Container Web Tty
Connect your containers via a web-tty
Stars: ✭ 156 (-92.12%)
Mutual labels:  containers
Rexray
REX-Ray is a container storage orchestration engine enabling persistence for cloud native workloads
Stars: ✭ 1,986 (+0.3%)
Mutual labels:  containers
Maya
Manage Container Attached Storage (CAS) - Data Engines in Kubernetes
Stars: ✭ 169 (-91.46%)
Mutual labels:  containers
Docker Blinkt Workshop
Get into physical computing with Docker and Raspberry Pi
Stars: ✭ 151 (-92.37%)
Mutual labels:  containers
Hdk
(unofficial) Hyper-V® Development Kit
Stars: ✭ 166 (-91.62%)
Mutual labels:  hypervisor
Bitnami Docker Magento
Bitnami Docker Image for Magento
Stars: ✭ 159 (-91.97%)
Mutual labels:  containers
Drone Gke
Drone plugin for deploying containers to Google Kubernetes Engine (GKE)
Stars: ✭ 159 (-91.97%)
Mutual labels:  containers
Dapr
Dapr is a portable, event-driven, runtime for building distributed applications across cloud and edge.
Stars: ✭ 16,274 (+721.92%)
Mutual labels:  containers
Vscode Remote Release
Visual Studio Code Remote Development: Open any folder in WSL, in a Docker container, or on a remote machine using SSH and take advantage of VS Code's full feature set.
Stars: ✭ 2,256 (+13.94%)
Mutual labels:  containers
Containers
Lightweight containers using Linux user namespaces
Stars: ✭ 153 (-92.27%)
Mutual labels:  containers
K8s App Engine
Application delivery engine for k8s
Stars: ✭ 166 (-91.62%)
Mutual labels:  containers
Simplesvm
A minimalistic educational hypervisor for Windows on AMD processors.
Stars: ✭ 152 (-92.32%)
Mutual labels:  hypervisor
Sherpa
Sherpa is a highly available, fast, and flexible horizontal job scaling for HashiCorp Nomad. It is capable of running in a number of different modes to suit different requirements, and can scale based on Nomad resource metrics or external sources.
Stars: ✭ 165 (-91.67%)
Mutual labels:  containers
Orca Build
Build OCI images from Dockerfiles.
Stars: ✭ 159 (-91.97%)
Mutual labels:  containers
Conu
conu - python API for your containers
Stars: ✭ 159 (-91.97%)
Mutual labels:  containers
S6 Overlay
s6 overlay for containers (includes execline, s6-linux-utils & a custom init)
Stars: ✭ 2,279 (+15.1%)
Mutual labels:  containers

Build Status

HyperContainer - Hypervisor-agnostic Docker Runtime

This repo contains two parts: the daemon of HyperContainer hyperd and the CLIhyperctl.

What is HyperContainer?

HyperContainer is a hypervisor-agnostic technology that allows you to run Docker images on plain hypervisor.

Why HyperContainer?


HyperContainer combines the best from both worlds: VM and Container.

- Container VM HyperContainer
Isolation Weak, shared kernel Strong, HW-enforced Strong, HW-enforced
Portable Yes, but kernel dependent sometimes No, hypervisor dependent Yes, hypervisor agnostic and portable image
Boot Fast, sub-second Slow, tens of seconds Fast, sub-second
Performance Great OK Good, minimal resource footprint and overhead
Immutable Yes No, configuration management required Yes, only kernel+image
Image Size Small, MBs Big, GBs Small, MBs
Compatibility No, need new tools Great, everything just works Good, it is still a "Machine", much less changes
Mature Not yet Production ready, SDN, SDS, LiveMigration, etc. Yes, just plug-&-play
ROI Rebuild everything with container - Reuse your virtual infrastructure

*BYOK = bring your own kernel

Requirements

  • QEMU 2.0 or later (QEMU 2.6 or later for ARM64 Architecture)
  • Xen 4.5 and VT enabled host (for Xen support)

Installation

Ensure you are running Linux (kernel 3.8 or later) and have QEMU (version 2.0 or later) installed. Then download the binaries and install them (hyper-container and hyperstart) directly.

For the detail of installation, please refer to the documents.

For information on using the command line, just type hyperctl. You may use hyperctl <command> --help for detailed information on any specific command.

Build From Source

Clone hyperd in GoPath

> mkdir -p ${GOPATH}/src/github.com/hyperhq
> cd ${GOPATH}/src/github.com/hyperhq
> git clone https://github.com/hyperhq/hyperd.git hyperd

And make sure you have go (>= 1.7) , device-mapper-devel, and autotools, go into the hyperd dir

> ./autogen.sh
> ./configure
> make

Then you can find the binaries hyperd daemon and hyperctl cmdline tool in current directory. Before running those commands, a config file needs to be placed at /etc/hyper/config directory, and you can find a sample under ${TOP}/package/dist/etc/hyper/config. Kernel and Initrd are required for starting the hyperd daemon, you can find those files from HyperStart project.

Find out more

Contact Us

Found a bug, want to suggest a feature, or have a question? File an issue. When reporting a bug, please include which version of hyperd you are running, as shown by hyperctl --version.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].