Skip to content

Commit e96debc

Browse files
authored
add plugin label to builder (apple#1443)
## Type of Change - [ ] Bug fix - [x] New feature - [ ] Breaking change - [ ] Documentation update ## Motivation and Context add plugin label to builder ## Testing - [ ] Tested locally - [ ] Added/updated tests - [ ] Added/updated docs
1 parent 44754da commit e96debc

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

Sources/ContainerCommands/Builder/BuilderStart.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,10 @@ extension Application {
246246

247247
var config = ContainerConfiguration(id: Builder.builderContainerId, image: imageDesc, process: processConfig)
248248
config.resources = resources
249-
config.labels = [ResourceLabelKeys.role: ResourceRoleValues.builder]
249+
config.labels = [
250+
ResourceLabelKeys.plugin: "builder",
251+
ResourceLabelKeys.role: ResourceRoleValues.builder,
252+
]
250253
config.capAdd = ["ALL"]
251254
config.mounts = [
252255
.init(

0 commit comments

Comments
 (0)