mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-11-02 18:41:03 +00:00
Introduce new test case which verifies that openvpn clients and servers can run as Kata pods and can successfully establish a connection. Volatile certificates and keys are generated by an initialization container and injected into the client and server containers. This scenario requires TUN/TAP support for the UVM kernel. Signed-off-by: Manuel Huber <mahuber@microsoft.com> Co-authored-by: Manuel Huber <manuelh@nvidia.com>
19 lines
419 B
YAML
19 lines
419 B
YAML
#
|
|
# Copyright (c) 2025 Microsoft Corporation
|
|
# Copyright (c) 2025 NVIDIA Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: openvpn-server-secrets
|
|
labels:
|
|
app: openvpn-server
|
|
annotations:
|
|
description: "Contains OpenVPN server certificates and keys"
|
|
type: Opaque
|
|
data:
|
|
ca.crt: $BASE64_CA_CRT
|
|
server.crt: $BASE64_SERVER_CRT
|
|
server.key: $BASE64_SERVER_KEY |