|
|
|
|
|
by avilay
3999 days ago
|
|
Here is the process I use for smallish services - 1. Create a python package using setup.py
2. Upload the resulting .tar.gz file to a central location
3. Download to prod nodes and run
pip3 install <packagename>.tar.gz Rolling back is pretty simple - pip3 uninstall the current version and re-install the old version. Any gotchas with this process? |
|
So at some point, as you know you'll need to move on.