We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Converting examples/docker-compose.yml to k8s...
$ kompose convert panic: runtime error: invalid memory address or nil pointer dereference [signal 0xb code=0x1 addr=0x8 pc=0x46be8a]
It's because of this line which references Networks (which is nil, since it's v1 compose file):
nil
//FIXME: networks always contains one default element, even it isn't declared in compose v2. if len(composeServiceConfig.Networks.Networks) > 0 &&
@surajssd we need to add those example files to the test
The text was updated successfully, but these errors were encountered:
Fixing in #103, still need tests
Sorry, something went wrong.
Super @janetkuo . I saw this panic error last night but immediately had to go to sleep so didn't fix.Thanks for your quick react 👍
This issue also stopped me to finish my PR #91.
This is fixed now
No branches or pull requests
Converting examples/docker-compose.yml to k8s...
It's because of this line which references Networks (which is
nil
, since it's v1 compose file):@surajssd we need to add those example files to the test
The text was updated successfully, but these errors were encountered: