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
// Let's make sure that every image tag is set with `--set`.
129
128
// Otherwise, templates have no way to use the images that were built.
130
-
for_, build:=rangebuilds {
131
-
if!valuesSet[build.Tag] {
132
-
warnings.Printf("image [%s] is not used.", build.Tag)
133
-
warnings.Printf("image [%s] is used instead.", build.ImageName)
129
+
for_, b:=rangebuilds {
130
+
if!valuesSet[b.Tag] {
131
+
warnings.Printf("image [%s] is not used.", b.Tag)
132
+
warnings.Printf("image [%s] is used instead.", b.ImageName)
134
133
warnings.Printf("See helm sample for how to replace image names with their actual tags: https://github.com/GoogleContainerTools/skaffold/blob/master/examples/helm-deployment/skaffold.yaml")
"See helm sample for how to replace image names with their actual tags: https://github.com/GoogleContainerTools/skaffold/blob/master/examples/helm-deployment/skaffold.yaml",
501
+
"image [docker.io:5000/skaffold-helm:3605e7bc17cf46e53f4d81c4cbc24e5b4c495184] is not used.",
502
+
"image [skaffold-helm] is used instead.",
503
+
},
499
504
},
500
505
{
501
506
description: "deploy success remote chart with skipBuildDependencies",
0 commit comments