-
Notifications
You must be signed in to change notification settings - Fork 26
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
Question: Is it possible to configure labels for all services? #67
Comments
That's an excellent question! And no, I don't think we ever added support for that. Part of the issue here is that we try to add as few extensions to We have a similar problem with At some point, we might need to bite the bullet and add non-compatible extensions to |
Thanks for the quick response! If you don't want to pollute the pod files with non-docker-compose stuff, another solution might be to put it in defaults:
srcdir: /app
shell: bash
test: yarn test |
Yeah, it would be really easy to implement something like this, but the hard part is doing it in a way that doesn't feel gross and ad hoc. I think that we really need to decide how much we're going to rely on I wish I had a quicker answer, but I'd rather get this right. All my instincts say that it would be far too easy to add cruft here, and we probably want a more general solution. |
That sounds very wise. There are enough developer tools already where features feel bolted on, rather than thoroughly designed. It feels like there a few different directions. If you keep it the same as You could say it's The more extreme option would be to design a totally custom format, but that's probably a lot of work to design+implement+document, and raises the barrier to learning the tool. Tough call! 🤔 |
All of my containers will have the same values for these config items:
io.fdy.cage.srcdir
io.fdy.cage.shell
io.fdy.cage.test
Is there somewhere I can configure these so that it will apply to all services?
The text was updated successfully, but these errors were encountered: