All Projects → PaxAutoma → Operos

PaxAutoma / Operos

Licence: apache-2.0
Linux-based operating system that brings hyperscaler-grade infrastructure automation to organizations of all sizes

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to Operos

Maruos
Your phone is your PC.
Stars: ✭ 1,814 (+1159.72%)
Mutual labels:  os, containers
Otomi Core
Otomi Container Platform, a suite of integrated best of breed open source tools combined with automation & self service, all wrapped together and made available as an enterprise ready and single deployable solution
Stars: ✭ 84 (-41.67%)
Mutual labels:  devops, containers
Ceph Container
Docker files and images to run Ceph in containers
Stars: ✭ 1,134 (+687.5%)
Mutual labels:  ceph, containers
Origin
Conformance test suite for OpenShift
Stars: ✭ 8,046 (+5487.5%)
Mutual labels:  devops, containers
Kontena
The developer friendly container and micro services platform. Works on any cloud, easy to setup, simple to use.
Stars: ✭ 1,480 (+927.78%)
Mutual labels:  devops, containers
Devops Exercises
Linux, Jenkins, AWS, SRE, Prometheus, Docker, Python, Ansible, Git, Kubernetes, Terraform, OpenStack, SQL, NoSQL, Azure, GCP, DNS, Elastic, Network, Virtualization. DevOps Interview Questions
Stars: ✭ 20,905 (+14417.36%)
Mutual labels:  devops, containers
Devops Resources
DevOps resources - Linux, Jenkins, AWS, SRE, Prometheus, Docker, Python, Ansible, Git, Kubernetes, Terraform, OpenStack, SQL, NoSQL, Azure, GCP
Stars: ✭ 1,194 (+729.17%)
Mutual labels:  devops, containers
Sparrow
运维管理平台(python3+flask+pycharts+apscheduler+gunicorn),模块化结构设计,底层依托mysql、influxdb、elasticsearch、zabbix、k8s等数据源数据
Stars: ✭ 723 (+402.08%)
Mutual labels:  devops, containers
Mist Ce
Mist is an open source, multi-cloud management platform
Stars: ✭ 1,391 (+865.97%)
Mutual labels:  devops, containers
Ansible Podman Collections
Repository for Ansible content that can include playbooks, roles, modules, and plugins for use with the Podman tool
Stars: ✭ 89 (-38.19%)
Mutual labels:  devops, containers
Kapo
Wrap any command in a status socket
Stars: ✭ 45 (-68.75%)
Mutual labels:  devops, containers
Training
Container, Monitoring & Logging, Cloud & DevOps Tutorials and Labs
Stars: ✭ 121 (-15.97%)
Mutual labels:  devops, containers
Centos7 S2i Nodejs
DEPRECATED OpenShift S2I builder images for Node.js ✨
Stars: ✭ 34 (-76.39%)
Mutual labels:  devops, containers
Radosgw Admin4j
A Ceph Object Storage Admin SDK / Client Library for Java ✨🍰✨
Stars: ✭ 50 (-65.28%)
Mutual labels:  ceph, devops
Iceci
IceCI is a continuous integration system designed for Kubernetes from the ground up.
Stars: ✭ 29 (-79.86%)
Mutual labels:  devops, containers
Awesome Cloud Native
A curated list for awesome cloud native tools, software and tutorials. - https://jimmysong.io/awesome-cloud-native/
Stars: ✭ 1,157 (+703.47%)
Mutual labels:  devops, containers
Tsuru
Open source and extensible Platform as a Service (PaaS).
Stars: ✭ 3,761 (+2511.81%)
Mutual labels:  devops, containers
Dokku
A docker-powered PaaS that helps you build and manage the lifecycle of applications
Stars: ✭ 22,155 (+15285.42%)
Mutual labels:  devops, containers
Copilot Cli
The AWS Copilot CLI is a tool for developers to build, release and operate production ready containerized applications on Amazon ECS and AWS Fargate.
Stars: ✭ 1,285 (+792.36%)
Mutual labels:  devops, containers
Lastbackend
System for containerized apps management. From build to scaling.
Stars: ✭ 1,536 (+966.67%)
Mutual labels:  devops, containers

Operos

Operos is a Linux-based operating system that brings hyperscaler-grade infrastructure automation to organizations of all sizes: scheduled containers, software defined networking, and converged storage automatically provisioned on commodity x86 servers.

Operos combines a number of open source technologies into a single cohesive cloud-native platform:

In addition to the above, Operos includes several original components:

For more information about Operos, see its home page.

Get Operos

The easiest way to get started with Operos is to download a binary ISO image:

Download the latest ISO binary here.

Read the installation instructions.

Building from source

  1. Run make to build everything from scratch. See below for how to rebuild various parts of the system.

  2. You should now see an installer ISO in the out directory.

Pre-requisites

  • You will need the archlinux64 box for Vagrant. This can be created via: packer-arch.

      git clone [email protected]:elasticdog/packer-arch.git
      cd packer-arch
      ./wrapacker
      vagrant box add -f --name archlinux64 output/packer_arch_virtualbox.box 
    

Running the generated ISO

To run the ISO, create virtual machines in VirtualBox. You'll need one machine for the controller and one or more workers. The controller node needs at least 2GB of RAM and 2 CPUs. The worker nodes need 2GB of RAM and one CPU.

The controller should have at least two network interfaces:

  • The first (external) interface should be connected externally. This can be done via bridged or NAT network types.
  • The second one should be connected to a VirtualBox host-only network (e.g. vboxnet1). This will be used for cross-node communication. Disable any DHCP servers on this network (in VirtualBox settings) as the controller will run its own DHCP server.

The worker should have at least one network interface, connected to the same host-only network.

After the controller installed, the Kubernetes API can be accessed via the provided kubectl script (note that the kubectl binary must be installed on the machine). This script will automatically fetch the user credentials from the controller if this has not already been done.

Version number

  • The version number is formatted as: x.y.z. The x.y portion is defined in the file operos-version. z is intended to be the build number in the CI system. This can be set via the make variable BUILD_NUM:

      make isobuild BUILD_NUM=123
    

    This value defaults to x, to indicate an unofficial build.

Docker image and Arch package cache

The Docker images and Arch packages used during builds are cached in the build tree. To refresh, use:

# Refresh Arch package cache
make packages
# Refresh Docker image cache
make images

The versions of Docker images to be used are specified in versions. The cache must be built at least once before running the build. It can also be rebuild any time to obtain the latest packages and images.

Rebuilding the ISO only

To rebuild only the ISO, skipping the cache updates, use:

make isobuild

Development build

There is a special, development build of the Operos ISO that can be built using:

make isobuild-dev

Differences between the development and production builds:

  • An SSH key is automatically generated (keys/testkey[.pub]) and set as an authorized key on all nodes, controller and worker. This makes it easy to log into the nodes without having to enter a password, for example:

      ssh -i keys/testkey [email protected]
    
  • When creating the images, gzip compression is used (instead of xz for production). This takes less time, but produces larger images.

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].