26 lines
415 B
Cheetah
26 lines
415 B
Cheetah
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: snmp-mqtt
|
|
namespace: homea
|
|
labels:
|
|
app: snmp-nmqtt
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: snmp-nmqtt
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: snmp-nmqtt
|
|
spec:
|
|
containers:
|
|
- name: snmp-nmqtt
|
|
image: %IMAGE%
|
|
envFrom:
|
|
- configMapRef:
|
|
name: snmp-mqtt-conf
|
|
|
|
|