djm
Python depencies - install from github repo
Thanks for getting back to me, I was looking at the EE pricing today with my teammate, I asked you previously about Non Profits but the pricing page doesn't seem clear. Does Pro(NfP) = EE?
I have the
ssh-keyscan
command in step 2 above, already in init script. For some reason it works on the first worker, but as soon as the script is allocated to another worker it fails.
Re-running incessantly until the original worker is chosen again will allow it to work successfully24 replies
Python depencies - install from github repo
This seems to have issues when re-using the cached resolution on another worker; I would imagine INIT_SCRIPT runs on both workers so I'm not sure why the host key would fail to verify
Scaling to just one worker fixes this; also had to run
delete from pip_resolution_cache ;
on the postgres container24 replies
Python depencies - install from github repo
I spent the last few days looking at this for our private pypi package:
I was not able to get it working with
PIP_EXTRA_INDEX_URL
, might need your help with that one @rubenf . I will look at a minimum reproducible example soon.
I was able to get it working in our Self-Hosted environment like so:
* use #requirements:
to specify the exact Git SSH URL with the version tagged using @
:
* Add Init Script to worker which adds github.com to known_hosts
for SSH:
* Mount on the workers the private SSH key authorised to access the Git repo:
24 replies