-
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.
feat: add base and identity layers (#853)
* Adds UDS Core Base * Adds UDS Core Identity & Authorization Fixes #827 Fixes #828 Fixes #833 - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Other (security config, docs update, etc) - [ ] 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
32 changed files
with
287 additions
and
252 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,98 +1,12 @@ | ||
all: | ||
- "**" | ||
|
||
authservice: | ||
- "src/authservice/**" | ||
- "!**/*.md" | ||
- "!**/*.jpg" | ||
- "!**/*.png" | ||
- "!**/*.gif" | ||
- "!**/*.svg" | ||
|
||
grafana: | ||
- "src/grafana/**" | ||
- "!**/*.md" | ||
- "!**/*.jpg" | ||
- "!**/*.png" | ||
- "!**/*.gif" | ||
- "!**/*.svg" | ||
|
||
istio: | ||
base: | ||
- "packages/base/**" | ||
- "src/istio/**" | ||
- "!**/*.md" | ||
- "!**/*.jpg" | ||
- "!**/*.png" | ||
- "!**/*.gif" | ||
- "!**/*.svg" | ||
- "src/pepr/**" | ||
|
||
keycloak: | ||
identity-authorization: | ||
- "packages/identity-authorization/**" | ||
- "src/keycloak/**" | ||
- "!**/*.md" | ||
- "!**/*.jpg" | ||
- "!**/*.png" | ||
- "!**/*.gif" | ||
- "!**/*.svg" | ||
|
||
kiali: | ||
- "src/kiali/**" | ||
- "!**/*.md" | ||
- "!**/*.jpg" | ||
- "!**/*.png" | ||
- "!**/*.gif" | ||
- "!**/*.svg" | ||
|
||
loki: | ||
- "src/loki/**" | ||
- "!**/*.md" | ||
- "!**/*.jpg" | ||
- "!**/*.png" | ||
- "!**/*.gif" | ||
- "!**/*.svg" | ||
|
||
metrics-server: | ||
- "src/metrics-server/**" | ||
- "!**/*.md" | ||
- "!**/*.jpg" | ||
- "!**/*.png" | ||
- "!**/*.gif" | ||
- "!**/*.svg" | ||
|
||
neuvector: | ||
- "src/neuvector/**" | ||
- "!**/*.md" | ||
- "!**/*.jpg" | ||
- "!**/*.png" | ||
- "!**/*.gif" | ||
- "!**/*.svg" | ||
|
||
prometheus-stack: | ||
- "src/prometheus-stack/**" | ||
- "!**/*.md" | ||
- "!**/*.jpg" | ||
- "!**/*.png" | ||
- "!**/*.gif" | ||
- "!**/*.svg" | ||
|
||
vector: | ||
- "src/vector/**" | ||
- "!**/*.md" | ||
- "!**/*.jpg" | ||
- "!**/*.png" | ||
- "!**/*.gif" | ||
- "!**/*.svg" | ||
|
||
tempo: | ||
- "src/tempo/**" | ||
- "!**/*.md" | ||
- "!**/*.jpg" | ||
- "!**/*.png" | ||
- "!**/*.gif" | ||
- "!**/*.svg" | ||
|
||
velero: | ||
- "src/velero/**" | ||
- "!**/*.md" | ||
- "!**/*.jpg" | ||
- "!**/*.png" | ||
- "!**/*.gif" | ||
- "!**/*.svg" | ||
- "src/authservice/**" |
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
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,7 @@ | ||
# UDS Core Base | ||
|
||
This is the base layer of UDS Core required if deploying any other layers. Currently it includes the application(s): | ||
- Istio (and gateways) | ||
- UDS Operator and Policies (Pepr) | ||
|
||
As this is the base layer it can be deployed standalone for minimal functionality. |
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: | ||
- istio: ../../src/istio/tasks.yaml | ||
- pepr: ../../src/pepr/tasks.yaml | ||
|
||
tasks: | ||
- name: validate | ||
actions: | ||
- task: istio:validate | ||
- task: pepr: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
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,8 @@ | ||
# UDS Core Identity & Authorization | ||
|
||
This layer of UDS Core provides identity management and authorization capabilities. Currently it includes the application(s): | ||
- Keycloak (with custom plugin and realm) | ||
- AuthService | ||
|
||
To deploy this layer you must also deploy its dependent layer(s): | ||
- Base |
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: | ||
- keycloak: ../../src/keycloak/tasks.yaml | ||
- authservice: ../../src/authservice/tasks.yaml | ||
|
||
tasks: | ||
- name: validate | ||
actions: | ||
- task: keycloak:validate | ||
- task: authservice: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,22 @@ | ||
kind: ZarfPackageConfig | ||
metadata: | ||
name: core-identity-authorization | ||
description: "UDS Core (Identity & Authorization)" | ||
authors: "Defense Unicorns - Product" | ||
# x-release-please-start-version | ||
version: "0.28.0" | ||
# x-release-please-end | ||
x-uds-dependencies: ["base"] | ||
|
||
components: | ||
# Keycloak | ||
- name: keycloak | ||
required: true | ||
import: | ||
path: ../../src/keycloak | ||
|
||
# Authservice | ||
- name: authservice | ||
required: true | ||
import: | ||
path: ../../src/authservice |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.