Hi,
Before everything else, I want to explain the setup I currently have.
I am using TeamCity as my build server,
Octopus deploy to automate my deployments,
They are both on the same Physical server.
Everything is working great except there is some slowness when the Nuget gets pushed from TeamCity to Octopus, mostly around 2-3 minutes for a 30mb package.
[Exec] PUT http://octopus.xxxxxx.com/nuget/packages/
[Exec] Created http://octopus.xxxxxx.com/nuget/packages/ 128124ms
now I’m wondering is there any way to push the nuget to octopus without having to issue a PUT request which is essentially uploading the package to octopus which is also the same server.
(basically the nuget package is already on the same server as octopus so why need to upload it again.)
The Idea I have is, how can i push a build to Octopus without having to upload the file, but instead pass a location in the local directory pointing to the nuget package.
Hope my inquiry is clear.
Thanks in advance!