face-detection: update chart to use new actions api
diff --git a/apps/face-detection/chart/Actions.yaml b/apps/face-detection/chart/Actions.yaml
new file mode 100644
index 0000000..ca1e0fc
--- /dev/null
+++ b/apps/face-detection/chart/Actions.yaml
@@ -0,0 +1,15 @@
+triggers:
+- name: DetectFaces
+  template: |
+    kind: Pod
+    apiVersion: v1
+    metadata:
+      name: detect-faces-{{ .Id }}
+    spec:
+      containers:
+      - name: detect-faces
+        image: giolekva/face-detector:latest
+        imagePullPolicy: Always
+        command: ["python3", "main.py"]
+        args: [{{ .PCloudApiAddr }}, {{ .ObjectStoreAddr }}, {{ .Id }}]
+      restartPolicy: Never