27 lines
457 B
Cheetah
27 lines
457 B
Cheetah
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: udi
|
|
namespace: udi
|
|
labels:
|
|
app: udi
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: udi
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: udi
|
|
spec:
|
|
containers:
|
|
- name: udi
|
|
image: %IMAGE%
|
|
env:
|
|
- name: UDI_CONF
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: udi-conf
|
|
key: UDI_CONF
|