CORD-3112 Fix key problems in synchronizers

Change-Id: Ie117040e9c84009167009d391de7cacbd5ed490b
diff --git a/xos-services/vhss/templates/deployment.yaml b/xos-services/vhss/templates/deployment.yaml
index fe3f768..abeb18a 100644
--- a/xos-services/vhss/templates/deployment.yaml
+++ b/xos-services/vhss/templates/deployment.yaml
@@ -52,6 +52,9 @@
             - name: vhss-keys
               mountPath: /opt/xos/services/vhss/keys
               readOnly: true
+            - name: node-key
+              mountPath: /opt/cord_profile
+              readOnly: true
       volumes:
         - name: vhss-config
           configMap:
@@ -68,6 +71,11 @@
         - name: vhss-keys
           secret:
             secretName: vhss-keys
+        - name: node-key
+          secret:
+            secretName: node-key
+            defaultMode: 256
+            optional: true
     {{- with .Values.nodeSelector }}
       nodeSelector:
 {{ toYaml . | indent 8 }}