-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Docker task changes to push additional data as per image provenance A… #11409
Conversation
const jobName = addPipelineData ? tl.getVariable("System.PhaseDisplayName") : ""; | ||
const creator = addPipelineData ? dockerCommandUtils.getCreatorEmail() : ""; | ||
const logsUri = addPipelineData ? dockerCommandUtils.getPipelineLogsUrl() : ""; | ||
const artifactStorageSourceUri = addPipelineData ? dockerCommandUtils.getPipelineUrl() : ""; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is it builddefinition ulr or build url?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
artifactStorageSourceUri is a part of source provenance, hence it corresponds to the definition url, which is the source of this build/run
2b9db22
to
7719cfd
Compare
} | ||
|
||
export async function getImageRootfsLayers(connection: ContainerConnection, imageDigest: string): Promise<string[]> { | ||
var command = connection.createCommand(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
check imageDigest empty and return;
…PI spec