[CORD-3198]

Use released versions in charts

Change-Id: I6600afc520e2dcf7d52369500da1925e3686861d
diff --git a/xos-services/volt/Chart.yaml b/xos-services/volt/Chart.yaml
index 6257488..b8a6777 100644
--- a/xos-services/volt/Chart.yaml
+++ b/xos-services/volt/Chart.yaml
@@ -1,5 +1,4 @@
 ---
-
 # Copyright 2018-present Open Networking Foundation
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
@@ -14,8 +13,6 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-apiVersion: v1
-appVersion: "1.0"
-description: A Helm chart for XOS's "olt-service" service
 name: volt
-version: 0.1.0
+description: A Helm chart for XOS's "olt-service" service
+version: 2.0.0
diff --git a/xos-services/volt/templates/deployment.yaml b/xos-services/volt/templates/deployment.yaml
index cb04c03..eb20190 100644
--- a/xos-services/volt/templates/deployment.yaml
+++ b/xos-services/volt/templates/deployment.yaml
@@ -39,7 +39,7 @@
     spec:
       containers:
         - name: {{ .Chart.Name }}
-          image: {{ .Values.volt_synchronizerImage | quote }}
+          image: {{ tpl .Values.volt_synchronizerImage . | quote }}
           imagePullPolicy: {{ .Values.imagePullPolicy }}
           resources:
 {{ toYaml .Values.resources | indent 12 }}
diff --git a/xos-services/volt/values.yaml b/xos-services/volt/values.yaml
index 9762096..26b5f7e 100644
--- a/xos-services/volt/values.yaml
+++ b/xos-services/volt/values.yaml
@@ -24,7 +24,7 @@
 
 imagePullPolicy: 'Always'
 
-volt_synchronizerImage: "xosproject/volt-synchronizer:master"
+volt_synchronizerImage: "xosproject/volt-synchronizer:{{ .Chart.Version }}"
 
 xosAdminUser: "admin@opencord.org"
 xosAdminPassword: "letmein"