For clarity, list all members of the Architecture Committee and the
Working Committee as lists, with appropriate links.
Fixes#18.
Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
Add a `README.md` that explains the purpose of this repository along
with pointers to the other repositories.
Fixes#1.
Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
Add a basic `Makefile` to allow a runtime to be built:
- Clear Containers-based Kata runtime:
```
$ make KATA_RUNTIME=cc [install]
```
- `runv`-based Kata runtime:
```
$ make KATA_RUNTIME=runv [install]
```
Fixes#15.
Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
To simplify maintaince, create dockerfiles based on templates.
This way when golang version is updated it will be done in one place
versions.txt.
This also allow to allways intall the same version of golang in any
dockerfile.
Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
This commit introduces some new documentation about how to vendor
when using dep tool. All this documentation is gathered in a new
file called VENDORING.md
Fixes#14
Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
The cc-runtime code base was hard coding a Clear Containers
specific systemd unit target in the default kernel parameters.
This commit includes a fix for that.
Shortlog:
9be4882 build: Set systemd unit name based on project
512cd59 config: Clean up hypervisor debug comments
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Require an additional approval from a `documentation` team member for
PRs containing documentation changes.
Fixes#4.
Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
Require an additional approval from a `documentation` team member for
PRs containing documentation changes.
Fixes#16.
Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
Require an additional approval from a `documentation` team member for
PRs containing documentation changes.
Fixes#41.
Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
This adds Clear Containers as a Kata Containers runtime, under
runtime/cc-runtime
The Docker `create`, `start`, `run`, `exec` and `ps` commands
work when using the cc-runtime code together with the vanilla
Kata shim, proxy and agent components. Shortly we will also
document how to build and install all of those together.
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Use OS_VERSION provided by user configuration and not use host version.
Also add retries before fail on a request.
Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
In case host not has requried programs allow build image
in a container when USE_DOCKER is set.
Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
Based on review feedback, updated the Governance section slightly to use
an Oxford Comma before the last list item.
Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
Rework the docs to make them simpler and more consistent. Also added of
contents and corrected a few mistakes.
Fixes#26.
Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
Close reading shows that the Developer section should belong under the
Governance section as the former discusses governance.
Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
Changed the `rootfs.sh` script to exit with an error if `GOPATH` isn't set
in the environment.
Fixes#20.
Signed-off-by: Harshal Patil <harshal.patil@in.ibm.com>
device_add qmp command for scsi devices accepts additional parameters like
scsi-id and lun. Implement function to add scsi devices. Devices
with drivers "scsi-hd", "scsi-cd" and "scsi-disk" are accepted.
Signed-off-by: Archana Shinde <archana.m.shinde@intel.com>