Hello every one, I'm building a CI system on my ubuntu 22 system. Now I've installed the zuul using 'pip install zuul' and configured it. But after running command 'zuul-scheduler', I saw a lot of errors like following in the log. It seems that there is something error in my config file that prevents access to the repo.
2024-09-20 13:05:06,010 ERROR zuul.TenantParser: Error processing cat job Traceback (most recent call last): File "/home/stack/.local/lib/python3.10/site-packages/zuul/configloader.py", line 2157, in _cacheTenantYAML self._processCatJob(abide, tenant, loading_errors, job, File "/home/stack/.local/lib/python3.10/site-packages/zuul/configloader.py", line 2249, in _processCatJob raise TimeoutError(f"Cat job {job} timed out; consider setting " TimeoutError: Cat job <zuul.zk.event_queues.JobResultFuture object at 0x7fb770341510> timed out; consider setting merger.git_timeout in zuul.conf
Following is my zuul.conf.
[zookeeper] hosts=ZOOKEEPER_HOST tls_cert=/cert/client-cert.pem tls_key=/cert/client-key.pem tls_ca=/cert/ca-cert.pem
[database] # Use variable interpolation to supply the password from the # docker-compose file. # https://zuul-ci.org/docs/zuul/latest/configuration.html dburi=mysql+pymysql://DB_USER:DB_PASS@DB_HOST/ZUUL_DB
[keystore] password=secret
[web] listen_address=0.0.0.0 port=9000 root=http://localhost:9000 log_config=/etc/zuul/logging.conf
[webclient] url=http://localhost:9000 verify_ssl=false
[scheduler] tenant_config=/etc/zuul/main.yaml log_config=/etc/zuul/logging.conf
[merger] git_user_email=git_user@example.com git_user_name=git_user log_config=/etc/zuul/logging.conf
[executor] private_key_file=/home/stack/.ssh/id_rsa default_username=executor_user trusted_rw_paths=/srv/static/logs
[connection gerrit] driver=gerrit server=review.opendev.org user=git_user sshkey=/ssh/id_rsa
And the following is the tenant_config file.
- tenant: name: myCI source: gerrit: untrusted-projects: - openstack/cinder
Could you please tell me what I need to modify or add in the config file? Thanks and Regards, Inori.