-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#208. config: Add SetComponents method to update the components in th…
…e private config. package/create.Create: Add logic to expand locally imported components within the parent build config. types: Add Import field to Zarf.Component as expirement (expected to change).
- Loading branch information
1 parent
e59c02a
commit c602e49
Showing
6 changed files
with
61 additions
and
1 deletion.
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
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 @@ | ||
registryCredentials: | ||
- registry: "registry1.dso.mil" | ||
username: "zarf-git-user" | ||
password: "###ZARF_REGISTRY_AUTH_PULL###" | ||
- registry: "docker.io" | ||
username: "zarf-git-user" | ||
password: "###ZARF_REGISTRY_AUTH_PULL###" | ||
- registry: "registry.dso.mil" | ||
username: "zarf-git-user" | ||
password: "###ZARF_REGISTRY_AUTH_PULL###" | ||
|
||
flux: | ||
interval: 1m | ||
rollback: | ||
cleanupOnFail: false |
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 @@ | ||
kind: ZarfPackageConfig | ||
metadata: | ||
name: flux | ||
description: "Zarf flux package." | ||
|
||
components: | ||
- name: baseline | ||
required: true | ||
secretName: "private-registry" | ||
manifests: | ||
- name: flux-installer | ||
# This will be built on the package create side and deployed as a regular manifest on package deploy | ||
kustomizations: | ||
- https://repo1.dso.mil/platform-one/big-bang/bigbang.git//base/flux?ref=1.17.0 | ||
images: | ||
# Flux images | ||
- registry1.dso.mil/ironbank/fluxcd/helm-controller:v0.11.0 | ||
- registry1.dso.mil/ironbank/fluxcd/kustomize-controller:v0.13.0 | ||
- registry1.dso.mil/ironbank/fluxcd/notification-controller:v0.15.0 | ||
- registry1.dso.mil/ironbank/fluxcd/source-controller:v0.14.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