[SEBA-446] Creating chart to run tests against XOS

Change-Id: If3c56c8a68dab90407ea17aef544ed6c8932cc56
diff --git a/xos-tools/xos-tester/Chart.yaml b/xos-tools/xos-tester/Chart.yaml
new file mode 100644
index 0000000..fda91d7
--- /dev/null
+++ b/xos-tools/xos-tester/Chart.yaml
@@ -0,0 +1,23 @@
+---
+# Copyright 2018-present Open Networking Foundation
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+name: xos-tester
+description: A Helm chart to run tests against an XOS deployment
+icon: https://guide.opencord.org/logos/xos.svg
+
+version: 1.0.0
+
+# version of xosproject/xos-api-tester container
+appVersion: latest
diff --git a/xos-tools/xos-tester/templates/NOTES.txt b/xos-tools/xos-tester/templates/NOTES.txt
new file mode 100644
index 0000000..1d8c850
--- /dev/null
+++ b/xos-tools/xos-tester/templates/NOTES.txt
@@ -0,0 +1,7 @@
+Thank you for installing {{ .Chart.Name }}.
+
+Your release is named {{ .Release.Name }}.
+
+This helm chart will perform test against a running installation of XOS.
+
+To view the result of the tests check the logs of the container
diff --git a/xos-tools/xos-tester/templates/_helpers.tpl b/xos-tools/xos-tester/templates/_helpers.tpl
new file mode 100644
index 0000000..29a7e0b
--- /dev/null
+++ b/xos-tools/xos-tester/templates/_helpers.tpl
@@ -0,0 +1,18 @@
+# Copyright 2018-present Open Networking Foundation
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+{{- define "xos-tester.config" }}
+#!/usr/bin/env bash
+{{ .Values.testCommand }}
+{{- end }}
diff --git a/xos-tools/xos-tester/templates/configmap.yaml b/xos-tools/xos-tester/templates/configmap.yaml
new file mode 100644
index 0000000..5666a0b
--- /dev/null
+++ b/xos-tools/xos-tester/templates/configmap.yaml
@@ -0,0 +1,26 @@
+---
+# Copyright 2017-present Open Networking Foundation
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+apiVersion: v1
+kind: ConfigMap
+metadata:
+  name: xos-tester-command
+  labels:
+    app: xos-tester
+    chart: xos-tester
+    release: {{ .Release.Name }}
+data:
+  command: |
+{{ include "xos-tester.config" . | indent 4 }}
diff --git a/xos-tools/xos-tester/templates/job.yaml b/xos-tools/xos-tester/templates/job.yaml
new file mode 100644
index 0000000..eaa6d86
--- /dev/null
+++ b/xos-tools/xos-tester/templates/job.yaml
@@ -0,0 +1,51 @@
+---
+# Copyright 2018-present Open Networking Foundation
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+apiVersion: batch/v1
+kind: Job
+metadata:
+  name: xos-tester
+  labels:
+    app: xos-tester
+    chart: xos-tester
+    release: {{ .Release.Name }}
+    heritage: {{ .Release.Service }}
+spec:
+  template:
+    metadata:
+      labels:
+        app: xos-tester
+        release: {{ .Release.Name }}
+    spec:
+      restartPolicy: Never
+      containers:
+        - name: xos-tester
+          image: {{ .Values.global.registry }}{{ .Values.image.repository }}:{{ tpl .Values.image.tag . }}
+          imagePullPolicy: {{ .Values.image.pullPolicy }}
+          command: [
+            "bash",
+            "run_tests.sh"
+          ]
+          volumeMounts:
+            - name: xos-tester-command
+              mountPath: /src/cord-api/Tests/run_tests.sh
+              subPath: command/run_tests.sh
+      volumes:
+        - name: xos-tester-command
+          configMap:
+            name: xos-tester-command
+            items:
+              - key: command
+                path: command/run_tests.sh
diff --git a/xos-tools/xos-tester/values.yaml b/xos-tools/xos-tester/values.yaml
new file mode 100644
index 0000000..467ab63
--- /dev/null
+++ b/xos-tools/xos-tester/values.yaml
@@ -0,0 +1,35 @@
+---
+# Copyright 2018-present Open Networking Foundation
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# Default values for xossh
+# This is a YAML-formatted file.
+# Declare variables to be passed into your templates.
+
+replicaCount: 1
+
+nameOverride: ""
+fullnameOverride: ""
+
+imagePullPolicy: Always
+
+testCommand: "robot --variable timeout:300s --variable num_olts:1 --variable num_onus:1 --variable num_pon_ports:1 --variable cord_kafka:cord-kafka XosScaleValidations/xos-scale-att-workflow.robot"
+
+image:
+  repository: 'xosproject/xos-api-tester'
+  tag: '{{ .Chart.AppVersion }}'
+  pullPolicy: 'Always'
+
+global:
+  registry: ''