You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to have different logical remote execution services, to separate local vs. CI.
It seems like this should be achievable through --remote_instance_name=local and --remote_instance_name=ci
However, if I do:
bazel build --remote_instance_name=local //...
and then do bazel build --remote_instance_name=ci //...
The second build (with --remote_instance_name=ci) shows all remote cache hits, which suggests that the remote instances aren't actually separated?
There's this issue talking about something similar from 6 years ago, but I don't see where in the buildfarm docs instance_name is configurable anymore.
The text was updated successfully, but these errors were encountered:
I'm looking for complete isolation to comply with some security requirements. I've been doing this by provisioning two separate clusters separately from each other, one for local and one for CI, but it's been kind of unwieldy.
@werkt in my case, I have two clusters, one is for development and another is for production. The difference is that production cluster needs to be very stable and powerful thus I will allocate more resource for it.
How is this case satisfied if instance_name isn't valid anymore?
I'd like to have different logical remote execution services, to separate local vs. CI.
It seems like this should be achievable through
--remote_instance_name=local
and--remote_instance_name=ci
However, if I do:
bazel build --remote_instance_name=local //...
bazel build --remote_instance_name=ci //...
The second build (with
--remote_instance_name=ci
) shows all remote cache hits, which suggests that the remote instances aren't actually separated?There's this issue talking about something similar from 6 years ago, but I don't see where in the buildfarm docs
instance_name
is configurable anymore.The text was updated successfully, but these errors were encountered: