-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Description Adds the monitoring functional layer ## Related Issue Fixes #829 ## Type of change - [ ] Bug fix (non-breaking change which fixes an issue) - [x] New feature (non-breaking change which adds functionality) - [ ] Other (security config, docs update, etc) ## Checklist before merging - [ ] Test, docs, adr added or updated as needed - [ ] [Contributor Guide](https://github.com/defenseunicorns/uds-template-capability/blob/main/CONTRIBUTING.md) followed --------- Co-authored-by: Micah Nagel <micah.nagel@defenseunicorns.com>
- Loading branch information
Showing
7 changed files
with
48 additions
and
3 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,9 @@ | ||
# UDS Core Monitoring | ||
|
||
This layer of UDS Core provides monitoring capabilities. Currently it includes the application(s): | ||
- grafana | ||
- prometheus | ||
|
||
To deploy this layer you must also deploy its dependent layer(s): | ||
- base | ||
- identity-authorization |
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,9 @@ | ||
includes: | ||
- prometheus: ../../src/prometheus-stack/tasks.yaml | ||
- grafana: ../../src/grafana/tasks.yaml | ||
|
||
tasks: | ||
- name: validate | ||
actions: | ||
- task: prometheus:validate | ||
- task: grafana:validate |
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 @@ | ||
kind: ZarfPackageConfig | ||
metadata: | ||
name: core-monitoring | ||
description: "UDS Core Monitoring (Prometheus and Grafana)" | ||
authors: "Defense Unicorns - Product" | ||
# x-release-please-start-version | ||
version: "0.28.0" | ||
# x-release-please-end | ||
x-uds-dependencies: ["base", "identity-authorization"] | ||
|
||
components: | ||
# Prometheus | ||
- name: kube-prometheus-stack | ||
required: true | ||
import: | ||
path: ../../src/prometheus-stack | ||
# Grafana | ||
- name: grafana | ||
required: true | ||
import: | ||
path: ../../src/grafana |
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