-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix bug local map URL * better diagnostic * Aggregator_AzureDevOpsCertificate to trust from container * fix some issues with API key
- Loading branch information
Showing
13 changed files
with
100 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
@ECHO OFF | ||
|
||
REM Bypass "Terminate Batch Job" prompt. | ||
if "%~1"=="-FIXED_CTRL_C" ( | ||
REM Remove the -FIXED_CTRL_C parameter | ||
SHIFT | ||
) ELSE ( | ||
REM Run the batch with <NUL and -FIXED_CTRL_C | ||
CALL <NUL %0 -FIXED_CTRL_C %* | ||
GOTO :EOF | ||
) | ||
|
||
IF EXIST "%Aggregator_AzureDevOpsCertificate%" ( | ||
ECHO Importing %Aggregator_AzureDevOpsCertificate% | ||
certoc -addstore root "%Aggregator_AzureDevOpsCertificate%" | ||
ECHO Import completed | ||
ECHO. | ||
) | ||
dotnet aggregator-host.dll | ||
|
||
EXIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/sh | ||
if [ -f "/secrets/$Aggregator_AzureDevOpsCertificate" ]; then | ||
echo Importing $Aggregator_AzureDevOpsCertificate | ||
#mkdir /usr/local/share/ca-certificates/extra | ||
#cp /secrets/$Aggregator_AzureDevOpsCertificate /usr/local/share/ca-certificates/extra | ||
cp /secrets/$Aggregator_AzureDevOpsCertificate /usr/local/share/ca-certificates/$Aggregator_AzureDevOpsCertificate | ||
update-ca-certificates | ||
echo Import completed | ||
fi | ||
dotnet aggregator-host.dll |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters