-
Notifications
You must be signed in to change notification settings - Fork 772
New issue
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
underscores get propagated into invalid names #420
Comments
@idcrook see if it works for you! |
Thx |
Opening this issue again as #429 fixed this problem only for service names, same problem is still in volume names. |
@kadel so @containscafeine found that there is a caveat with what #429 did. Let say if a user defines a docker-compose file as services:
foo-bar:
...
blah-blah:
...
Now if the So we need to give out a WARNING saying this is done. |
so above is filed in #433 |
@procrypt i think @surajnarwade is working on this |
Ah, sorry @surajnarwade @procrypt I didn't know that, or even more probably forgot about it 😊 |
Can be closed when #509 is released |
docker-compose like upon, when "kubectl create" will ouput error
|
searched for dupes, and found none.
docker compose file has name like:
phant_server:
in yaml, which contain embedded underscores.kompose
does not normalize the name, resulting in invalid names being used.pvc
yields error
deployment
possible normalization suggestions
phant_server -> phant.server
phant_server -> phant-server
phant_server -> phantserver
The text was updated successfully, but these errors were encountered: