[CORD-2978] Using multistructlog in xossh

Change-Id: I04351b89b75d72e75df7e0c049cf9bb8fe9e2f6b
diff --git a/xos-tools/xossh/values.yaml b/xos-tools/xossh/values.yaml
index 18e7226..9fcdf22 100644
--- a/xos-tools/xossh/values.yaml
+++ b/xos-tools/xossh/values.yaml
@@ -27,7 +27,7 @@
 
 image:
   repository: xosproject/xos-client
-  tag: master
+  tag: candidate
   pullPolicy: IfNotPresent
 
 resources: {}
@@ -38,8 +38,25 @@
 
 affinity: {}
 
-serviceConfig:
+xosshConfig:
+  name: xossh
   accessor:
     username: admin@opencord.org
     password: letmein
     endpoint: xos-core:50051
+  logging:
+    version: 1
+    handlers:
+      console:
+        class: logging.StreamHandler
+      file:
+        class: logging.handlers.RotatingFileHandler
+        filename: /var/log/xos.log
+        maxBytes: 10485760
+        backupCount: 5
+    loggers:
+      'multistructlog':
+        handlers:
+            - console
+            - file
+        level: DEBUG