It does not exist yet, I've filed BM-3326 to add it in v6.1.2
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!
Posts
-
RE: Get the current application's group name
-
RE: Feature Request- Show status of Agent or Agentless comunnication status
We will make this change for the next minor version (i.e. the next version unless there is pressing need to do a maintenance release before then).
The tracking issue for this is: OT-291
-
RE: Parent environment through API
Thank you for the report, I have filed OT-290 to get this fixed.
-
RE: Ensure-DSCConfig
Apologies for the delay, I had to reach out to gather this information. What I learned was that this was a custom operation. Below is the link to its source:
Yes, I made that operation to accommodate DSC Configuration scripts (multiple DSC operations encapsulated in a PowerShell script).
I had built this on a fork of of inedox-windows. I just merged in the latest changes for the main master (it has been 6 months, so there quite a few changes). I have built it, but have not tested it since the merge.
-
RE: Are the API endpoints for keyword "packages" still valid in 6.1.0?
Thanks, I've filed this as a bug here: BM-3307
-
RE: Are the API endpoints for keyword "packages" still valid in 6.1.0?
Both are supposed to be supported, and quickly inspecting the code itself, I see both as possible arguments:
isMatch("builds") || isMatch("packages")and
BuildId = AH.ParseInt(request["buildId"] ?? request["packageId"]), BuildNumber = request["buildNumber"] ?? request["packageNumber"],Perhaps it's JSON parsing related? Are you POSTing as
application/json? -
RE: APT/PyPi Packages Support
Both of these package types will be supported in 5.2.
PyPI support has now been added and published as a pre-release version of 5.2.0. Visit the ProGet Versions page to download, or get it from the Inedo Hub download.
-
RE: Python Support - Coming Soon - How soon?
PyPI support has now been added and published as a pre-release version of 5.2.0. Visit the ProGet Versions page to download, or get it from the Inedo Hub download.
-
RE: Python PyPI
PyPI support has been added and published as a pre-release version of 5.2.0. Visit the ProGet Versions page to download, or get it from the Inedo Hub download.
-
RE: Otter GetCredentialProperty Password
There are 2 ways to go about this:
- Allow
$PsCredentials()to support credential names as an argument
This is easiest, but would still require the "allow $CredentialProperty usage" option because you could always just write out the password in PowerShell regardless:
$credentials = Get-Credential [Runtime.InteropServices.Marshal]::PtrToStringAuto([Runtime.InteropServices.Marshal]::SecureStringToBSTR(($credentials.Password))) | Write-Host- Create a new
PowerShellCredentialstype
While the same "exploit" would still be available, at least it would be limited to PowerShell, e.g. you couldn't just
Log-Information $CredentialProperty(secret, Password);This though means we're just duplicating what
UserNamePasswordcredentials already do, and it could cause confusion as to which one to use.If you have any other feedback on this, we are all ears!
- Allow
-
RE: Otter GetCredentialProperty Password
@Adam - I have filed https://github.com/Inedo/inedox-windows/issues/70 to update the existing function to support referencing UsernamePassword credentials so you don't need to use
$CredentialProperty -
RE: Unable to push to Proget
Thank you for the report, this is resolved via: PG-1447
-
RE: Extension errors
This has also been reported in our Jenkins extensions issues section, can you take a moment to respond to the questions I posed here?
https://github.com/Inedo/inedox-jenkins/issues/26#issuecomment-454188149
-
RE: Npm Downloads Broken in 4.1.20
Thank you for reporting this - we've determined the root cause and will issue a fix for this ASAP.
-
RE: New Otter installation failing when "Requesting Free license key..."
Apologies - I broke that endpoint earlier ironically by accidentally disabling logging :(
It should work now; I also note that you can request a key at https://my.inedo.com and manually enter it.
-
RE: Promote Build Using API
Here is a working PowerShell example (v6.1+):
Invoke-RestMethod -Method POST -Uri "http://{bmserver:port}/api/releases/builds/deploy?applicationName=ApiTest&releaseNumber=1.2.3&buildNumber=1&key=<api-key>"For pre-v6.1 versions, the equivalent is:
Invoke-RestMethod -Method POST -Uri "http://{bmserver:port}/api/releases/packages/deploy?applicationName=ApiTest&releaseNumber=1.2.3&packageNumber=1&key=<api-key>"I have also put in a doc change request to clarify the endpoint names.
Additional note:
-UseDefaultCredentialswould be required if Integrated Authentication were enabled. -
RE: Extensions in docker
Hello Attila,
If you run
docker inspect proget -f '{{json .Mounts}}', does it include/var/proget/extensionsas both the source and destination of one of thebindmounts? -
RE: Python Support - Coming Soon - How soon?
Python and Debian feeds will be officially rolled out with our v5.2 release in March 2019. See the Products Roadmap for more information.
-
RE: The "Execution Details" page is a hinderance to troubleshooting issues
Good idea, I thought we already had the ability to do that, but I was confusing it with Job History.
Here is the associated issue: OT-278
-
RE: The "Execution Details" page is a hinderance to troubleshooting issues
This will be resolved as part of: OT-274
The workaround is to browse to the URL directly, e.g .
http://{otter-host}/executions/logs?executionId={execId}&level=0&download={true/false}