mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-08-22 17:59:31 +00:00
Relying on dmesg is really not ideal, as we may lose important info, mainly those which happen very early in the boot, depending on the size of kernel ring buffer. So, for this specific test, let's increase the kernel ring buffer, by default, to 4M. Signed-off-by: Fabiano Fidêncio <fabiano@fidencio.org>
36 lines
778 B
YAML
36 lines
778 B
YAML
# Copyright (c) 2023 Advanced Micro Devices, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
kind: Service
|
|
apiVersion: v1
|
|
metadata:
|
|
name: "confidential-unencrypted"
|
|
spec:
|
|
selector:
|
|
app: "confidential-unencrypted"
|
|
ports:
|
|
- port: 22
|
|
---
|
|
kind: Deployment
|
|
apiVersion: apps/v1
|
|
metadata:
|
|
name: "confidential-unencrypted"
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: "confidential-unencrypted"
|
|
template:
|
|
metadata:
|
|
annotations:
|
|
io.katacontainers.config.hypervisor.kernel_params: "log_buf_len=4M"
|
|
labels:
|
|
app: "confidential-unencrypted"
|
|
spec:
|
|
runtimeClassName: kata
|
|
containers:
|
|
- name: "confidential-unencrypted"
|
|
image: ghcr.io/kata-containers/test-images:unencrypted-nightly
|
|
imagePullPolicy: Always
|
|
|