Skip to content

Commit

Permalink
Add changes
Browse files Browse the repository at this point in the history
Signed-off-by: Divya Madala <divyaasm@amazon.com>
  • Loading branch information
Divyaasm committed Jul 10, 2023
1 parent 3051709 commit ebc7ae7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions vars/patchDockerImage.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
void call(Map args = [:]) {
String docker_image = "opensearchproject/${args.product}:${args.version}"
String staging_image = "opensearchstaging/${args.product}:${args.version}."
String build_time = ""
String build_number = ""
String prod_digest = ""
String staging_digest = ""

Expand All @@ -23,12 +21,14 @@ void call(Map args = [:]) {
docker pull ${docker_image}
"""
sh"""
export build_time=`docker inspect --format '{{ index .Config.Labels "org.label-schema.build-date"}}' ${docker_image}`
export build_number=`docker inspect --format '{{ index .Config.Labels "org.label-schema.description"}}' ${docker_image}`
docker inspect --format '{{ index .Config.Labels "org.label-schema.build-date"}}' ${docker_image} > build_time
docker inspect --format '{{ index .Config.Labels "org.label-schema.description"}}' ${docker_image}` > build_number
"""
sh """docker inspect --format '{{ index .Config.Labels "org.label-schema.description"}}' ${docker_image} > commandResult"""
result = readFile('commandResult').trim()
println("${result}")
build_time = readFile('build_time').trim()
build_numbers = readFile('build_number').trim()
println("${result} ${build_time} ${build_numbers}")

/*
staging_image = ${staging_image} + "${build_number}"
Expand Down

0 comments on commit ebc7ae7

Please sign in to comment.