Remove ssh key from github connection and add to executor

The executor needs the github connection config so that it knows how to
interact with the remote system from the merger.

However, if we don't provide an ssh_key to github, it will just use
https for cloning. Since that means less keys to manage and we certainly
aren't cloning from anything private on github - just do that.

Change-Id: I3acb6123398b2c6c3fac45f20a4cfde251862b58
This commit is contained in:
Monty Taylor 2017-07-27 15:06:33 -05:00
parent a05340faa5
commit b18a4a1a39
No known key found for this signature in database
GPG Key ID: 7BAE94BC7141A594
2 changed files with 3 additions and 1 deletions

View File

@ -19,7 +19,6 @@ zuul_connections:
- name: 'github'
driver: 'github'
sshkey: '/var/lib/zuul/ssh/id_rsa'
gearman_server_ssl_cert: |
-----BEGIN CERTIFICATE-----

View File

@ -6,3 +6,6 @@ zuul_connections:
canonical_hostname: 'git.openstack.org'
user: 'zuul'
sshkey: '/var/lib/zuul/ssh/id_rsa'
- name: 'github'
driver: 'github'