-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add a silent try catch while printing previous log tail (#87) * Added console event generator for kudu (#85) * Fixed the bug where symlinks couldn't be created for zip extraction + (#84) added recursive permissions change for zip deploy/zip controller * ANT84 Linux Consumption Remote Build Patch (#88) * ANT84 Linux Consumption Server Side Build Patch * Add logger for dependencies * Remove zip context validation * Fix error message when doing zip deploy with WEBSITE_RUN_FROM_PACKAGE * Add ability to grab the FRAMEWORK_VERSION for function apps (#91) * Kudu Fixes (#90) * Using Log4Net to generate kudu event logs * Added lts support for Oryx on NODE. Made compressing python packages default. Fixed minor bugs with kudu event logs * Changed the log path in Log4Net config * Added Express Build support for NETCore. Added a filter to avoid excessive logging for certain paths. * Modified python compress arguments * Added debug arguments for oryx build * Added a fix for NETCore express build scenario + Removing Oryx Manifest file for Zip Deploy * Minor change * Fix python 3.7 path in Oryx Build (#92) * Fix python 3.7 path * Fix syntax * Fix missing Docker logs (#96) * Fix missing Docker logs * Retrieve logs for the last seven days from the latest timestamp * Added KuduConsole Log4Net logger + Some Bug Fixes (#97) * Added log4net support for KuduConsole * Fix FileNotFound exception for LogStream Service * Fix Oryx Build command not picking up the version * ANT86 add zipdeploy endpoint support for ARM call (#94) * Add zipdeploy endpoint for ANT86 * Remove ZipDeployController * ANT86 Patch on Linux Consumption Remote Build (#95) * Warm up linux conusmption function app after remote build * Also take SCM_RUN_FROM_PACKAGE from app setting * Trigger a recycle after wardeploy (#98) * Trigger a recycle after wardeploy - This is a port of this PR - projectkudu/kudu#3050 - from the Kudu repo. - Current implementation of /wardeploy triggers a recycle of container, only on Xenon and Linux. This recycle is performed using the restartTrigger.txt file. - This commit adds support to /wardeploy for triggering a recycle of classic Windows web apps in addition to just Xenon and Linux, if the app setting WEBSITE_RECYCLE_PREVIEW_ENABLED is defined. Besides, the recyle will be performed using the /api/app/restart API. - The new behavior is hidden behind a WEBSITE_RECYCLE_PREVIEW_ENABLED flag, which is added only temporarily. This flag will eventually be removed and the new behavior will become the default. * Incorporated CR comment * Kudu Fixes + Enhancements - Oct (#101) * Adding some trace to zip formation * Added Artifacts support as a flag * Fix broken Deployments for Node 12.9 and remove Oryx Symlink Files on Zip Deploy (#102) * Fixing node_modules symlink deletion + * Add support to remove the symlink file using rm * Fix Node 10.16/12.9 broken deployments * Add Intermediate directory support for PHP (#103) * Update function app language version regex to take account lengthy function version (#108) * Add SyncTriggers query param for zipdeploy in Linux Consumption (#106) * Update deeplink to Linux troubleshoot page Same change as projectkudu/kudu#3139 * Added NoOpBuilder for static site stack (#115) * Added NoOpBuilder * Use FRAMEWORK env variable to choose NoOpBuilder * Check for NoOpBuilder before check for Oryx builder Co-authored-by: Hanzhang Zeng (Roger) <48038149+Hazhzeng@users.noreply.github.com> Co-authored-by: Ankit Kumar <ankikuma@microsoft.com> Co-authored-by: michimune <michimune@outlook.com> Co-authored-by: Shrirang Shirodkar <shrishrirang@users.noreply.github.com> Co-authored-by: purva-vasudeo <61296267+purva-vasudeo@users.noreply.github.com>
- Loading branch information
1 parent
f2d8346
commit 0a5e658
Showing
61 changed files
with
1,788 additions
and
657 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<log4net> | ||
<appender name="RollingLogFileAppender" type="log4net.Appender.RollingFileAppender,log4net"> | ||
<lockingModel type="log4net.Appender.FileAppender+MinimalLock"/> | ||
<file type="log4net.Util.PatternString" value="/var/log/kudulogs/%utcdate{yyyy-MM-dd}_%env{COMPUTERNAME}_scm_console_docker.log" /> | ||
<param name="RollingStyle" value="Size"/> | ||
<param name="StaticLogFileName" value="true"/> | ||
<appendToFile value="true" /> | ||
<maxSizeRollBackups value="10"/> | ||
<maximumFileSize value="5MB"/> | ||
<layout type="log4net.Layout.PatternLayout"> | ||
<conversionPattern value="%date{yyyy-MM-dd-HH:mm:ss.fff} %message%n" /> | ||
</layout> | ||
</appender> | ||
<root> | ||
<level value="ALL"/> | ||
<appender-ref ref="RollingLogFileAppender"/> | ||
</root> | ||
</log4net> |
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
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,17 @@ | ||
using Kudu.Contracts.Settings; | ||
|
||
namespace Kudu.Core.Deployment.Generator | ||
{ | ||
public class NoOpBuilder : BaseBasicBuilder | ||
{ | ||
public NoOpBuilder(IEnvironment environment, IDeploymentSettingsManager settings, IBuildPropertyProvider propertyProvider, string repositoryPath, string projectPath) | ||
: base(environment, settings, propertyProvider, repositoryPath, projectPath, "--basic") | ||
{ | ||
} | ||
|
||
public override string ProjectType | ||
{ | ||
get { return "NoOp"; } | ||
} | ||
} | ||
} |
Oops, something went wrong.