blob: cc3d0891fe548baa508ab1930e1c8015cd5bea34 [file] [log] [blame]
giolekva96145912020-05-16 13:52:46 +04001actions:
2- name: detect-faces
giolekvad47d7f92020-05-16 12:10:38 +04003 template: |
4 kind: Pod
5 apiVersion: v1
6 metadata:
7 name: detect-faces-{{ .Id }}
8 spec:
9 containers:
10 - name: detect-faces
11 image: giolekva/face-detector:latest
12 imagePullPolicy: Always
13 command: ["python3", "main.py"]
14 args: [{{ .PCloudApiAddr }}, {{ .ObjectStoreAddr }}, {{ .Id }}]
15 restartPolicy: Never