You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Within snow's codebase, we reference the latest tag for the kaniko image [0].
e.g:
"containers": [
{
"name": "kaniko",
"image": "gcr.io/kaniko-project/executor:latest", <--- let's not do this
"args": [
"--context=dir:///kaniko/build-context",
"--destination=${imageName}",
"--skip-tls-verify"
],
This poses a problem if Kaniko ever introduces any breaking changes. We should specify a particular version, and upgrade it as necessary / cut new releases of Snow so users can also begin using newer versions of Kaniko.
The text was updated successfully, but these errors were encountered:
Within snow's codebase, we reference the
latest
tag for thekaniko
image [0].e.g:
This poses a problem if Kaniko ever introduces any breaking changes. We should specify a particular version, and upgrade it as necessary / cut new releases of Snow so users can also begin using newer versions of Kaniko.
The text was updated successfully, but these errors were encountered: