21 lines
338 B
YAML
21 lines
338 B
YAML
workload:
|
|
kind: Deployment
|
|
replicas: 1
|
|
containers:
|
|
- name: controller
|
|
image: {{ .Image }}
|
|
imagePullPolicy: Always
|
|
commands:
|
|
- sh
|
|
args:
|
|
- -c
|
|
- 'sleep 1000'
|
|
- name: ubuntu
|
|
image: ubuntu:latest
|
|
imagePullPolicy: Always
|
|
commands:
|
|
- sh
|
|
args:
|
|
- -c
|
|
- 'sleep 1000'
|