This repository has been archived on 2023-04-02. You can view files and clone it, but cannot push or open issues or pull requests.
gitops-tbrnt/ioteer/deployment-dragino.yaml

32 lines
591 B
YAML
Raw Permalink Normal View History

2020-04-30 18:33:03 +00:00
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: ioteer-dragino
name: ioteer-dragino
namespace: ioteer
spec:
replicas: 1
selector:
matchLabels:
app: ioteer-dragino
strategy: {}
template:
metadata:
labels:
app: ioteer-dragino
spec:
containers:
- image: tobru/ioteer:latest
name: ioteer
2020-05-02 12:46:09 +00:00
command:
- python
- lgt92.py
2020-04-30 18:33:03 +00:00
envFrom:
2020-05-02 12:46:09 +00:00
- secretRef:
name: ioteer-dragino
2020-04-30 18:33:03 +00:00
ports:
2020-05-02 12:46:09 +00:00
- containerPort: 8080
protocol: TCP
2020-04-30 18:52:14 +00:00
imagePullPolicy: Always