-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Austin Abro <[email protected]>
- Loading branch information
1 parent
00fb308
commit 7c3c6be
Showing
7 changed files
with
162 additions
and
107 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,15 @@ | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
creationTimestamp: null | ||
name: zarf-credentials | ||
namespace: bigbang | ||
stringData: | ||
values.yaml: "\nregistryCredentials:\n registry: \"###ZARF_REGISTRY###\"\n username: | ||
\"zarf-pull\"\n password: \"###ZARF_REGISTRY_AUTH_PULL###\"\ngit:\n existingSecret: | ||
\"private-git-server\"\t# -- Chart created secrets with user defined values\n | ||
\ credentials:\n # -- HTTP git credentials, both username and password must be | ||
provided\n username: \"###ZARF_GIT_PUSH###\"\n password: \"###ZARF_GIT_AUTH_PUSH###\"\n# | ||
-- Big Bang v2 Kyverno Support\nkyvernoPolicies:\n values:\n exclude:\n any:\n | ||
\ - resources:\n namespaces:\n - zarf # don't have Kyverno | ||
prevent Zarf from doing zarf things\n " |
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,14 @@ | ||
apiVersion: source.toolkit.fluxcd.io/v1 | ||
kind: GitRepository | ||
metadata: | ||
name: bigbang | ||
spec: | ||
ignore: | | ||
# exclude file extensions | ||
/**/*.md | ||
/**/*.txt | ||
/**/*.sh | ||
interval: 10m | ||
url: https://repo1.dso.mil/big-bang/bigbang.git | ||
ref: | ||
tag: 2.35.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
apiVersion: helm.toolkit.fluxcd.io/v2 | ||
kind: HelmRelease | ||
metadata: | ||
name: bigbang | ||
spec: | ||
chart: | ||
spec: | ||
chart: chart | ||
sourceRef: | ||
kind: GitRepository | ||
name: bigbang | ||
install: | ||
remediation: | ||
retries: -1 | ||
interval: 10m | ||
releaseName: bigbang | ||
rollback: | ||
cleanupOnFail: false | ||
timeout: 10m | ||
targetNamespace: bigbang | ||
test: | ||
enable: false | ||
upgrade: | ||
cleanupOnFail: true | ||
remediation: | ||
remediateLastFailure: true | ||
retries: 5 | ||
valuesFrom: | ||
- kind: Secret | ||
name: zarf-credentials | ||
- kind: Secret | ||
name: bb-usr-vals-0-ingress | ||
- kind: ConfigMap | ||
name: kyverno-config | ||
- kind: ConfigMap | ||
name: loki-config | ||
- kind: Secret | ||
name: bb-usr-vals-0-ingress |
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
Oops, something went wrong.