-
Notifications
You must be signed in to change notification settings - Fork 171
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 #82 from defenseunicorns/feature/everything-is-a-c…
…omponent Change zarf init to always install the docker registry
- Loading branch information
Showing
46 changed files
with
279 additions
and
293 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
File renamed without changes.
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,13 +1,13 @@ | ||
mirrors: | ||
registry.dso.mil: | ||
endpoint: | ||
- "https://zarf.localhost" | ||
- "https://127.0.0.1" | ||
registry1.dso.mil: | ||
endpoint: | ||
- "https://zarf.localhost" | ||
- "https://127.0.0.1" | ||
docker.io: | ||
endpoint: | ||
- "https://zarf.localhost" | ||
- "https://127.0.0.1" | ||
registry-1.docker.io: | ||
endpoint: | ||
- "https://zarf.localhost" | ||
- "https://127.0.0.1" |
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
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,22 +1,23 @@ | ||
module repo1.dso.mil/platform-one/big-bang/apps/product-tools/zarf/cli | ||
module github.com/defenseunicorns/zarf/cli | ||
|
||
go 1.16 | ||
|
||
require ( | ||
github.com/AlecAivazis/survey/v2 v2.2.15 | ||
github.com/containerd/containerd v1.5.4 | ||
github.com/fatih/color v1.12.0 | ||
github.com/AlecAivazis/survey/v2 v2.3.2 | ||
github.com/containerd/containerd v1.5.7 | ||
github.com/fatih/color v1.13.0 | ||
github.com/go-git/go-git/v5 v5.4.2 | ||
github.com/goccy/go-yaml v1.9.2 | ||
github.com/goccy/go-yaml v1.9.3 | ||
github.com/google/go-containerregistry v0.6.0 | ||
github.com/mattn/go-colorable v0.1.8 | ||
github.com/mattn/go-colorable v0.1.11 | ||
github.com/mholt/archiver/v3 v3.5.0 | ||
github.com/otiai10/copy v1.6.0 | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/spf13/cobra v1.2.1 | ||
github.com/ulikunitz/xz v0.5.8 // indirect; CVE-2020-16845 | ||
helm.sh/helm/v3 v3.6.1-0.20210719095234-663c5698878c | ||
k8s.io/api v0.21.2 | ||
k8s.io/apimachinery v0.21.2 | ||
k8s.io/client-go v0.21.2 | ||
k8s.io/api v0.21.5 | ||
k8s.io/apimachinery v0.21.5 | ||
k8s.io/client-go v0.21.5 | ||
rsc.io/letsencrypt v0.0.3 // indirect | ||
) |
Oops, something went wrong.