mirror of
https://github.com/confidential-containers/confidential-containers.git
synced 2025-07-13 07:04:35 +00:00
This is needed in order to ensure the nydus-snapshotter will behave properly when it's set in the runtime handler. Signed-off-by: Fabiano Fidêncio <fabiano.fidencio@intel.com>
31 lines
561 B
YAML
31 lines
561 B
YAML
kind: Service
|
|
apiVersion: v1
|
|
metadata:
|
|
name: ccv0-ssh
|
|
spec:
|
|
selector:
|
|
app: ccv0-ssh
|
|
ports:
|
|
- port: 22
|
|
---
|
|
kind: Deployment
|
|
apiVersion: apps/v1
|
|
metadata:
|
|
name: ccv0-ssh
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: ccv0-ssh
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: ccv0-ssh
|
|
annotations:
|
|
io.containerd.cri.runtime-handler: kata
|
|
spec:
|
|
runtimeClassName: kata
|
|
containers:
|
|
- name: ccv0-ssh
|
|
image: ghcr.io/confidential-containers/test-container:multi-arch-encrypted
|
|
imagePullPolicy: Always
|