-
Notifications
You must be signed in to change notification settings - Fork 166
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
Cert manager does not work on Windows #503
Comments
ya, we'd accept a PR to convert it to python. that's what has ended up happening with a lot of tilt extensions. tilt also supports local(cmd_bat) for specifying a separate windows batch script, which would be fine too |
We had discovered the |
i usually use |
I was annoyed by this for hours, ended up just commenting out the test cert deployment for this to run on windows. I can't find any documentation on how to run python commands instead of local(), anyone got any pointers? I would love to contribute a PR to fix this for windows. |
The following line runs a connection test to Cert Manager in a loop:
Unfortunately, this doesn't work on Windows where
local
usescmd
which doesn't support this syntax.One possible way forward would be to do the looping in Python and write the YAML to a file so that the command works without looping and heredocs.
Do you think this would be a good idea?
If so, we can create a PR for it.
The text was updated successfully, but these errors were encountered: