Skip to content

Commit

Permalink
fix: update K8sKanikoFramework.java to use image registry
Browse files Browse the repository at this point in the history
  • Loading branch information
matteo-s authored Apr 29, 2024
1 parent e2fcf97 commit b0bf5cc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ public V1Job build(K8sKanikoRunnable runnable) throws K8sFrameworkException {
List.of(
"--dockerfile=/init-config-map/Dockerfile",
"--context=/shared",
"--destination=" + imagePrefix + "-" + runnable.getImage() + ":" + runnable.getId()
"--destination=" + imageRegistry + "/" + imagePrefix + "-" + runnable.getImage() + ":" + runnable.getId()
)
);
// Add Kaniko args
Expand Down

0 comments on commit b0bf5cc

Please sign in to comment.