-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8ed79a1
commit e718536
Showing
56 changed files
with
1,297 additions
and
266 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 @@ | ||
# action.yml | ||
name: "Setup Environment" | ||
description: "UDS Environment Setup" | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
|
||
- name: Set up Homebrew | ||
uses: Homebrew/actions/setup-homebrew@master | ||
|
||
- name: Install Zarf | ||
shell: bash | ||
# renovate: datasource=github-tags depName=defenseunicorns/zarf versioning=semver | ||
run: brew install defenseunicorns/tap/zarf@0.32.1 | ||
|
||
- name: Install UDS CLI | ||
shell: bash | ||
# renovate: datasource=github-tags depName=defenseunicorns/uds-cli versioning=semver | ||
run: brew install defenseunicorns/tap/uds@0.7.0 |
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,46 @@ | ||
{ | ||
"debug.javascript.terminalOptions": { | ||
"enableTurboSourcemaps": true, | ||
"resolveSourceMapLocations": [ | ||
"${workspaceFolder}/**", | ||
"node_modules/kubernetes-fluent-client/**", | ||
"node_modules/pepr/**" | ||
] | ||
}, | ||
"yaml.schemas": { | ||
// renovate: datasource=github-tags depName=defenseunicorns/uds-cli versioning=semver | ||
"https://raw.githubusercontent.com/defenseunicorns/uds-cli/v0.7.0/uds.schema.json": [ | ||
"uds-bundle.yaml" | ||
], | ||
|
||
// renovate: datasource=github-tags depName=defenseunicorns/uds-cli versioning=semver | ||
"https://raw.githubusercontent.com/defenseunicorns/uds-cli/v0.7.0/tasks.schema.json": [ | ||
"tasks.yaml", | ||
"tasks/**/*.yaml", | ||
"src/**/validate.yaml" | ||
], | ||
// renovate: datasource=github-tags depName=defenseunicorns/zarf versioning=semver | ||
"https://raw.githubusercontent.com/defenseunicorns/zarf/v0.32.1/zarf.schema.json": [ | ||
"zarf.yaml" | ||
] | ||
}, | ||
"cSpell.words": [ | ||
"alertmanager", | ||
"Authservice", | ||
"automount", | ||
"controlplane", | ||
"crds", | ||
"distros", | ||
"ironbank", | ||
"Kiali", | ||
"Kyverno", | ||
"MITM", | ||
"neuvector", | ||
"opensource", | ||
"promtail", | ||
"Quickstart", | ||
"seccomp", | ||
"Sysctls", | ||
"Velero" | ||
] | ||
} |
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.