Navigation

    Inedo Community Forums

    Forums

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. atripp
    3. Posts
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Posts made by atripp

    • RE: How do I monitor a simple SVN repository that has no branches?

      Hi @Panda ,

      I'm not really familiar with SVN, but I'll do my best to help :)

      It looks like our code just assumes that there is a /branches directory, and that's why it's crashing.

      The repository monitor will enumerate the branches to find the most recent revision numbers, and then trigger builds as appropriate.

      The code that enumerates branches seems to do the following call svn ls --xml "«repo-url»" "branches/", and then parse the results. But it's failing, because svn is erroring with E200009.

      So it would require some sort of code change to get this working. Perhps a flag on the repository monitor, or something like that? If you have any ideas, maybe it's something we can try -- it's easy to get pre-release versions out there.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Package not found restoring from ProGet but works from nuget.org

      Hi @bbrown2_8761 ,

      I was able to reproduce this issue, though it's not happening 100% of the time.

      • a feed with a connector to nuget.org will fail
      • a feed with just that version of the package will work

      So far as I can tell, it's a bug in the NuGet client that .NET Framework uses. Maybe it's a result of the "bad version" in the feed?

      We can see that Visual Studio is requesting the registration index, and then complains the package isn't found. However, it's clearly in the index.

      The registration index lists all versions of the package, and you can find it on this URL:

      https://(redacted)/nuget/approved-nuget/v3/registrations/selenium.webdriver.chromedriver/index.json
      

      You will see 103.0.5060.5300 in that list, and there's no reason NuGet should say he's not found.

      There is one key difference between ProGet's registration index, and NuGet.org's index is paging. Here's NuGet's index:

      https://api.nuget.org/v3/registration5-semver1/selenium.webdriver.chromedriver/index.json
      

      When the registration index is paged, then the client will look for the appropriate page. I'm guessing he will crash if there's a bad version in there, or something?

      Anyways... I don't think we can do much to work-around this issue, and I guess you have a suitable work-around: don't use the Install-Package command. That seems to be the only thing broken.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Proget: custom download instructions for Assets

      Hi @mcascone ,

      Thanks for the feedback, that's great to hear. We'd love to hear what your download instructions look like, so we can share examples of how to use it.

      We didn't have support for this, but it will come in the next (first!) maintenance release of ProGet 2022, currently scheduled for July 8:
      https://inedo.myjetbrains.com/youtrack/issue/PG-2157

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Docker image arguments AWS

      Hi @Chester0 ,

      That screenshot appears to be the place where you configure environment variables? There's just one environment variable, and it's SQL_CONNECTION_STRING. The -e indicates to docker client that it's an environment variable, and isn't part of the environment variable name.

      The rest are other configuration options that instruct the docker client to work in one way or another. They're not environment variables. This is kind of complex to configure use unless you really know Docker inside-and-out, and know how to apply concepts to another engine.

      You may wish to use Lightsail and Windows. The costs are about the same, and the Inedo Hub is much easier to work with:
      https://docs.inedo.com/docs/proget-how-to-install-on-aws-lightsail

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Docker image arguments AWS

      Hi @Chester0 ,

      I'm really not familiar with AWS Fargate, but it looks like this is how you're supposed to pass environment variables: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/taskdef-envfiles.html

      It's likely you'll need to specify other configuration differently. Our documentation breaks down what each of the configuration parameters are: https://docs.inedo.com/docs/installation-linux-docker-guide

      Once you get up and running, we'd love to hear you got things set up :)

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Nuget connector error 302

      Hi @ehsan-bahrami91_9979 ,

      This error message is likely related to some sort of proxy server; you can adjust proxy settings under Admin > Proxy.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Package not found restoring from ProGet but works from nuget.org

      Hi @bbrown2_8761 ,

      That package should be fine; are you sure it's in your approved-nuget feed?

      If you navigate to /feeds/approved-nuget/Selenium.WebDriver.ChromeDriver/103.0.5060.5300 in the Web UI, then you should be able to see and download the package.

      When you try to download from the UI, what happens?

      Thanks,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Package not found restoring from ProGet but works from nuget.org

      Hi @dward_2542 ,

      Thanks for finding the specific package.

      The issue is that ProGet does not consider 96.0.4664.1800-beta.2 to be a valid NuGet package version, and gives an error message when trying to access it. See the NuGet Package Versioning documentation to see what's supported.

      Most NuGet tools and versions of the NuGet client will not support that version number either.

      The easiest way to resolve the issue is to use a newer version of that package.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Proget: Removed Package Still available for download in Feed

      Hi @arozanski_1087 ,

      Fortunately, sacrificing an albino goat won't be necessary 🤣

      Simply deleting the package using the UI will suffice to remove it from a feed. Unlisting or running retention rules are not necessary.

      I'll share some information to help troubleshoot. Basically, there are three types of packages: Local, Cached, Remote:

      1. If it's a Local package, then it will say "Delete Package"
      2. If it's a Cached package, then it will say "Delete Cached Package"
      3. If it's a Remote package, then there will be no delete option

      Remote and Cached packages have the radio-tower icon.

      Local and Cached packages are stored on the feed, and even if you remove the connector, cached packages will still be in the feed. This is by design.

      Remote packages come from the connector associated with the feed. They cannot be removed (you could Filter then out if you really want). The metadata is not cached (unless you configure that on the Connector), which means that the data is always "live". When you remove all connectors from a feed, there will be no Remote packages.

      Based on all this, it sounds like that package is coming from one of your connectors to Mainline. I would just remove the connectors from the feed until you find which one it's in.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Uploading snupkg using NuGet client

      Hi @john-selkirk ,

      Another customer has more details on this... it seems that newer versions of dotnet nuget silently ignores publishing symbols unless we have certain metadata in the feed index: https://github.com/NuGet/Home/issues/11871

      We may have a fix for this via PG-2154, which is scheduled for July 8's maintenance release. Not sure if it will fix it, but let's hope!

      In the meantime, the PUT will work fine though.

      Alana

      posted in Support
      atripp
      atripp
    • RE: Uploading snupkg using NuGet client

      Hi @john-selkirk , hi @alansbraga_8192 ,

      If you haven't seen it already, we've done our best to capture how to configure all this:
      https://docs.inedo.com/docs/proget-feeds-nuget-symbol-and-source-server

      Unfortunately its not as intuitive as we'd like. In general, we recommend doing the "embedded" approach for symbols, to keep things simplified.

      The dotnet nuget push command has a few bugs with regards to symbol packages and ignoring the symbol-source argument. Unfortunately this is beyond our control, as it's maintained by Microsoft.

      If you run a tool like Fiddler, you can clearly see it's not even trying to PUT the package. Other times it will try to push it to symbols.nuget.org, but silently fail.

      nuget.exe seems to be more reliable, but you can also just use curl.exe or PowerShell to PUT the package using the NuGet API

      PUT https://proget.local/nuget/feed-name/package

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Pipeline names must be unique by name and application

      Hi @Joseph-Saladino_7499 ,

      I wasn't able to reproduce the error using the UI, but I could figure out what's causing it and reproduce he error state using the API.

      Basically, you have two pipelines named "Standard «redacted» Service Pipeline". One pipeline may be global, one may be part of the application. But in any case, the validation logic is not allowing this to save because it detects a duplicate.

      To resolve this, delete one of the pipelines.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Pipeline names must be unique by name and application

      Hi @Joseph-Saladino_7499 ,

      Thanks, received! We'll debug/investigate this today or tomorrow.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Pipeline names must be unique by name and application

      Hi @Joseph-Saladino_7499 ,

      I think this may be specific to your pipeline data. You should be able to go to the pipeline in "edit view", and share us the JSON document.

      You can send that to support at inedo dot com with [QA-874] in the subject (so we can find it) , or also just you open a new ticket. If you do send to support email, please let us know on here that you sent it, since we don't regularly check that email.

      thanks,
      Alana

      posted in Support
      atripp
      atripp
    • RE: ProGet somehow breaks signed NuGet packages

      Hi @borisov_1556

      You say that ProGet doesn't modify files after uploading, only during it. But can ProGet strip and therefore modify packages after uploading in case of triggering re-indexing in a "symbol server" settings?

      When you enable any of the "strip" options, ProGet will modify the file during the download process, when it's requested by a client (web browers, nuget.exe, etc). The zip-file is basically rewritten on-the-fly when sending it to the client requesting it. This modified file is not saved to disk or persisted inside of ProGet.

      The symbol serving reindexing is unrelated.

      do you mean that not only the content of a file, but also the compression type of every file in the .nupkg will be preserved as-is, and ProGet handles that explicitly?

      Correct. ProGet effectively just "deletes" the "stripped" files entries from the archive file while it's being streamed. The existing file entries are not modified.

      A file entry in a zip archive contains the compression type. So to "change" an entry's compression, you would need to "delete" it from the archive, and then "add" it back to the archive.

      So, the point is... something else must be modifying your zip file. ProGet is not. You can verify this by:

      1. download file from NuGet.org, check the hash of the file
      2. uplaod file to ProGet, check the hash of the file in the package store
      3. download file from ProGet, check the hash of the file on disk

      MAybe nuget.exe is doing a modifcation? It's really hard to guess, but i would continue the investigation by finding what could be modifying the file.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Is there a Proget API to set NPM tag version?

      Hi @arozanski_1087

      The method name is NpmFeeds_SetTagVersion so I think the error you're seeing is about case sensitivity in the method name.

      posted in Support
      atripp
      atripp
    • RE: ProGet somehow breaks signed NuGet packages

      Hi @borisov_1556 ,

      Thanks for the detailed information.

      At first, ProGet does not modify NuGet package files after you upload it.

      If you enabled any of the "Strip" options, then ProGet will stream a modified archive file during download; this will have a different hash and be a different file. However, this wouldn't alter how existing items are stored in the archive file.... those would be streamed as-is.

      ProGet also has a "repackage" feature, which will create a new package altogether. But I doubt you're using this, and you shouldn't use this with public / third-party packages, it's used for CI/CD pipelines.

      I'm not sure what's going on, but I would investigate how you're uploading the files? Maybe you're re-signing them? But otherwise, if you just download a package file from nuget.org, then upllad it to proget, then download it again... it's going to be identical file.

      Let us know what you find!

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Is there a Proget API to set NPM tag version?

      Hi @arozanski_1087

      Thanks for sharing that!

      Based on the snippet you sent, my guess is that this was originally for a npm package, and someone tried to make it work for a NuGet package? But that would have never worked, b/c NuGet packages can't be tagged... so his is really just a broken / never worked code snippet.

      To tag npm packages, I recommend you to just use the client:
      https://docs.npmjs.com/cli/v8/commands/npm-dist-tag

      If you want to use the native API, then note the parameters are also wrong. NpmFeeds_SetTagVersion uses these parameters

      • Feed_Id (Int32)
      • Package_Name (String)
      • Scope_Name (String)
      • Tag_Name (String)
      • Tag_Version (String)
      posted in Support
      atripp
      atripp
    • RE: Is there a Proget API to set NPM tag version?

      Hi @arozanski_1087,

      Do you mean that you are currently tagging npm packages via the API (NpmFeeds_SetTagVersion), but that you wish to tag NuGet packages?

      I ask, because there is no such method NugetFeeds_SetTagVersion, at least not in ProGet v6 or other versions that I'm aware of.

      It's also not possible to tag NuGet packages -- the reason is, the package tags are stored in the manifest file, and you would need to reupload the package file. npm tags, however, are stored as metadata on the server (not in the package manifest file).

      The method NpmFeeds_SetTagVersion is part of the ProGet Native API, and you can find what methods are available in /reference/api inside of your version of ProGet.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Unable to access admin page with admin user

      Just jumping in here, but I think you need the .exe 🤷

      docker exec -it proget exec /usr/local/proget/service/ProGet.Service.exe resetadminpassword
      

      It's not needed on Windows to run an executable, but I think it's required for Linux.

      posted in Support
      atripp
      atripp
    • RE: Use on-prem S3 (ceph/rgw) as feed storage

      Hi @karsten-meichsner_9039 ,

      Oh wonderful!

      If you're able/interested to try it out, then we should easily be able to add a checkbox in the UI for it and send you a patch/prerelease to try.

      That's how many of the other options got added 😅

      Alana

      posted in Support
      atripp
      atripp
    • RE: ProGet GET requests not returning expected payload

      Hi @james-traxler_1560,

      I'm not really sure I totally understand the issue, or how to resolve it... but I'll explain how a GET manifest request to your URL would work.

      Basically, ProGet returns whatever manifest file you uploaded, or whatever was downloaded via the connector. We do not generate the manifest files, or pay attention to the Accept request header.

      I understand that application/vnd.docker.distribution.manifest.list.v2+json is a "fat manifest", which is basically a manifest that points to other manifests on different architectures. So you don't know exactly what image you'll get until you install it on the machine.

      So if you want to inspect layers, you would first need to decide which manifest to use, I guess 🤷

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Violation of PRIMARY KEY constraint 'PK__DockerBlobIndex'. Cannot insert duplicate key in object 'dbo.DockerImageLayers'.

      Hi @james-traxler_1560 ,

      Thanks for testing that 😸

      It will be released in v6.0.16, which is planned to ship on Friday June 10th.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Configure LDAP on BuildMaster on Linux

      Hi @marc-ledent_9164 ,

      This isn't something that our LDAP/AD integration supports on Linux at this time. It's possible using the Windows-version, which has an LDAP integration that uses different libraries (that only work on Windows).

      We do plan on rewriting the LDAP/AD integration with a different library, as to allow this level of customization, but it's not something we can do right away. It'll be later this year.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: ProGet doesn't log package publisher from command line

      @ehsan-bahrami91_9979 great!

      In that case, can you use 6.0.16-rc.1 by following these instructions on Windows:
      https://docs.inedo.com/docs/desktophub-overview#prerelease-product-versions

      Or if it's on Linux, just install the image with that tag.

      After installing that version, it should do the trick. Please let me know :)

      posted in Support
      atripp
      atripp
    • RE: ProGet doesn't log package publisher from command line

      @ehsan-bahrami91_9979 thanks for confirming that

      There was a regression/issue with recording this information, but it will be resolved via PG-2143 in 6.0.16 (shipping next Friday). If you'd like me to prepare a patch/prerelease, let me know!

      posted in Support
      atripp
      atripp
    • RE: Use on-prem S3 (ceph/rgw) as feed storage

      Hi @karsten-meichsner_9039 ,

      We'll definitely keep that in mind; we currently use the AWS SDK, which means we don't work at the HTTP-level and can't easily control the requests.

      Basically our code does this:

      new CopyObjectRequest
      {
          SourceBucket = this.BucketName,
          SourceKey = this.BuildPath(sourceName),
          DestinationBucket = this.BucketName,
          DestinationKey = this.BuildPath(targetName),
          CannedACL = this.CannedACL,
          ServerSideEncryptionMethod = this.EncryptionMethod,
          StorageClass = this.StorageClass
      },
      

      If you know of any way to configure the SDK to send a different request, we'd be happy to try that out!

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: ProGet doesn't log package publisher from command line

      Hi @ehsan-bahrami91_9979 ,

      Can you tell me what version of ProGet you're using? It should be in the bottom-right corner.

      Thanks,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Use on-prem S3 (ceph/rgw) as feed storage

      Hi @karsten-meichsner_9039,

      I'm glad you could solve the issue! I'm not very familiar with Ceph, but it sounds like it works with the AWS API, which we use to talk to AWS. I added a brief notes to the docs about Ceph/RGW usage, but if you have suggestion to improve, please let me know :)

      As for the "Use server-side encryption" option, the checkbox sets the option on the API Request (e.g. CopyObjectRequest) to use AWS Server-side Encryption. ProGet does not encrypt the data.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Unable to access admin page with admin user

      Hi @chris-f_7319 ,

      If you follow the instructions to use the reset tool, it should reset and solve the problem:
      https://docs.inedo.com/docs/various-ldap-troubleshooting

      (proget-installation-directory)\Service> .\ProGet.Service.exe resetadminpassword

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Use on-prem S3 (ceph/rgw) as feed storage

      Hi @karsten-meichsner_9039 ,

      This error is happening at the SSL-level, which is managed by the operating system (platform). There's nothing you can configure in ProGet to resolve this, so you'll need to make some changes to the operating system.

      Can you tell me, are you using ProGet for Windows, or on Linux (Docker)? In either case, you'll need to trust the root certificate, but the ways to do this are a bit different.

      In Windows, the easiest way is to install the certificate using the UI (Certificates-Current User > Trusted Root Certification Authorities into Certificates (Local Computer) > Trusted Root Certification Authorities). You can also verify that the installation was successful by trying to navigate to a URL in your S3 bucket.

      In Linux/Docker, it's a bit trickier; in general you'll want to copy the .crt into /usr/local/share/ca-certificates and then run /usr/sbin/update-ca-certificates. There's a few ways to do this, but one common way is to build a docker image on top of our image. You can also SSH into the running container and handle this as well.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Otter role issue after upgrading to 22.0.2

      Hi @jramon-ortega_2700,

      Thanks so much for verifying all of this. I talked to the team about this, and wanted to share an update, and further the conversation. We'd love to get your opinion.

      Is PowerShell DSC dying/dead?

      This is very clearly a "pretty big bug" that Microsoft hasn't fixed after very many years, which is surprising to see. It doesn't seem to be reported or discussed much.

      At this point, we're really unclear on the future of PowerShell DSC. From our research, it never got widespread usage in the community because of the complexity of Pull servers, MOF, etc. Ultimately, most Windows admins just chose to use regular PowerShell scripts to set-up servers because it's simpler to understand and use.

      Microsoft seems to have demoted it to a "community" project as well. It looks like they have some effort they plan to invest in it (based on a 2021 blog post), but there hasn't been recent updates or activity.

      It seems that the PowerShell team is really focused on PowerShell Core now, and DSC isn't so much a fit? Maybe they will fix the remoting bug in Core? But who knows 🤷

      PowerShell DSC Alternatives?

      There are several alternatives:

      • Otter's native operations, like Ensure-RegistryKey and Transfer-Files; these are more performant than the DSC resources and have a UI that make them easier to use
      • PowerShell Scripts (using AHEXECMODE, etc)
      • Executing powershell scripts using powershell.exe; this isn't great, because we can't easily parse output or read variables, etc.

      How can Inedo help/invest in automation?

      Ultimately, you (and our users) want to use automation to solve problems, and PowerShell DSC is just one tool to get there. It's convenient because there's many resources.

      We can invest in working-around this bug, but it's not trivial. In the same time, we could improve a lot of Otter operations and write/document a lot of PowerShell scripts.

      from a marketing/user standpoint, we don't know how many people are using PowerShell DSC , and if they would even find Otter to add value.

      So getting your ideas/opinoins would be appreciated :)

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Violation of PRIMARY KEY constraint 'PK__DockerBlobIndex'. Cannot insert duplicate key in object 'dbo.DockerImageLayers'.

      Hi @james-traxler_1560,

      Thanks for all of the info!

      We are using ProGet Version 5.3.28 (Build 16), and calling the API directly.

      Ah, that explains it. We really only test this with the Docker client, which wouldn't trigger this issue.

      Usage scenario: removing or renaming tags for a manifest. As there is no specific route for this use case, we are DELETE-ing the manifest through the v2 docker API and re-adding (with PUT) the new/remaining tags.

      Is this a Docker API limitation? We were thinking of adding a API for tag management for our own CI/CD platform (BuildMaster), but just worked-around it, and no one ever asked.

      we are concurrently executing 6 PUT requests:

      This is probably where the issue is. Looking at the database code, there is an opportunity for this to happen between a DELETE and INSERT statement.

      It's pretty easy to fix, can you give it a shot? If it works in your test, then I'll commit the change. But note this will be for v6.0.15, so unless you upgrade to that or later, then you won't have the patched code.

      https://inedo.myjetbrains.com/youtrack/issue/PG-2140

      If you download the file attached to the above link, you can run it against your SQL Server database.

      Thanks,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Message: Unhandled exception while attempting agent update check.

      Hi @Joseph-Saladino_7499 ,

      Hmm, that's really weird; the next thing I would try is to just restart all the machines (including the BuildMaster server). That's easy to do and the issue might go away. It could be a software error in the Windows networking stack 🤷

      It's possible that there's some intermediate network device that's interfering. Router, QoS device, etc. That's harder to diagnose, and would require some tracing ... starting by making sure that the RST packet is actually being received on the BuildMaster server (that's usually what indicates the error message), and then figuring out what device is sending it, and why.

      Our code doesn't work at the packet-level, but if the remote server (Inedo agent) is where the RST packets are coming from, it likely has to do with some obscure Windows setting... maybe even firmware on the network card. But at least something to look at.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Violation of PRIMARY KEY constraint 'PK__DockerBlobIndex'. Cannot insert duplicate key in object 'dbo.DockerImageLayers'.

      Hi @james-traxler_1560 ,

      We can help with this...

      In general, the error makes sense if you're trying to re-add an image that's already there... but can you describe how you're doing that?

      I.e. are you using the Docker client to push an image, or using the API directly? execute the PUT statement?

      What is the version of ProGet that you're using?

      Can you give a full stack trace (not sure if there's an error)?

      Thanks,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Otter role issue after upgrading to 22.0.2

      @jramon-ortega_2700 thanks so much for testing this, and verifying the issue is occurring outside of Otter. This is what we were afraid of, but it shows where the problem is.

      This is definitely a bug/issue with PowerShell, and likely the way that the DSCR_Application module is designed? We don't really know.

      I doubt Microsoft will fix this... but it doesn't hurt to ask. You have a very good reproduction case now.

      It might be possible for us to work-around this, but unfortunately it's not a trivial matter. We'd need to find an alternative to "local remoting" to handle process communication.

      What would be good to know, how widespread is this?

      Is it only this DSCR_Application resource? Maybe the creator of DSCR_Application can work-around the issue?

      Using Chocolatey Packages, I guess, could be a good replacement? Maybe there's a way to do it with your own Ensure-based PowerShell script instead of a DSC resource?

      We like the ability to use DSC resources, but if it's only one or two, then maybe it's not worth the effort to work-around?

      posted in Support
      atripp
      atripp
    • RE: Message: Unhandled exception while attempting agent update check.

      Hi @Joseph-Saladino_7499 ,

      The message, "An existing connection was forcibly closed by the remote host" basically just means that the remote server abruptly hung-up the connection.

      Based on the fact that there's no errors happening on the remote servers (agents), then I wonder if it's related to firewalls blocking a connection?

      It could also be related to the agent refusing to connect because the AES encryption key is not correct. How are the agents configured (with / without encryption key?)?

      Hope this at least points in the direction.

      Thanks,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Shared directories in a cluster environment

      Hi @marc-ledent_9164,

      There's really just one, and that's the artifacts (BuildMaster) or packages (ProGet).

      To configure server level shared storage, you'll want to configure:

      • For BuildMaster, the Artifacts.BasePath value in Administration > Advanced Settings.
      • For ProGet, the Storage.PackagesRootPath value in Administration > Advanced Settings.

      Do note that ProGet also allows configuration of storage at a feed level, which you can find on the Manage Feed page for each feed. Click change on the right side of the Disk Path property.

      This guide might be helpful:

      https://docs.inedo.com/docs/installation-high-availability-load-balancing

      posted in Support
      atripp
      atripp
    • RE: Otter role issue after upgrading to 22.0.2

      Hi @jramon-ortega_2700,

      I'm not a PowerShell expert myself, but I looked at the code for the operation.

      We use the Invoke-DscResource CmdLet to run the configuration...

      https://github.com/Inedo/inedox-scripting/blob/master/Scripting/InedoExtension/Operations/PowerShell/Dsc.cs#L140

      Not sure if that helps, just wanted to point you in the rightd irection

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Otter role issue after upgrading to 22.0.2

      Hi @jramon-ortega_2700 ,

      Another strange error! I chatted with the engineers here, and can summarize this a bit.

      In Otter 2022, we went to .NET6, which has those annoying bugs with modules in a "hosted powershell" environment. So, we switched to using something called "local remoting" - which basically allows us to communicate with the PowerShell process using PowerShell's remoting functionality. So basically, PowerShell is now executing using "PSRemoting" - so it kind of makes sense that a remoting error is happening.

      After researching the "serialized xml is nested to deeply" message, this seems to be a powershell bug -- it's an error displaying an error message over remoting, maybe. It happens with PSRemoting and DSC it seems, but who knows 🤷

      Are you able to try to run this via PSRemoting, to see if you can reproduce the error? Any errors logged in the event log.

      A few posts mentioned that this has something to do with security?

      If you search "serialized xml is nested too deeply" you should find a handful of things to try... mind giving those a shot, and see if it makes any difference?

      Thanks,
      Alana

      posted in Support
      atripp
      atripp
    • RE: The underlying connection was closed: An unexpected error occurred on a send.

      Hi @Rohan-Patel_7666

      I think that this issue is related to TLS configuration; basically your operating system doesn't support the TLS configuration required by websites like nuget.org.

      Here is a registry work-around that you can try:
      https://inedo.com/support/kb/1161/tls-v12-configuration-and-connection-errors

      This will force TLS 1.2.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Upgrade Otter 22.01 Roles not working

      @jramon-ortega_2700 thanks for the bug-report; this seems to be related another library upgrade, but we'll get it fixed soon - please stay tuned :)

      posted in Support
      atripp
      atripp
    • RE: BuildMaster Container - TeamCity Integration

      @kichikawa_2913 thanks for letting me know; well, if you see it come again, please do inform us. It may be a caching issue on Linux/containers, but hard to say

      posted in Support
      atripp
      atripp
    • RE: BuildMaster Container - TeamCity Integration

      @kichikawa_2913 This is really really weird.

      Can you try creating a credential again? Perhaps restart the container? I've never seen anything like this... clearly the extension has loaded, since you can view all the components 🤷‍♀️

      Which of the credentials did you create by the way?

      posted in Support
      atripp
      atripp
    • RE: BuildMaster Container - TeamCity Integration

      Hi @kichikawa_2913,

      Do you have multiple web nodes? I'm thinking that, perhaps, one of the web nodes didn't load the extension?

      Hw about if you lick on TeamCity in that list? It should enumerate all of the components in the extension.

      You were able to create it... so we know it loaded at some point...

      Alana

      posted in Support
      atripp
      atripp
    • RE: BuildMaster - Where is the code built?

      @kichikawa_2913 we don't have a typical set-up per se, really 😅

      A lot of set-ups are very simple, since the team is new to CI/CD, and they just have the BuildMaster server do everything.

      Others have dozens of build agents configured in a pool to service various teams, and use lots of shared configuration.

      Most are somewhere in the middle -- since they started simple, and gradually explored over time. That's generally what i'd start with -- tackle one pattern/team, then move on to the next and improve over time.

      posted in Support
      atripp
      atripp
    • RE: BuildMaster - Where is the code built?

      Hi @kichikawa_2913 ,

      Given that you're already familiar and comfortable with using build agents, then we'd recommend a similar set-up with BuildMaster. To do this, you'd provision/configure your build server(s) and then have BuildMaster connect to them, generally using the Inedo Agent.

      One common pattern is to create a role, such as build-server, and then target it in your pipeline stage, like this:

      targeting a server pool

      This way, it will act as a server pool. You can also do this in OtterScript as well, for some very fine-grained control; it's considered a resource pool.

      In any case, whatever server you target is where the code will retreived from source, built, and tested.

      hope this helps!

      posted in Support
      atripp
      atripp
    • RE: Git repo raft showing as empty

      Hi @gurdip-sira_1271 ,

      We don't think anything changed with regards to Git Rafts & Otter v2022, and don't have any issues on our end with them.

      Is this a new instance with them or something?

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Upgrade Otter 3.0.24 to 22.0.1 break Ensure-PSModule

      Hi @jramon-ortega_2700 ,

      This should be fixed now! If you go to Admin > Extensions, can you download Scripting 2.0.1?

      Thanks,
      Alana

      posted in Support
      atripp
      atripp
    • 1
    • 2
    • 18
    • 19
    • 20
    • 21
    • 22
    • 36
    • 37
    • 20 / 37