1.11.9.4 tags Step Modifier

The tags by which to match workers. The step will be placed within the a pool of workers that match all of the given set of tags.

For example, if [a, b] is specified, only workers advertising the a and b tags (in addition to any others) will be used for running the step.

Default [].

You may have a private cluster only reachable by special workers running on-premises. To run steps against those workers, just provide a matching tag:

plan:
- get: my-repo
- put: my-site
  tags: [private]
  params: {path: my-repo}
- task: acceptance-tests
  tags: [private]
  file: my-repo/ci/acceptance.yml