Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ArtifactStreamingProfile and Enabled property #26144

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3815,6 +3815,10 @@
"gpuProfile": {
"$ref": "#/definitions/AgentPoolGPUProfile",
"description": "The GPU settings of an agent pool."
},
"artifactStreamingProfile": {
"$ref": "#/definitions/AgentPoolArtifactStreamingProfile",
"description": "Configuration for using artifact streaming on AKS."
}
},
"description": "Properties for the container service agent pool profile."
Expand Down Expand Up @@ -6873,6 +6877,15 @@
}
}
},
"AgentPoolArtifactStreamingProfile": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "Artifact streaming speeds up the cold-start of containers on a node through on-demand image loading. To use this feature, container images must also enable artifact streaming on ACR. If not specified, the default is false."
}
}
},
"AgentPoolSSHAccess": {
"type": "string",
"enum": [
Expand Down