[CORD-3198]

Use released versions in charts

Change-Id: I6600afc520e2dcf7d52369500da1925e3686861d
diff --git a/xos-services/fabric/Chart.yaml b/xos-services/fabric/Chart.yaml
index e8a59d4..1d47c5e 100644
--- a/xos-services/fabric/Chart.yaml
+++ b/xos-services/fabric/Chart.yaml
@@ -14,8 +14,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 "fabric" service
 name: fabric
-version: 0.1.0
+description: A Helm chart for XOS's "fabric" service
+version: 2.0.0
diff --git a/xos-services/fabric/templates/deployment.yaml b/xos-services/fabric/templates/deployment.yaml
index be332e0..031abc1 100644
--- a/xos-services/fabric/templates/deployment.yaml
+++ b/xos-services/fabric/templates/deployment.yaml
@@ -39,7 +39,7 @@
     spec:
       containers:
         - name: {{ .Chart.Name }}
-          image: {{ .Values.fabric_synchronizerImage | quote }}
+          image: {{ tpl .Values.fabric_synchronizerImage . | quote }}
           imagePullPolicy: {{ .Values.imagePullPolicy }}
           resources:
 {{ toYaml .Values.resources | indent 12 }}
diff --git a/xos-services/fabric/values.yaml b/xos-services/fabric/values.yaml
index a134d8d..c0d63ac 100644
--- a/xos-services/fabric/values.yaml
+++ b/xos-services/fabric/values.yaml
@@ -1,5 +1,4 @@
 ---
-
 # Copyright 2018-present Open Networking Foundation
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
@@ -25,7 +24,7 @@
 
 imagePullPolicy: 'Always'
 
-fabric_synchronizerImage: "xosproject/fabric-synchronizer:master"
+fabric_synchronizerImage: "xosproject/fabric-synchronizer:{{ .Chart.Version }}"
 
 xosAdminUser: "admin@opencord.org"
 xosAdminPassword: "letmein"
@@ -37,4 +36,3 @@
 tolerations: []
 
 affinity: {}
-