mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-24 16:54:26 +01:00
Add Cloud Hypervisor to kata-deploy. Fixes: #808. Signed-off-by: Salvador Fuentes <salvador.fuentes@intel.com>
21 lines
351 B
YAML
21 lines
351 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: nginx-deployment-clh
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: nginx
|
|
replicas: 2
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: nginx
|
|
spec:
|
|
runtimeClassName: kata-clh
|
|
containers:
|
|
- name: nginx
|
|
image: nginx:1.14
|
|
ports:
|
|
- containerPort: 80
|