Cloud Computing, DevOps

6 Mins Read

RunC : An OCI Compliant Lightweight Universal Container Runtime

Overview

The blog is about container runtime. The container runtimes which are currently available mostly compliant with the Open Container Initiative (OCI) Runtime Specification. This blog provides an introduction to runC.

runC is a container runtime based on the Runtime Specification of the Linux Foundation (runtime-spec). The Open Container Initiative created runC. Oracle Linux Cloud Native Environment includes runC. runC is a Cloud Native Computing Foundation (CNCF)-compliant environment for microservices and container orchestration. runC is based on the upstream runC project’s stable release. Oracle-specific fixes and patches for specific bugs are the only differences between Oracle versions of the software and upstream releases.

Introduction

A software element that may execute containers on a host operating system is referred to as a container runtime or container engine. Container runtimes in a containerized architecture are in charge of loading container images from a repository, keeping track of local system resources, isolating system resources for usage in a container, and controlling the lifecycle of containers.

  • Cloud Migration
  • Devops
  • AIML & IoT
Know More

Container Runtime Types

Container runtimes come in three basic categories.

  1. Low-level runtimes
  2. High-level runtimes
  3. Sandboxed or virtualized runtimes.

Low-Level Container Runtimes

To provide open standards for Linux containers, Docker initiated the Open Container Interface (OCI) Linux Foundation initiative.

A low-level container runtime called runC carries out the OCI standard.

runC was developed by the OCI and Docker. Today, it serves as the low-level container runtime as per de facto standard. runC is implemented using Go. It is constantly being monitored and updated by moby as part of Docker’s open source project, moby.

OCI (Open Container Initiative)

The OCI is a mechanism for open governance that makes decisions about container runtimes and formats (created by Docker, CoreOS, etc.).

To make things uniform, it simply establishes criteria and standards that apply to containers.

There are mainly two specifications:

  1. Runtime definition to specify how a container functions and its lifecycle while running.
  • For example, when you run docker container create golang:alpine, it describes how exactly your docker container works.
  • According to the standard, an OCI-spec container must have certain attributes.

OCI

2. A container image’s standard format is defined by an image specification.

Both containerd and cri-o use runC to list OCI specifications.

  • OCI specifies how a container should be set up, run, and executed, as well as what should be included in its state, among other things.
  • runC is a lightweight and universal container runtime that manages all of the low-level intricacies of launching a container as well as Linux primitives such as cgroups and namespaces that handle a container’s system and resource isolation.
  • cri-o or containerd control the lifetime of a container, from image execution through supervision, networking, and container death.
  • Extra – Docker (or, more properly, dockerd) is a containerd* abstraction. It also handles orchestration, scalability, and volume, among other things.

runC is a small, portable container runtime. It contains all of the plumbing code needed by Docker to communicate with container-related system features. It is built around the following principles:

  1. Designed for safety.
  2. Usable at large scale, in production, today.
  3. There is no dependence on the rest of the Docker platform: only the container runtime is required.

The following are popular runC features:

Full Linux namespace support, including user namespaces

  • All security technologies available in Linux are supported natively, including Selinux, Apparmor, seccomp, control groups, capability drop, pivot root, uid/gid dropping, and so on. If Linux can do it, so can runC.
  • Parallels’ CRIU team assisted in providing native support for live migration.
  • Microsoft engineers are actively contributing native support for Windows 10 containers.
  • Native Arm, Power, and Sparc support are planned, with direct engagement and support from Arm, Intel, Qualcomm, IBM, and the full hardware maker ecosystem.
  • Native support for cutting-edge hardware features like DPDK, sr-iov, tpm, secure enclave, and so on is planned.
  • Google engineers supplied portable performance characteristics based on their experience deploying containers in production.
  • The Open Container Project, under the auspices of the Linux Foundation, governs an officially described configuration format. In other words, it’s a true benchmark.

Steps to Set up VM

Step 1 – Login into AWS Account and search for EC2 instances. Choose Launch Instances

Step1

Step 2 – Select the OS here that ubuntu has chosen.

Step2

Step 3 – Select the instance type and key pair

Step3

Step 4 – Select the Security Group and the default rules as shown below and click on Launch instances

Step4

Step 5 – After the successful creation of the Instance you will get the landing page and copy the public Ip from there

Step5

Step 6 – Connect to the instance and follow the procedure mentioned below

Step6

Step6b

RunC’s goal is to make standard containers available everywhere.

Step 7 – To install runC on the system use the apt install runc command

Step7

Figure 1: Installation of runc

Check whether runC is installed or not on the system use the runc command

Step7b

Figure 2: Checking Runc

Usually, we need an image for running the container with runC. Deboostrap is an image used to install a Debian-based system into a subdirectory of another, already installed system through the command sudo apt install debootstrap –y.

Step7c

Figure 3: Installing deboostrap

Step 8 – After that create a new directory in /mnt/chroot-ubuntu-trusty 

Step8

Step8b

Step 9 – Then use debootstrap, to install a Ubuntu distribution in the directory created earlier with the command specified below.

Step9

Step9b

Navigate to /mnt/ directory created earlier.

Step9c

After getting the image, make a sample spec such that to run the containers using the runc spec command

Step9d

After running this, we will get a config.json file in the current directory along with the chroot-ubuntu-trusty directory, which helps to create the container which can be seen through the ls command.

ls

Step9e

This config.json file has the information about configurations to run the containers like oci version, os architecture, etc.

Step 10 – Change the config.json file by using the following nano/vim editor, which is located in the ‘root’ section ‘path’ that consists of the value of ‘rootfs’ that indicates the current image location, the image location is  ‘chroot-ubuntu-trusty’.

Generating OCI Configuration

Change the ‘rootfs’ with ‘chroot-ubuntu-trusty’

Then run a container with the runc command

runc run myc

The myc is nothing but the name of the container. runC usually finds the config.json file and it usually creates the container with myc name that runs a shell program in it and opens a shell. Exit command is used to exit from the shell.

Step10

Figure 4: Shell in myc container

In the config.json file, there we can change the ‘args’ to ‘date’ it is currently ‘sh’ which is used to get the current date when the container is up and runs.

Hence after all the changes getting saved, later on running the container again, the result usually fetches the current date instead of the shell program.

runc run myc

Step10b

Figure 5: Shell in myc container

Conclusion

Runc is a powerful tool that is typically used by higher-level runtimes. This is because runc is a very low-level runtime on its own. It lacks many securities enhancement features out of the box, such as seccomp, SELinux, and AppArmor. Nonetheless, the tool supports the security enhancements natively, but they are not included in the default configurations.

Get your new hires billable within 1-60 days. Experience our Capability Development Framework today.

  • Cloud Training
  • Customized Training
  • Experiential Learning
Read More

About CloudThat

CloudThat is also the official AWS (Amazon Web Services) Advanced Consulting Partner and Training partner and Microsoft gold partner, helping people develop knowledge of the cloud and help their businesses aim for higher goals using best in industry cloud computing practices and expertise. We are on a mission to build a robust cloud computing ecosystem by disseminating knowledge on technological intricacies within the cloud space. Our blogs, webinars, case studies, and white papers enable all the stakeholders in the cloud computing sphere.

Drop a query if you have any questions regarding Kubernetes, Containerized Service or any other services and I will get back to you quickly.

To get started, go through our Consultancy page and Managed Services Package that is CloudThat’s offerings.

FAQs

1. What is the main use of Runtime specifications?

ANS: – This spec aims usually defines configuration, as well as an execution environment, and l finally defines the lifecycle of a container.

2. What is the main use of the Configuration file?

ANS: – The configuration file named config.json provides the whole configuration of the container for the supported platforms and details that the field usually enables the creation of a container. The execution environment is detailed along with the common actions defined for a container’s lifecycle to ensure that applications running inside a container have a consistent environment between runtimes.

3. What is runc?

ANS: – runC is nothing but a CLI tool used mainly for spawning as well as running containers based on the OCI specification.

WRITTEN BY Bhanu Prakash K

K Bhanu Prakash is working as a Subject Matter Expert in CloudThat. He is proficient in Managing and configuring AWS Infrastructure as well as on Kubernetes and DevOps tools like Terraform, ansible, Jenkins, and Git. He is very keen on learning new technologies and publishing blogs for the tech community.

Share

Comments

    Click to Comment

Get The Most Out Of Us

Our support doesn't end here. We have monthly newsletters, study guides, practice questions, and more to assist you in upgrading your cloud career. Subscribe to get them all!