Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion runtime/integ_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const runtimeConfigPath = "/etc/containerd/firecracker-runtime.json"
var defaultRuntimeConfig = Config{
FirecrackerBinaryPath: "/usr/local/bin/firecracker",
KernelImagePath: "/var/lib/firecracker-containerd/runtime/default-vmlinux.bin",
KernelArgs: "ro console=ttyS0 noapic reboot=k panic=1 pci=off nomodules systemd.journald.forward_to_console systemd.unit=firecracker.target init=/sbin/overlay-init",
KernelArgs: "ro console=ttyS0 noapic reboot=k panic=1 pci=off nomodules systemd.journald.forward_to_console systemd.log_color=false systemd.unit=firecracker.target init=/sbin/overlay-init",
RootDrive: "/var/lib/firecracker-containerd/runtime/default-rootfs.img",
CPUCount: 1,
CPUTemplate: "T2",
Expand Down
2 changes: 1 addition & 1 deletion runtime/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ func (s *service) StartShim(shimCtx context.Context, containerID, containerdBina

log.Info("will start a single-task VM since no VMID has been provided")
} else {
log.Info("will start a persistent VM")
log.WithField("vmID", s.vmID).Info("will start a persistent VM")
}

client, err := ttrpcutil.NewClient(containerdTTRPCAddress)
Expand Down
2 changes: 1 addition & 1 deletion tools/docker/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
set -ex
set -e

chmod a+rwx ${FICD_LOG_DIR}

Expand Down
2 changes: 0 additions & 2 deletions tools/image-builder/files_debootstrap/sbin/overlay-init
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
# express or implied. See the License for the specific language governing
# permissions and limitations under the License.

set -x

# Parameters:
# 1. rw_root -- path where the read/write root is mounted
# 2. work_dir -- path to the overlay workdir (must be on same filesystem as rw_root)
Expand Down