[SEBA-234] Remove Redis

Change-Id: Icf4d860ed0105b397c67023d8208a13502217e64
diff --git a/examples/api-test-images.yaml b/examples/api-test-images.yaml
index ef43080..ac26cd9 100644
--- a/examples/api-test-images.yaml
+++ b/examples/api-test-images.yaml
@@ -33,7 +33,5 @@
 - xosproject/fabric-synchronizer
 - xosproject/fabric-crossconnect-synchronizer
 - xosproject/xos-api-tester
-- node
 - postgres
-- redis
 
diff --git a/examples/filter-images.yaml b/examples/filter-images.yaml
index 524b579..9f28d3e 100644
--- a/examples/filter-images.yaml
+++ b/examples/filter-images.yaml
@@ -17,9 +17,7 @@
 
 docker_image_whitelist:
 - nginx
-- node
 - postgres
-- redis
 
 # xos-core images
 - xosproject/chameleon
diff --git a/xos-core/templates/redis-deployment.yaml b/xos-core/templates/redis-deployment.yaml
deleted file mode 100644
index 0141025..0000000
--- a/xos-core/templates/redis-deployment.yaml
+++ /dev/null
@@ -1,36 +0,0 @@
----
-# 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: extensions/v1beta1
-kind: Deployment
-metadata:
-  name: xos-redis
-  labels:
-    {{- include "xos-core.release_labels" . | indent 4 }}
-spec:
-  replicas: 1
-  template:
-    metadata:
-      labels:
-        app: xos-redis
-    spec:
-      containers:
-        - name: xos-redis
-          image: {{ .Values.redisImage | quote }}
-          imagePullPolicy: {{ .Values.imagePullPolicy }}
-          ports:
-            - containerPort: 6379
-              port: 6379
-              protocol: TCP
diff --git a/xos-core/templates/redis-service.yaml b/xos-core/templates/redis-service.yaml
deleted file mode 100644
index 23e811c..0000000
--- a/xos-core/templates/redis-service.yaml
+++ /dev/null
@@ -1,29 +0,0 @@
----
-# 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: Service
-metadata:
-  name: "redis"
-  labels:
-    {{- include "xos-core.release_labels" . | indent 4 }}
-spec:
-  type: ClusterIP
-  selector:
-    app: "xos-redis"
-  ports:
-    - port: 6379
-      targetPort: 6379
-      protocol: TCP
diff --git a/xos-core/values.yaml b/xos-core/values.yaml
index 8ce3e28..7f315bc 100644
--- a/xos-core/values.yaml
+++ b/xos-core/values.yaml
@@ -25,9 +25,6 @@
 xos_toscaImage: 'xosproject/xos-tosca:master'
 xos_api_testerImage: 'xosproject/xos-api-tester:master'
 
-nodeImage: 'node:7.9.0'
-redisImage: 'redis:3.2'
-
 # NodePorts
 xos_chameleonNodePort: 30006
 xos_toscaNodePort: 30007
diff --git a/xos-gui/templates/_ws.tpl b/xos-gui/templates/_ws.tpl
index 09b77e4..00fd8a9 100644
--- a/xos-gui/templates/_ws.tpl
+++ b/xos-gui/templates/_ws.tpl
@@ -20,9 +20,6 @@
   xos:
     host: xost
     port: 9000
-  redis:
-    host: redis
-    port: 6379
   gateway:
     port: 3000
 {{- end }}