Update `cc-runtime` to release 3.0.20 to pull in SCSI support and vCPU and
logging fixes.
Shortlog:
0ea75e1 versions: Update kernel version to latest.
14439ef release: Clear Containers 3.0.20
e703f15 fedora-installation-guide: update Fedora versions supported
b03c4a5 logging: Add name to all log calls
055c688 logging: Add PID field to logs
f6da537 config: don't exceed the number of physical cores
cc84544 versions: Update agent version to pull in SCSI support
54f87f5 logging: Add CLI command to logs
befbdb1 config: Add comments for the DisableBlockDeviceUse flag
Fixes#42.
Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
template rootfs creation fails:
$make -f template/Makefile ROOTFS_BASE_NAME=opensuse
<....>
sed: can't read Dockerfile.template: No such file or directory
make is unable to find Dockerfile.template, this patch fixes this.
Fixes#67.
Signed-off-by: Nirmoy Das <ndas@suse.de>
The setup script will be in charge of clone the test repository, meanwhile,
the run script will be in charge of execute for example the docker
integration tests.
Fixes#36
Signed-off-by: Gabriela Cervantes <gabriela.cervantes.tellez@intel.com>
There is no way to specify the remaining free space of the root partition.
It can vary depending on the upper bound size of the image aligned to 128MB
and the size of the root filesystem.
The following patch allow the user to specify that at least a certain amount
of space (defined in MB) will be kept in the root partition.
Fixes: #45
Signed-off-by: Erick Cardona <erick.cardona.ruiz@intel.com>
certain machines types need to have options to enable or disable features
For example the machine type virt in certain hosts must have the gic version
(gic-version=3 or gic-version=host) to start without problems
Signed-off-by: Julio Montes <julio.montes@intel.com>
When user manually specifies root disk image
size the value should be greater than 0.
Fixes : #57
Signed-off-by: Harshal Patil <harshal.patil@in.ibm.com>
PR #7 was merged inadvertently, so apply the Documentation Team's
review comments to `README.md`.
Fixes#10.
Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
kata agent is installed in `${ROOTFS}/usr/bin/` rather than `${ROOTFS}/bin/`.
It just happended to work because `bin` is a symlink to `usr/bin`, which
might not be true in some distros. So do not rely on it.
Signed-off-by: Peng Tao <bergwolf@gmail.com>
Update `cc-runtime` submodule for two main reasons:
- config: Allow user-specified kernel params to take priority
feed1be89e
- Update data collection script to work with Kata.
Changes:
a63895e versions: Update kernel version
7bf93e2 release: Clear Containers 3.0.16
1412ff8 cc-env: Remove "CC" from output.
5e7d03c vendor: Update virtcontainers vendoring
f515c21 vendor: Update Gopkg.toml for new prune syntax
ef63d36 vendor: Remove constraints from packages not directly vendored
ab1a9f1 build: Add bug URL to help output
719f523 scripts: Fix collect script bug URL
93c71c9 cc-check: Document "unrestricted_guest" requirement
0f8b25d scripts: Ignore qemu startup message
7310433 scripts: Update collect script for Kata
feed1be config: Allow user-specified kernel params to take priority
e7de45d usage: Show project URL in help output
b45d46c release: Clear Containers 3.0.15
e65682c docs: remove references to Clear Containers proxy service
Fixes#27.
Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
The HTML anchor generated by github for "osbuilder" wasn't working, so
removed the slash from the title.
Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
Remove backticks from repos that are not the name of files/commands.
Also, mark first instance of "Linux" with asterisk.
Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
Changed image-builder/image_builder.sh to
automatically calculate the size of the root disk
Fixes#25.
Signed-off-by: Harshal Patil <harshal.patil@in.ibm.com>
Caller of rootfs.sh can define `KERNEL_MODULES_DIR` as a kernel
module directory and then the directory will be copied to
`/lib/modules/` of the created rootfs. This allows additional
kernel modules to be put into rootfs image and initrd image.
Signed-off-by: Peng Tao <bergwolf@gmail.com>