mirror of
https://github.com/apple/container.git
synced 2026-09-15 04:05:37 +00:00
add plugin label to builder (#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
This commit is contained in:
@@ -246,7 +246,10 @@ extension Application {
|
||||
|
||||
var config = ContainerConfiguration(id: Builder.builderContainerId, image: imageDesc, process: processConfig)
|
||||
config.resources = resources
|
||||
config.labels = [ResourceLabelKeys.role: ResourceRoleValues.builder]
|
||||
config.labels = [
|
||||
ResourceLabelKeys.plugin: "builder",
|
||||
ResourceLabelKeys.role: ResourceRoleValues.builder,
|
||||
]
|
||||
config.capAdd = ["ALL"]
|
||||
config.mounts = [
|
||||
.init(
|
||||
|
||||
Reference in New Issue
Block a user