Welcome to the Inedo Forums! Check out the Forums Guide for help getting started.

If you are experiencing any issues with the forum software, please visit the Contact Form on our website and let us know!

  • Cyber Range ProGet Use

    2
    0 Votes
    2 Posts
    12 Views
    stevedennisS
    Hi @smiller-circ_2844 , Product activation is required. If you're unable to keep the same MachineID, then you'll need to get an activation code from my.inedo.com. While it's not officially supported and isn't documented, you could "listen" to the activation request that ProGet makes by using a proxy server like Fiddler, and make the same API request with your key. You would then need to add that value to the database. I don't want to give specific instructions on how to do this, because like I mentioned it's not officially supported -- but it's not "too difficult" to do, if you're familiar with the above. Cheers, Steve
  • upack push return (403) Forbidden without Feeds_OverwritePackage permission

    27
    0 Votes
    27 Posts
    77 Views
    P
    I wait for the next official release. i have a workaround with disable the permission
  • Files not copied during deployment

    3
    3
    0 Votes
    3 Posts
    7 Views
    J
    Hi @atripp, Thanks that helped me solve it pretty quickly, just a typo somewhere in the script variables. Very happy to have learned about the verbose setting :-) Justin
  • Inedo Agent with Otter Bug - Legacy Powershell Instances

    3
    0 Votes
    3 Posts
    19 Views
    O
    @stevedennis This is amazing, what a great feature.
  • Proget Issues (healthcheck, DB connection)

    15
    0 Votes
    15 Posts
    51 Views
    stevedennisS
    hi @cshipley_6136, We chatted a bit about this as a team today. We believe that the application failed during initialization (i.e. the first web request after starting the service); when this happens, the error message will be returned until you restart the application (container/service). This is by design; there's no way to guess where or why the initialization failed, and if we "crash" the application (and trigger a restart), it can end up in a endless loop and make diagnosing really difficult. In this case, the error is network related (server name not found). That error can be transient when you have network problems, or permanent if it's a typo in the connection string. Since restarting the application (container) fixed it, then it was a transient network issue that happened during initialization. Hope this helps, Steve
  • Otter Bugs

    otter
    4
    0 Votes
    4 Posts
    47 Views
    atrippA
    @OtterFanboy got it, thanks! So this particular change is a bit more involved unfortunately. For example, if you clicked on "Windows Server", you wouldn't find any drifted servers - which would be confusing, because the environment would show as drift. I'll note this as something to think about for v2023
  • Otter - 500 Error On Clean Install

    2
    0 Votes
    2 Posts
    7 Views
    atrippA
    Hello @OtterFanboy , Thanks for the bug report! We'll fix it via OT-483. That tab only displays if "Configuration drift:" is set to something other than "None", but there should be a "no roles" type of message instead of a crash. Cheers, Alana
  • Buildmaster - Deploy Artifact

    2
    5
    0 Votes
    2 Posts
    11 Views
    atrippA
    Hello @OtterFanBoy123 , I was able to reproduce this; it's a UI regression BuildMaster 2022's new OtterScript editor. This won't impact deployment, the script, or anything like that. I've logged this as BM-3817 and we'll try to get this fixed in the next maintenance release :) Cheers, Alana
  • Feedback about PG-2268 Integrated .snupkg NuGet Symbol Support

    4
    0 Votes
    4 Posts
    22 Views
    atrippA
    @lm thanks for letting us know that it worked! I'm glad you were able to find the issue on GitHub. Looking closer, it is a NuGet client bug; I posted an update on the issue. The only workaround is what you described (setting a separate API key).
  • Chocolatey "install.ps1" not found

    3
    0 Votes
    3 Posts
    5 Views
    T
    It's odd because I haven't updated ProGet (or Ansible) since installing it, and it did work back 5 months ago. You're right, I'll likely need to modify the bootstrap_script if ProGet is not pulling the install.ps1 from the Chocolatey source upon request.
  • Powershell "Find-Package" has problems with v3-Feed on ProGet

    4
    0 Votes
    4 Posts
    15 Views
    R
    Hello Rich and Alana, thank you for your effort. I wrote my problem as a reminder to the open issue https://github.com/OneGet/oneget/issues/430. We will see what happens Kind regards, Rosario
  • Otter functions for interacting with REST API's?

    2
    0 Votes
    2 Posts
    7 Views
    atrippA
    Hi @Justinvolved , Hundreds of configuration files in one application -- definitely too much. I'd probably seek a different solution if that's the case. But having one or a few per application is okay. There is an Http-Post Operation that you can probably use to make API calls. Conceptually it's similar to the PowerShell Invoke-WebRequest method. I'm not sure what the configuration file would look like (array? map variable?), but there's also a variable function, ($Filecontents()), that could read a file, and an $Eval() function that can can convert text into variables. That said... it might be a bit challenging to do all this in OtterScript. It's not really designed for this. You may be better off writing a global PowerShell script that can process input from a configuration file that you deploy to the working directory. That would also be easier to test as well. Cheers, Alana
  • Build fails in release pipeline

    3
    2
    0 Votes
    3 Posts
    8 Views
    J
    Hey Greg, Thanks, changing to C:\Temp solved the issue indeed, so I guess the path was too long. I'm experimenting with the Inedo Agent to make sure I can scale up and not have everything tied to Localhost, seems that was a good call given these subtle differences :-) Cheers, Justin
  • Download Priority

    3
    0 Votes
    3 Posts
    12 Views
    N
    Thank you very much, it works as it should!
  • SSL Handshake problem with specific helm-repo

    4
    0 Votes
    4 Posts
    16 Views
    F
    Hi Dan, thanks for the fast reply. It's a Windows 2012 Server. We gonna move Proget to some newer machine and see whats gonna happen. Thanks, Florian
  • Addressing Configuration files in Build vs Release

    4
    2
    0 Votes
    4 Posts
    9 Views
    atrippA
    Thanks for clarifying @Justinvolved I was able to reproduce this issue, looks like it was a regression with "releaseless builds". Easy fix... it'll be in the next maintenance release as BM-3808. The release is scheduled for this Friday :) Cheers
  • ProGet symbol proxy

    6
    0 Votes
    6 Posts
    19 Views
    J
    You're right, caching SourceLink enabled PDBs would be somewhat useless for outages. Though there are still plenty of "old-school" PDBs around, especially for native code (C/C++).
  • Delete pipeline

    3
    0 Votes
    3 Posts
    6 Views
    M
    Thanks Alana!
  • Variable with package url for webhook

    5
    0 Votes
    5 Posts
    16 Views
    J
    Ok, thanks for the information.
  • Remember me functionality for ProGet webinterface

    4
    1
    0 Votes
    4 Posts
    13 Views
    stevedennisS
    Hi @lm , We've considered this over the years, but realized it'd be more engineering effort that just changing cookie duration; we'd want to track login sessions on the server side, allow them to be invalidated, etc. It's possible, but it seems the "Remember me" function on most services (GitLab, etc.) seems to be very forgetful anyways (for security purposes), and with Integrated Windows Authentication and browsers managing passwords, it seems not so valuable for the effort. Cheers, Steve
Inedo Website HomeSupport HomeCode of ConductForums GuideDocumentation