Allow access to private key for other users on CI

Change-Id: I2dbb6b188c6a1b6d98a77224f8752abb4849a531
Reviewed-on: https://review.gerrithub.io/378378
Reviewed-by: Dennis Dmitriev <dis.xcom@gmail.com>
Tested-by: Dennis Dmitriev <dis.xcom@gmail.com>
diff --git a/tcp_tests/helpers/utils.py b/tcp_tests/helpers/utils.py
index 6717c2a..bf4eab4 100644
--- a/tcp_tests/helpers/utils.py
+++ b/tcp_tests/helpers/utils.py
@@ -169,6 +169,7 @@
 def dump_keyfile(file_path, key):
     key = paramiko.RSAKey(file_obj=StringIO.StringIO(key['private']))
     key.write_private_key_file(file_path)
+    os.chmod(file_path, 0644)
 
 
 def clean_dir(dirpath):