[CORD-3198]

Use released versions in charts

Change-Id: I6600afc520e2dcf7d52369500da1925e3686861d
diff --git a/xos-gui/Chart.yaml b/xos-gui/Chart.yaml
index c60ee86..b919e6b 100644
--- a/xos-gui/Chart.yaml
+++ b/xos-gui/Chart.yaml
@@ -13,9 +13,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-apiVersion: v1
-appVersion: "1.0"
-description: Web GUI for XOS
 name: xos-gui
-version: 0.1.0
+description: Web GUI for XOS
+version: 1.0.0
 
diff --git a/xos-gui/templates/gui-deployment.yaml b/xos-gui/templates/gui-deployment.yaml
index f14cf7f..153a6bf 100644
--- a/xos-gui/templates/gui-deployment.yaml
+++ b/xos-gui/templates/gui-deployment.yaml
@@ -28,7 +28,7 @@
     spec:
       containers:
         - name: xos-gui
-          image: {{ .Values.xos_guiImage | quote }}
+          image: {{ tpl .Values.xos_guiImage . | quote }}
           imagePullPolicy: {{ .Values.imagePullPolicy }}
           ports:
             - containerPort: 4000
diff --git a/xos-gui/values.yaml b/xos-gui/values.yaml
index e2101b4..ffbf443 100644
--- a/xos-gui/values.yaml
+++ b/xos-gui/values.yaml
@@ -16,8 +16,8 @@
 imagePullPolicy: 'Always'
 
 # Docker Images
-xos_guiImage: 'xosproject/xos-gui:master'
-xos_wsImage: 'xosproject/xos-ws:master'
+xos_guiImage: 'xosproject/xos-gui:{{ .Chart.Version }}'
+xos_wsImage: 'xosproject/xos-ws:1.0.0'
 
 # NodePorts
 xos_guiNodePort: 30001