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
What does the project structure look like? Is the skaffold.yaml in the same directory as the pom.xml? I think what might be happening is that it searches for an existing skaffold.yaml and for build files in the same pass, and skaffold finds a Jib config first, so it returns filepath.SkipDir and stops searching the current directory before finding skaffold.yaml.
Hmm yeah, I suspect that's the case then. The correct behavior should probably be to continue walking at the current level without entering any nested directories after a Jib config is found, rather than just skipping the rest of the current directory.
Skaffold v0.40
Project has Dockerfile and skaffold.yaml already present. We assume the generation of the Skaffold YAML is not necessary at this point. However:
skaffold init --analyze
:(expected)
skaffold init --analyze --XXenableJibInit
:(unexpected, we would notify user about skaffold YAML generation possibility although skaffold.yaml already present).
The text was updated successfully, but these errors were encountered: