-
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.
* Adding a simple zarf file and corresponding uds task for building it * revert change to version * pinning version of sed, removing multi-arch build assumption * task -> cmd * add zarf build test * adjusting builder image base, removing pinned sed * Adding .vscode settings and some renovate config to track zarf/uds schema versions * updating docs * remove unused renovate config settings
- Loading branch information
1 parent
47651d9
commit 3cc2ee7
Showing
9 changed files
with
95 additions
and
2 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 |
---|---|---|
|
@@ -13,3 +13,4 @@ test.cer | |
test.csr | ||
test.pem | ||
*authorized_certs* | ||
src/extra-jars/ |
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,33 @@ | ||
{ | ||
"yaml.schemas": { | ||
"https://raw.githubusercontent.com/defenseunicorns/uds-cli/v0.9.2/tasks.schema.json": [ | ||
"tasks.yaml", | ||
"tasks/**/*.yaml", | ||
"src/**/validate.yaml" | ||
], | ||
"https://raw.githubusercontent.com/defenseunicorns/uds-cli/v0.9.2/zarf.schema.json": [ | ||
"zarf.yaml" | ||
] | ||
}, | ||
"cSpell.words": [ | ||
"alertmanager", | ||
"Authservice", | ||
"automount", | ||
"controlplane", | ||
"crds", | ||
"distros", | ||
"ironbank", | ||
"Kiali", | ||
"Kyverno", | ||
"MITM", | ||
"neuvector", | ||
"opensource", | ||
"promtail", | ||
"Quarkus", | ||
"Quickstart", | ||
"seccomp", | ||
"Sysctls", | ||
"Velero" | ||
], | ||
"cSpell.enabled": true | ||
} |
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,15 @@ | ||
kind: ZarfPackageConfig | ||
metadata: | ||
name: keycloak-identity-config | ||
version: "0.0.1" | ||
|
||
constants: | ||
- name: IDENTIFY_CONFIG_IMG | ||
description: "Image name and tag (MUST BE PROVIDED -- no default)" | ||
value: '###ZARF_PKG_TMPL_IDENTITY_CONFIG_IMG###' | ||
|
||
components: | ||
- name: keycloak-config-wrapper | ||
required: true | ||
images: | ||
- '###ZARF_PKG_TMPL_IDENTITY_CONFIG_IMG###' |