-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Small fix on Secrets JSON Keys * Working logging parameters * Added docs
- Loading branch information
1 parent
3366600
commit 5e1ab08
Showing
23 changed files
with
341 additions
and
133 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 was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
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,34 @@ | ||
.. _x_configs_logging_syntax_reference: | ||
|
||
========= | ||
x-logging | ||
========= | ||
|
||
.. contents:: | ||
|
||
Section to allow passing in arguments for logging. | ||
|
||
RetentionInDays | ||
===================== | ||
|
||
Value to indicate how long should the logs be retained for the service. | ||
|
||
.. note:: | ||
|
||
If the value you enter is not in the allowed values, will set to the closest accepted value. | ||
|
||
|
||
.. hint:: Emulates the CW Logs property `RetentionInDays Property`_ | ||
|
||
|
||
|
||
CreateLogGroup | ||
=============== | ||
|
||
Allows you to define whether or not you want ComposeX to create the LogGroup. | ||
If set to False, it will grant *logs:CreateLogGroup* to the Execution Role. | ||
It will also define in the *awslogs driver* (`awslogs driver documentation`_) and set **awslogs-create-group** to True | ||
|
||
|
||
.. _RetentionInDays Property: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-logs-loggroup-retentionindays | ||
.. _awslogs driver documentation: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_awslogs.html |
File renamed without changes.
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,27 @@ | ||
.. _xray_syntax_reference: | ||
|
||
===== | ||
xray | ||
===== | ||
|
||
This section allows to enable X-Ray to run right next to your container. | ||
It will use the AWS original image for X-Ray Daemon and exposes the ports to the task. | ||
|
||
Example: | ||
|
||
.. code-block:: yaml | ||
x-configs: | ||
composex: | ||
xray: | ||
enabled: true | ||
services: | ||
serviceA: | ||
x-configs: | ||
xray: | ||
enabled: True | ||
.. seealso:: | ||
|
||
ecs_composex.ecs.ecs_service#set_xray |
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
Oops, something went wrong.