Skip to content

Commit

Permalink
[bb-executor] Update pool to latest images (#1433)
Browse files Browse the repository at this point in the history
Summary: Updating the bb remote exec pool name to use the latest images.
I'm running an extra pool of executors on px-dev-infra in the meantime
to allow for both pools during the transition. I will then upgrade the
equinix pool and teardown the px-dev-infra one.

Type of change: /kind cleanup

Test Plan: Testing the new pool in this PR.

Signed-off-by: James Bartlett <[email protected]>
  • Loading branch information
JamesMBartlett authored Jun 6, 2023
1 parent 4720abc commit 56d24c9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bazel/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ platform(
],
exec_properties = {
"OSFamily": "Linux",
"Pool": "202305310009",
"Pool": "202305312341",
},
)

Expand Down
7 changes: 6 additions & 1 deletion k8s/devinfra/buildbuddy-executor/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,12 @@ image:
repository: gcr.io/pixie-oss/pixie-dev-public/dev_image
tag: '$IMAGE_TAG'

customExecutorCommand: ['/bb-executor/executor', '--server_type=buildbuddy-executor']
# Some clusters don't have ipv6 enabled, but we need it for some tests.
customExecutorCommand:
- /bin/sh
- -c
- 'sysctl -w net.ipv6.conf.lo.disable_ipv6=0 &&
/bb-executor/executor --server_type=buildbuddy-executor'

poolName: '"$IMAGE_TAG"'

Expand Down

0 comments on commit 56d24c9

Please sign in to comment.