runtime
runtime copied to clipboard
OCI (Open Containers Initiative) compatible runtime using Virtual Machines
# Description of problem https://github.com/clearcontainers/proxy/blob/master/proxy.go#L451 # Expected result Workload will get the signal if `docker kill 28` is used. Example: ``` docker run --runtime cc-runtime --name P1GjgyJuoQSVthDf1APV4lnjTauxd9 -dt busybox sh...
# Description of problem ``` default_vcpus = -1 ``` On a machine with large number of CPUs the maximum number of CPU's the maximum CPU's visible to the VM is...
Since ciao-down now support CC 3.0, we should produce an installation doc for parity with: - https://github.com/01org/cc-oci-runtime/blob/master/documentation/Quickstart-Clear-Containers-in-a-Ubuntu-VM.md
As pointed out by @mcastelino (https://github.com/clearcontainers/tests/pull/639/files#r146899594), we could consider having `make install` configure the runtime the container manager will use. Questions: - Should it create `/etc/docker/daemon.json` only if not present?...
# Description of problem Today we recommend the use of a systemd unit file to add cc-runtime to docker. However this can cause issues if the user does not ensure...
# Description of problem cc-runtime list command no longer works when used alongside kubernetes ``` sudo -E kubeadm init --pod-network-cidr 10.244.0.0/16 export KUBECONFIG=/etc/kubernetes/admin.conf sudo -E kubectl get nodes sudo -E...
# Description of problem As described here: https://github.com/clearcontainers/runtime/blob/64a445eceebc839c142bc4aba6ff8e16702625bc/docs/limitations.md#docker-run---privileged We do not support `--privileged` mode in the runtime, but currently passing that argument will not fail, it will run the container...
I just compiled cc-runtime manually ``` $./cc-runtime cc-env cannot determine proxy config ``` And I replaced current /usr/bin/cc-runtime to this new generated cc-runtime, it reported cannot start qemu, and `/var/lib/clear-containers/runtime/runtime.log`...
We need a document outlining how we can improve our HA (High Availability) proposition. There is work currently in progress on this (for example https://github.com/clearcontainers/shim/pull/54, https://github.com/clearcontainers/proxy/pull/107), but there are further...
Block devices can be passed to the container in the following ways: 1) docker run --device=/dev/sda:/dev/vda 2) docker run --mount type=bind,source=/dev/sda,target=/dev/xyz 3) docker run -v /dev/sda:/dev/sdc … In the first...