Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add dev worker pools #918

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions config/projects/taskcluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,52 @@ taskcluster:
lifecycle:
reregistrationTimeout: 2592000 # 30 days

gw-dev-windows:
cloud: static
description: Typically developer (Windows) machines that can be used for testing features,
where a user has physical access to the machine, and probably set it up as a worker
directly themselves.
emailOnError: true
imageset: generic-worker
lifecycle:
reregistrationTimeout: 2592000 # 30 days
owner: [email protected]
workerConfig:
genericWorker:
config:
ed25519SigningKeyLocation: C:\generic-worker\generic-worker-ed25519-signing-key.key
idleTimeoutSecs: 3600
livelogExecutable: C:\generic-worker\livelog.exe
sentryProject: generic-worker
shutdownMachineOnIdle: false
shutdownMachineOnInternalError: false
taskclusterProxyExecutable: C:\generic-worker\taskcluster-proxy.exe
wstAudience: communitytc
wstServerURL: https://community-websocktunnel.services.mozilla.com

gw-dev-ubuntu:
cloud: static
description: Typically developer (Ubuntu) machines that can be used for testing features,
where a user has physical access to the machine, and probably set it up as a worker
directly themselves.
emailOnError: true
imageset: generic-worker
lifecycle:
reregistrationTimeout: 2592000 # 30 days
owner: [email protected]
workerConfig:
genericWorker:
config:
ed25519SigningKeyLocation: /etc/generic-worker/ed25519_key
idleTimeoutSecs: 3600
livelogExecutable: /usr/local/bin/livelog
sentryProject: generic-worker
shutdownMachineOnIdle: false
shutdownMachineOnInternalError: false
taskclusterProxyExecutable: /usr/local/bin/taskcluster-proxy
wstAudience: communitytc
wstServerURL: https://community-websocktunnel.services.mozilla.com

gw-ci-ubuntu-24-04:
owner: [email protected]
emailOnError: true
Expand Down