mirror of
https://github.com/confidential-containers/confidential-containers.git
synced 2025-10-21 23:48:29 +00:00
There is now a public container image for the SSH demo with publicised keys. Add the respective references. Signed-off-by: Jakob Naucke <jakob.naucke@ibm.com>
29 lines
456 B
YAML
29 lines
456 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
|
|
spec:
|
|
runtimeClassName: kata
|
|
containers:
|
|
- name: ccv0-ssh
|
|
image: docker.io/katadocker/ccv0-ssh
|
|
imagePullPolicy: Always
|