AppManager: Add Excalidraw

Change-Id: I053676e18773e8dec452c54bda350cdc978ae0ca
diff --git a/charts/excalidraw/templates/service.yaml b/charts/excalidraw/templates/service.yaml
new file mode 100644
index 0000000..51a8a55
--- /dev/null
+++ b/charts/excalidraw/templates/service.yaml
@@ -0,0 +1,17 @@
+{{- if and (eq .Values.service.type "LoadBalancer") (.Values.ingress.enabled) }}
+apiVersion: v1
+kind: Service
+metadata:
+  name: {{ include "excalidraw.fullname" . }}
+  labels:
+    {{- include "excalidraw.labels" . | nindent 4 }}
+spec:
+  type: LoadBalancer
+  ports:
+    - port: {{ .Values.service.port }}
+      targetPort: http
+      protocol: TCP
+      name: http
+  selector:
+    {{- include "excalidraw.selectorLabels" . | nindent 4 }}
+{{- end }}