-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from flanksource/docupdate
Doc update
- Loading branch information
Showing
32 changed files
with
1,205 additions
and
513 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[[source]] | ||
url = "https://pypi.org/simple" | ||
verify_ssl = true | ||
name = "pypi" | ||
|
||
[packages] | ||
jinja2 = "==3.1.0" | ||
mkdocs = "*" | ||
mkdocs-material = "*" | ||
markdown = "*" | ||
mkdocs-autolinks-plugin = "*" | ||
mkdocs-material-extensions = "*" | ||
mkdocs-markdownextradata-plugin = "*" | ||
mkdocs-nav-enhancements = "*" | ||
mkdocs-spellcheck = "*" | ||
|
||
[dev-packages] | ||
|
||
[requires] | ||
python_version = "3.8" |
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
By default the logging agent will be able to stream logs in realtime using the Kubernetes logging API. |
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 @@ | ||
# APM H |
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 @@ | ||
|
||
The Azure Devops scanner will create a new configuration item for each unique pipeline (combination of name and variables). | ||
|
||
Each time the pipeline is run it will create a change for that configuration item. | ||
|
||
```yaml | ||
azureDevops: | ||
- organization: <Org Name> | ||
personalAccessToken: | ||
valueFrom: | ||
secretKeyRef: | ||
name: ado-credentials | ||
key: TOKEN | ||
projects: | ||
- <Project Name> # leave empty to select all projects | ||
pipelines: | ||
- <Pipeline Name> # leave empty to select all pipelines | ||
type: Release # the change type the pipeline produces | ||
``` |
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,15 @@ | ||
## Configuration | ||
|
||
Mission Control is able to scan multiple configuration sources including | ||
|
||
- [AWS Cloud Resources](./aws) | ||
- [Azure Devops](./azure-devops.md) - Azure Devops Pipeline runs | ||
- [Files](./file) -On a local filesystem, git or HTTP) | ||
- [Files - Kubernetes](/kubernetes-file) - Files inside a running kubernetes pod | ||
- [SQL](./sql.md) - Data available via query on MySQL, SQL Server and Postgres databases | ||
|
||
Each configuration has: | ||
|
||
- Configuration - Normally JSON, but XML and properties files are also available | ||
- Insights - Security, cost, performance and other recommendations from scanners including AWS Trusted Adviosr, AWS Config rules, etc.. | ||
- Changes - Either changes directly on the config (recorded as diff change type) or changes identified via AWS Cloudtrail, etc... |
Oops, something went wrong.