diff options
author | 2022-08-23 00:34:57 +0200 | |
---|---|---|
committer | 2022-08-23 00:34:57 +0200 | |
commit | b635f1ab52fa63964ff9fc01f67638810c2fd2bf (patch) | |
tree | 2b7ffba94636603d142a7bc2d3bd8577f8e6b6d9 /master.cfg | |
parent | Remove gitpuller from repositorys_type in db (diff) | |
download | tinderbox-cluster-b635f1ab52fa63964ff9fc01f67638810c2fd2bf.tar.gz tinderbox-cluster-b635f1ab52fa63964ff9fc01f67638810c2fd2bf.tar.bz2 tinderbox-cluster-b635f1ab52fa63964ff9fc01f67638810c2fd2bf.zip |
Add buildbot gitlab patch
Signed-off-by: Magnus Granberg <zorry@gentoo.org>
Diffstat (limited to 'master.cfg')
-rw-r--r-- | master.cfg | 21 |
1 files changed, 13 insertions, 8 deletions
@@ -12,11 +12,13 @@ worker_data = [ {'uuid' : 'updatedb_2', 'password' : '', 'type' : 'local', 'enable' : True, }, {'uuid' : 'updatedb_3', 'password' : '', 'type' : 'local', 'enable' : True, }, {'uuid' : 'updatedb_4', 'password' : '', 'type' : 'local', 'enable' : True, }, - {'uuid' : 'c89c2c1a-46e0-4ded-81dd-c51afeb7fcfa', 'password' : 'test', 'type' : 'log', 'enable' : True, }, - {'uuid' : 'a89c2c1a-46e0-4ded-81dd-c51afeb7fcfa', 'password' : 'test', 'type' : 'docker', 'enable' : True, }, - {'uuid' : 'a89c2c1a-46e0-4ded-81dd-c51afeb7fcfb', 'password' : 'test', 'type' : 'docker', 'enable' : True, }, - {'uuid' : 'a89c2c1a-46e0-4ded-81dd-c51afeb7fcfd', 'password' : 'test', 'type' : 'docker', 'enable' : True, }, - {'uuid' : 'c89c2c1a-46e0-4ded-81dd-c51afeb7fcfa', 'password' : 'test', 'type' : 'node', 'enable' : True, }, + {'uuid' : 'b89c2c1a-46e0-4ded-81dd-c51afeb7fcfa', 'password' : 'X', 'type' : 'log', 'enable' : True, }, + {'uuid' : 'b89c2c1a-46e0-4ded-81dd-c51afeb7fcfb', 'password' : 'X', 'type' : 'log', 'enable' : True, }, + {'uuid' : 'b89c2c1a-46e0-4ded-81dd-c51afeb7fcfc', 'password' : 'X', 'type' : 'log', 'enable' : True, }, + {'uuid' : 'a89c2c1a-46e0-4ded-81dd-c51afeb7fcfa', 'password' : 'X', 'type' : 'docker', 'enable' : True, }, + {'uuid' : 'a89c2c1a-46e0-4ded-81dd-c51afeb7fcfb', 'password' : 'X', 'type' : 'docker', 'enable' : True, }, + {'uuid' : 'a89c2c1a-46e0-4ded-81dd-c51afeb7fcfd', 'password' : 'X', 'type' : 'docker', 'enable' : True, }, + {'uuid' : 'c89c2c1a-46e0-4ded-81dd-c51afeb7fcfa', 'password' : 'X', 'type' : 'node', 'enable' : True, }, ] # This is the dictionary that the buildmaster pays attention to. We also use @@ -27,7 +29,8 @@ c['buildbotNetUsageData'] = None ####### SECRETS -c['secretsProviders'] = [secrets.SecretInAFile(dirname="/var/lib/buildmaster/gentoo-ci-cloud/secrets/")] +c['secretsProviders'] = [] +c['secretsProviders'].append(secrets.SecretInAFile(dirname="/var/lib/buildmaster/gentoo-ci-cloud/secrets")) ####### WORKERS @@ -88,7 +91,7 @@ c['titleURL'] = "https://gentoo-ci.gentoo.org" # the 'www' entry below, but with an externally-visible host name which the # buildbot cannot figure out without some help. -c['buildbotURL'] = "http://90.231.13.235:8010/" +c['buildbotURL'] = "http://0.0.0.0:8010/" # minimalistic config to activate new web UI c['www'] = dict( @@ -97,6 +100,8 @@ c['www'] = dict( change_hook_dialects={ 'gitlab' : { 'secret': util.Secret("WWWHookGitlabToken"), + 'token': util.Secret("gitlabToken"), + 'baseUrl': 'https://gitlab.gentoo.org', }, }, ) @@ -116,4 +121,4 @@ c['www']['ui_default_config'] = { # It's easy to start with sqlite, but it's recommended to switch to a dedicated # database, such as PostgreSQL or MySQL, for use in production environments. # http://docs.buildbot.net/current/manual/configuration/global.html#database-specification -c['db_url'] = "postgresql://buildbot:fooo@192.168.1.9/buildbot" +c['db_url'] = "postgresql://buildbot:X@192.0.0.0/buildbot" |