├── .gitignore ├── .gitlab └── base_config.md.gotmpl ├── CHANGELOG.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── base ├── flux │ ├── gotk-components.yaml │ └── kustomization.yaml ├── gitrepository.yaml ├── helmrelease.yaml ├── kustomization.yaml ├── namespace.yaml └── transformer.yaml ├── blog ├── .pages ├── 2-0-breaking-changes.md ├── 2-0-new-features.md ├── 2-41-Release.md ├── 2-42-Release.md ├── UI-for-your-K8s-Cluster.md ├── assets │ └── images │ │ └── UI-for-your-K8s-Cluster │ │ ├── Flux_actions.png │ │ ├── flux_hr_snapshot.png │ │ ├── pods_snapshot.png │ │ ├── rbac.png │ │ └── visualization.png ├── bb-3-0-operatorless-istio-migration.md ├── big-bang-2-0.md ├── big-bang-3-0.md ├── cypress-testing.md ├── dev-bigbang-mil-certificate.md ├── headlamp.md ├── images-v2-metadata-files.md └── streamlining-integration-with-bb-common.md ├── chart ├── .helmignore ├── Chart.yaml ├── dashboards │ └── flux │ │ ├── Kptfile │ │ ├── cluster.json │ │ ├── control-plane.json │ │ └── logs.json ├── ingress-certs.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── _self-test │ │ └── render.yaml │ ├── alloy │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ └── values.yaml │ ├── anchore-enterprise │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ ├── secret-ca.yaml │ │ └── values.yaml │ ├── argocd │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ ├── secret-ca.yaml │ │ └── values.yaml │ ├── authservice │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ └── values.yaml │ ├── backstage │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ ├── secret-ca.yaml │ │ └── values.yaml │ ├── bbctl │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ └── values.yaml │ ├── eck-operator │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ └── values.yaml │ ├── elasticsearch-kibana │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ ├── secret-ca.yaml │ │ └── values.yaml │ ├── external-secrets │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ └── values.yaml │ ├── fluentbit │ │ ├── _postrenderers.tpl │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ └── values.yaml │ ├── fortify │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ └── values.yaml │ ├── gatekeeper │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ └── values.yaml │ ├── git-credentials.yaml │ ├── gitlab-runner │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ └── values.yaml │ ├── gitlab │ │ ├── _postrenderers.tpl │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ ├── secret-ca.yaml │ │ ├── secret-database.yaml │ │ ├── secret-objectstore.yaml │ │ ├── secret-rails.yaml │ │ ├── secret-redis-bb.yaml │ │ ├── secret-smtp.yaml │ │ ├── secret-sso.yaml │ │ └── values.yaml │ ├── grafana │ │ ├── _postrenderers.tpl │ │ ├── flux-dashboards.yaml │ │ ├── flux │ │ │ ├── alert.yaml │ │ │ ├── grafana-auth-secret.yaml │ │ │ ├── ingress-flux.yaml │ │ │ └── provider.yaml │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── grafana-env-secret.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ ├── secret-ca.yaml │ │ ├── secret-sso.yaml │ │ └── values.yaml │ ├── haproxy │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ └── values.yaml │ ├── harbor │ │ ├── _postrenderers.tpl │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ └── values.yaml │ ├── headlamp │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ ├── secret-ca.yaml │ │ ├── sso-client-secret.yaml │ │ └── values.yaml │ ├── helm-repository │ │ ├── cosignsecret.yaml │ │ ├── helmrepo.yaml │ │ ├── helmreposecret.yaml │ │ └── imagepullsecret.yaml │ ├── istio-cni │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ └── values.yaml │ ├── istio-crds │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ └── values.yaml │ ├── istio-gateway │ │ ├── _defaults.tpl │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── secret-tls.yaml │ │ └── values.yaml │ ├── istiod │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ └── values.yaml │ ├── keycloak │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ └── values.yaml │ ├── kiali │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── grafana-auth-secret.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ ├── secret-ca.yaml │ │ ├── sso-client-secret.yaml │ │ └── values.yaml │ ├── kyverno-policies │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ └── values.yaml │ ├── kyverno-reporter │ │ ├── _postrenderers.tpl │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ └── values.yaml │ ├── kyverno │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ └── values.yaml │ ├── loki │ │ ├── _postrenderers.yaml │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ └── values.yaml │ ├── mattermost-operator │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ └── values.yaml │ ├── mattermost │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ ├── secret-ca.yaml │ │ ├── secret-database.yaml │ │ ├── secret-objectstore.yaml │ │ └── values.yaml │ ├── metrics-server │ │ ├── _postrenderers.tpl │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ └── values.yaml │ ├── mimir │ │ ├── _postrenderers.tpl │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ ├── secret-objectstore.yaml │ │ └── values.yaml │ ├── minio-operator │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ └── values.yaml │ ├── minio │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ └── values.yaml │ ├── monitoring │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── grafana-env-secret.yaml │ │ ├── helmrelease.yaml │ │ ├── secret-ca.yaml │ │ ├── secret-objectstore.yaml │ │ └── values.yaml │ ├── neuvector │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ ├── secret-ca.yaml │ │ └── values.yaml │ ├── nexus-repository-manager │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ ├── secret-ca.yaml │ │ └── values.yaml │ ├── package │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── kustomization.yaml │ │ ├── namespace.yaml │ │ └── values.yaml │ ├── prometheus-operator-crds │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ └── values.yaml │ ├── secrets │ │ ├── certificateauthority.yaml │ │ └── imagepullsecret.yaml │ ├── sonarqube │ │ ├── _postrenderers.tpl │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ ├── secret-ca.yaml │ │ ├── secret-database.yaml │ │ └── values.yaml │ ├── tempo │ │ ├── _postrenderers.tpl │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ ├── secret-objectstore.yaml │ │ └── values.yaml │ ├── thanos │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ └── values.yaml │ ├── twistlock │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ └── values.yaml │ ├── vault │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ └── values.yaml │ ├── velero │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ ├── imagepullsecret.yaml │ │ ├── namespace.yaml │ │ └── values.yaml │ └── wrapper │ │ ├── git-credentials.yaml │ │ ├── gitrepository.yaml │ │ ├── helmrelease.yaml │ │ └── values.yaml ├── unittests │ ├── packages │ │ ├── kiali │ │ │ ├── serviceentries_test.yaml │ │ │ └── values_test.yaml │ │ ├── loki │ │ │ └── helmrelease_test.yaml │ │ ├── mimir │ │ │ └── helmrelease_test.yaml │ │ ├── monitoring │ │ │ └── values_test.yaml │ │ └── package │ │ │ └── values_test.yaml │ ├── schema │ │ ├── addons_test.yaml │ │ ├── base-package-git_test.yaml │ │ ├── base-package-helm-repo_test.yaml │ │ ├── base-package-source-type_test.yaml │ │ ├── base-package-sso_test.yaml │ │ ├── base-package_test.yaml │ │ ├── flux_test.yaml │ │ ├── git_test.yaml │ │ ├── monitoring_test.yaml │ │ ├── registry-credentials_test.yaml │ │ └── umbrella_test.yaml │ └── templates │ │ ├── bigbang.istio-gateway.generate-ingress-netpols_test.yaml │ │ ├── bigbang.istio-gateway.ingress-netpol-spec_test.yaml │ │ └── kyverno-merged-policies_test.yaml ├── values.schema.json └── values.yaml ├── docs ├── .pages ├── community │ ├── .pages │ ├── adrs │ │ ├── .pages │ │ ├── 0001-public-adrs.md │ │ ├── 0002-package-standardization.md │ │ ├── 0003-single-package-mapping.md │ │ ├── 0004-alloy-replacing-promtail.md │ │ ├── 0005-passthrough-chart.md │ │ ├── 0006-drift-detection.md │ │ ├── 0007-dev-defaults.md │ │ └── 0008-generate-images-metadata-from-explicit-container-image-references.md │ └── development │ │ ├── .pages │ │ ├── aws-k3d-script.md │ │ ├── ci-workflow.md │ │ ├── dev-oci-workflow.md │ │ ├── develop-package.md │ │ ├── development-environment.md │ │ ├── helm-unittests.md │ │ ├── index.md │ │ ├── k3d-keys-for-testing.md │ │ ├── k8s-storage.md │ │ ├── mdo-partybus-pipelines.md │ │ ├── oscal-contributing.md │ │ ├── package-integration │ │ ├── .pages │ │ ├── bigbang-merge-request.md │ │ ├── database.md │ │ ├── documentation.md │ │ ├── flux.md │ │ ├── helm-standards.md │ │ ├── index.md │ │ ├── istio-hardened.md │ │ ├── monitoring.md │ │ ├── network-policies.md │ │ ├── ownership.md │ │ ├── pipeline.md │ │ ├── policy-enforcement.md │ │ ├── service-mesh.md │ │ ├── sso.md │ │ ├── storage.md │ │ ├── supported.md │ │ ├── testing.md │ │ └── upstream.md │ │ ├── postrenderers.md │ │ ├── release-process.md │ │ ├── renovate-maintenance.md │ │ ├── self-testing.md │ │ ├── test-package-against-bb.md │ │ ├── testing-repo1-CI.md │ │ ├── testing.md │ │ └── vendor-distro-integration.md ├── concepts │ ├── .pages │ ├── architecture.md │ ├── deployment.md │ ├── encryption.md │ ├── git-ops-engine.md │ ├── git-ops-workflow.md │ ├── glossary.md │ ├── index.md │ ├── kyverno-use-by-apps.md │ ├── licensing.md │ ├── logging.md │ ├── package-management.md │ ├── security-model.md │ ├── style.md │ ├── testing.md │ └── values-guide.md ├── configuration │ ├── .pages │ ├── base-config.md │ ├── configuration.md │ ├── default-credentials.md │ ├── network-policies.md │ ├── postrenderers.md │ └── sample-prod-config.md ├── getting-started │ ├── .pages │ ├── faq.md │ ├── first-deployment.md │ ├── overview.md │ ├── prerequisites.md │ └── quick-start.md ├── index.md ├── installation │ ├── .pages │ ├── environments │ │ ├── .pages │ │ ├── airgap-zarf.md │ │ ├── airgap.md │ │ ├── appliance-mode.md │ │ ├── extra-package-deployment.md │ │ ├── multiple-ingress.md │ │ ├── quick-start.md │ │ └── sso-quickstart.md │ └── index.md ├── migration │ ├── .pages │ └── migrating-istio-for-bb3.0.md ├── operations │ ├── .pages │ ├── backup-restore.md │ ├── index.md │ ├── maintenance │ │ ├── .pages │ │ └── renovate.md │ ├── monitoring.md │ ├── troubleshooting │ │ ├── .pages │ │ ├── index.md │ │ ├── installation.md │ │ ├── networking.md │ │ ├── packages.md │ │ ├── performance.md │ │ └── upgrades.md │ └── upgrades.md ├── packages │ ├── .pages │ ├── addons │ │ ├── .pages │ │ ├── anchore.md │ │ ├── argocd.md │ │ ├── authservice.md │ │ ├── backstage.md │ │ ├── external-secrets-operator.md │ │ ├── fortify.md │ │ ├── gitlab.md │ │ ├── harbor.md │ │ ├── keycloak.md │ │ ├── mattermost.md │ │ ├── metricserver.md │ │ ├── mimir.md │ │ ├── minio.md │ │ ├── nexus-repository-manager.md │ │ ├── sonarqube.md │ │ ├── vault.md │ │ └── velero.md │ ├── categorization.md │ ├── community │ │ └── .pages │ ├── core │ │ ├── .pages │ │ ├── alloy.md │ │ ├── elasticsearch-kibana.md │ │ ├── fluentbit.md │ │ ├── istio.md │ │ ├── kiali.md │ │ ├── kyverno.md │ │ ├── loki.md │ │ ├── monitoring.md │ │ ├── neuvector.md │ │ ├── opa-gatekeeper.md │ │ ├── tempo.md │ │ └── twistlock.md │ ├── index.md │ ├── package-development │ │ ├── .pages │ │ └── index.md │ └── ref-package.md ├── reference │ ├── configs │ │ ├── appliance-mode │ │ │ └── values.yaml │ │ ├── example │ │ │ ├── dev-sso-values.yaml │ │ │ ├── git-repo-values.yaml │ │ │ ├── google-auth-example-values.yaml │ │ │ ├── policy-overrides-k3d.yaml │ │ │ ├── public-ingressgateway-cert.yaml │ │ │ └── vault-production-values.yaml │ │ ├── k8s-storage │ │ │ ├── benchmark.yaml │ │ │ └── rwx-test.yaml │ │ └── zarf │ │ │ ├── config │ │ │ ├── custom.yaml │ │ │ └── kyverno.yaml │ │ │ ├── metallb │ │ │ ├── config.yaml │ │ │ ├── metallb-native-0.13.9.yaml │ │ │ └── zarf.yaml │ │ │ ├── virtualservices │ │ │ └── gitea.yaml │ │ │ └── zarf.yaml │ ├── diagrams │ │ └── developer │ │ │ ├── bb-gitlab-ci-diagram.drawio │ │ │ └── dev_ci_workflow.drawio │ ├── scripts │ │ ├── airgap-dev │ │ │ ├── airgap.sh │ │ │ ├── config.toml.tmpl │ │ │ ├── copy-containerd-config.yaml │ │ │ ├── deploy-images.sh │ │ │ ├── images.txt │ │ │ ├── package-images.sh │ │ │ ├── package-repos.sh │ │ │ ├── registry-config.yaml │ │ │ ├── registry.sh │ │ │ └── values.yaml │ │ ├── airgap-zarf │ │ │ └── zarf-dev.sh │ │ ├── developer │ │ │ ├── aws-mfa.sh │ │ │ ├── k3d-dev.sh │ │ │ ├── metallb │ │ │ │ └── kustomization.yaml │ │ │ ├── mfa-aws-creds-example │ │ │ └── weave │ │ │ │ ├── README-weave.md │ │ │ │ ├── machine-id-agent-0 │ │ │ │ ├── machine-id-agent-1 │ │ │ │ ├── machine-id-agent-2 │ │ │ │ ├── machine-id-server-0 │ │ │ │ └── weave.yaml │ │ └── quickstart.sh │ └── terraform │ │ └── airgap-dev │ │ ├── README.md │ │ ├── main.tf │ │ └── variables.tf └── tutorials │ ├── .pages │ ├── big-bang-deployment-uninstall-cleanup.md │ ├── pod-usage-in-grafana.md │ └── signed-helm-repositories.md ├── oscal-component.yaml ├── renovate.json ├── scripts ├── install_flux.sh ├── remove-ns-finalizer.sh ├── schema-refresh.sh ├── sync.sh └── template-all.sh └── tests ├── disable-core-values.yaml ├── eks-test-values.yaml ├── images.txt ├── oci-values.yaml ├── openshift-test-values.yaml ├── package-mapping.yaml ├── rke2-test-values.yaml └── test-values.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab/base_config.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/.gitlab/base_config.md.gotmpl -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/README.md -------------------------------------------------------------------------------- /base/flux/gotk-components.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/base/flux/gotk-components.yaml -------------------------------------------------------------------------------- /base/flux/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/base/flux/kustomization.yaml -------------------------------------------------------------------------------- /base/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/base/gitrepository.yaml -------------------------------------------------------------------------------- /base/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/base/helmrelease.yaml -------------------------------------------------------------------------------- /base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/base/kustomization.yaml -------------------------------------------------------------------------------- /base/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: bigbang -------------------------------------------------------------------------------- /base/transformer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/base/transformer.yaml -------------------------------------------------------------------------------- /blog/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/blog/.pages -------------------------------------------------------------------------------- /blog/2-0-breaking-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/blog/2-0-breaking-changes.md -------------------------------------------------------------------------------- /blog/2-0-new-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/blog/2-0-new-features.md -------------------------------------------------------------------------------- /blog/2-41-Release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/blog/2-41-Release.md -------------------------------------------------------------------------------- /blog/2-42-Release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/blog/2-42-Release.md -------------------------------------------------------------------------------- /blog/UI-for-your-K8s-Cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/blog/UI-for-your-K8s-Cluster.md -------------------------------------------------------------------------------- /blog/assets/images/UI-for-your-K8s-Cluster/Flux_actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/blog/assets/images/UI-for-your-K8s-Cluster/Flux_actions.png -------------------------------------------------------------------------------- /blog/assets/images/UI-for-your-K8s-Cluster/flux_hr_snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/blog/assets/images/UI-for-your-K8s-Cluster/flux_hr_snapshot.png -------------------------------------------------------------------------------- /blog/assets/images/UI-for-your-K8s-Cluster/pods_snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/blog/assets/images/UI-for-your-K8s-Cluster/pods_snapshot.png -------------------------------------------------------------------------------- /blog/assets/images/UI-for-your-K8s-Cluster/rbac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/blog/assets/images/UI-for-your-K8s-Cluster/rbac.png -------------------------------------------------------------------------------- /blog/assets/images/UI-for-your-K8s-Cluster/visualization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/blog/assets/images/UI-for-your-K8s-Cluster/visualization.png -------------------------------------------------------------------------------- /blog/bb-3-0-operatorless-istio-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/blog/bb-3-0-operatorless-istio-migration.md -------------------------------------------------------------------------------- /blog/big-bang-2-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/blog/big-bang-2-0.md -------------------------------------------------------------------------------- /blog/big-bang-3-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/blog/big-bang-3-0.md -------------------------------------------------------------------------------- /blog/cypress-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/blog/cypress-testing.md -------------------------------------------------------------------------------- /blog/dev-bigbang-mil-certificate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/blog/dev-bigbang-mil-certificate.md -------------------------------------------------------------------------------- /blog/headlamp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/blog/headlamp.md -------------------------------------------------------------------------------- /blog/images-v2-metadata-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/blog/images-v2-metadata-files.md -------------------------------------------------------------------------------- /blog/streamlining-integration-with-bb-common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/blog/streamlining-integration-with-bb-common.md -------------------------------------------------------------------------------- /chart/.helmignore: -------------------------------------------------------------------------------- 1 | unittests -------------------------------------------------------------------------------- /chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/Chart.yaml -------------------------------------------------------------------------------- /chart/dashboards/flux/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/dashboards/flux/Kptfile -------------------------------------------------------------------------------- /chart/dashboards/flux/cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/dashboards/flux/cluster.json -------------------------------------------------------------------------------- /chart/dashboards/flux/control-plane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/dashboards/flux/control-plane.json -------------------------------------------------------------------------------- /chart/dashboards/flux/logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/dashboards/flux/logs.json -------------------------------------------------------------------------------- /chart/ingress-certs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/ingress-certs.yaml -------------------------------------------------------------------------------- /chart/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/NOTES.txt -------------------------------------------------------------------------------- /chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /chart/templates/_self-test/render.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/_self-test/render.yaml -------------------------------------------------------------------------------- /chart/templates/alloy/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/alloy/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/alloy/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/alloy/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/alloy/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/alloy/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/alloy/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/alloy/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/alloy/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/alloy/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/alloy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/alloy/values.yaml -------------------------------------------------------------------------------- /chart/templates/anchore-enterprise/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/anchore-enterprise/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/anchore-enterprise/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/anchore-enterprise/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/anchore-enterprise/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/anchore-enterprise/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/anchore-enterprise/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/anchore-enterprise/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/anchore-enterprise/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/anchore-enterprise/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/anchore-enterprise/secret-ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/anchore-enterprise/secret-ca.yaml -------------------------------------------------------------------------------- /chart/templates/anchore-enterprise/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/anchore-enterprise/values.yaml -------------------------------------------------------------------------------- /chart/templates/argocd/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/argocd/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/argocd/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/argocd/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/argocd/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/argocd/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/argocd/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/argocd/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/argocd/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/argocd/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/argocd/secret-ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/argocd/secret-ca.yaml -------------------------------------------------------------------------------- /chart/templates/argocd/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/argocd/values.yaml -------------------------------------------------------------------------------- /chart/templates/authservice/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/authservice/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/authservice/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/authservice/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/authservice/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/authservice/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/authservice/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/authservice/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/authservice/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/authservice/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/authservice/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/authservice/values.yaml -------------------------------------------------------------------------------- /chart/templates/backstage/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/backstage/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/backstage/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/backstage/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/backstage/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/backstage/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/backstage/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/backstage/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/backstage/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/backstage/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/backstage/secret-ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/backstage/secret-ca.yaml -------------------------------------------------------------------------------- /chart/templates/backstage/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/backstage/values.yaml -------------------------------------------------------------------------------- /chart/templates/bbctl/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/bbctl/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/bbctl/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/bbctl/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/bbctl/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/bbctl/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/bbctl/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/bbctl/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/bbctl/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/bbctl/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/bbctl/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/bbctl/values.yaml -------------------------------------------------------------------------------- /chart/templates/eck-operator/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/eck-operator/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/eck-operator/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/eck-operator/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/eck-operator/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/eck-operator/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/eck-operator/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/eck-operator/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/eck-operator/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/eck-operator/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/eck-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/eck-operator/values.yaml -------------------------------------------------------------------------------- /chart/templates/elasticsearch-kibana/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/elasticsearch-kibana/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/elasticsearch-kibana/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/elasticsearch-kibana/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/elasticsearch-kibana/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/elasticsearch-kibana/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/elasticsearch-kibana/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/elasticsearch-kibana/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/elasticsearch-kibana/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/elasticsearch-kibana/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/elasticsearch-kibana/secret-ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/elasticsearch-kibana/secret-ca.yaml -------------------------------------------------------------------------------- /chart/templates/elasticsearch-kibana/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/elasticsearch-kibana/values.yaml -------------------------------------------------------------------------------- /chart/templates/external-secrets/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/external-secrets/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/external-secrets/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/external-secrets/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/external-secrets/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/external-secrets/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/external-secrets/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/external-secrets/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/external-secrets/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/external-secrets/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/external-secrets/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/external-secrets/values.yaml -------------------------------------------------------------------------------- /chart/templates/fluentbit/_postrenderers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/fluentbit/_postrenderers.tpl -------------------------------------------------------------------------------- /chart/templates/fluentbit/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/fluentbit/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/fluentbit/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/fluentbit/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/fluentbit/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/fluentbit/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/fluentbit/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/fluentbit/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/fluentbit/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/fluentbit/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/fluentbit/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/fluentbit/values.yaml -------------------------------------------------------------------------------- /chart/templates/fortify/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/fortify/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/fortify/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/fortify/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/fortify/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/fortify/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/fortify/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/fortify/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/fortify/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/fortify/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/fortify/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/fortify/values.yaml -------------------------------------------------------------------------------- /chart/templates/gatekeeper/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gatekeeper/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/gatekeeper/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gatekeeper/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/gatekeeper/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gatekeeper/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/gatekeeper/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gatekeeper/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/gatekeeper/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gatekeeper/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/gatekeeper/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gatekeeper/values.yaml -------------------------------------------------------------------------------- /chart/templates/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/gitlab-runner/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gitlab-runner/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/gitlab-runner/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gitlab-runner/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/gitlab-runner/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gitlab-runner/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/gitlab-runner/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gitlab-runner/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/gitlab-runner/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gitlab-runner/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/gitlab-runner/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gitlab-runner/values.yaml -------------------------------------------------------------------------------- /chart/templates/gitlab/_postrenderers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gitlab/_postrenderers.tpl -------------------------------------------------------------------------------- /chart/templates/gitlab/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gitlab/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/gitlab/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gitlab/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/gitlab/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gitlab/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/gitlab/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gitlab/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/gitlab/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gitlab/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/gitlab/secret-ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gitlab/secret-ca.yaml -------------------------------------------------------------------------------- /chart/templates/gitlab/secret-database.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gitlab/secret-database.yaml -------------------------------------------------------------------------------- /chart/templates/gitlab/secret-objectstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gitlab/secret-objectstore.yaml -------------------------------------------------------------------------------- /chart/templates/gitlab/secret-rails.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gitlab/secret-rails.yaml -------------------------------------------------------------------------------- /chart/templates/gitlab/secret-redis-bb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gitlab/secret-redis-bb.yaml -------------------------------------------------------------------------------- /chart/templates/gitlab/secret-smtp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gitlab/secret-smtp.yaml -------------------------------------------------------------------------------- /chart/templates/gitlab/secret-sso.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gitlab/secret-sso.yaml -------------------------------------------------------------------------------- /chart/templates/gitlab/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/gitlab/values.yaml -------------------------------------------------------------------------------- /chart/templates/grafana/_postrenderers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/grafana/_postrenderers.tpl -------------------------------------------------------------------------------- /chart/templates/grafana/flux-dashboards.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/grafana/flux-dashboards.yaml -------------------------------------------------------------------------------- /chart/templates/grafana/flux/alert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/grafana/flux/alert.yaml -------------------------------------------------------------------------------- /chart/templates/grafana/flux/grafana-auth-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/grafana/flux/grafana-auth-secret.yaml -------------------------------------------------------------------------------- /chart/templates/grafana/flux/ingress-flux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/grafana/flux/ingress-flux.yaml -------------------------------------------------------------------------------- /chart/templates/grafana/flux/provider.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/grafana/flux/provider.yaml -------------------------------------------------------------------------------- /chart/templates/grafana/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/grafana/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/grafana/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/grafana/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/grafana/grafana-env-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/grafana/grafana-env-secret.yaml -------------------------------------------------------------------------------- /chart/templates/grafana/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/grafana/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/grafana/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/grafana/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/grafana/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/grafana/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/grafana/secret-ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/grafana/secret-ca.yaml -------------------------------------------------------------------------------- /chart/templates/grafana/secret-sso.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/grafana/secret-sso.yaml -------------------------------------------------------------------------------- /chart/templates/grafana/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/grafana/values.yaml -------------------------------------------------------------------------------- /chart/templates/haproxy/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/haproxy/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/haproxy/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/haproxy/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/haproxy/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/haproxy/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/haproxy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/haproxy/values.yaml -------------------------------------------------------------------------------- /chart/templates/harbor/_postrenderers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/harbor/_postrenderers.tpl -------------------------------------------------------------------------------- /chart/templates/harbor/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/harbor/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/harbor/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/harbor/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/harbor/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/harbor/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/harbor/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/harbor/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/harbor/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/harbor/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/harbor/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/harbor/values.yaml -------------------------------------------------------------------------------- /chart/templates/headlamp/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/headlamp/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/headlamp/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/headlamp/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/headlamp/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/headlamp/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/headlamp/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/headlamp/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/headlamp/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/headlamp/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/headlamp/secret-ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/headlamp/secret-ca.yaml -------------------------------------------------------------------------------- /chart/templates/headlamp/sso-client-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/headlamp/sso-client-secret.yaml -------------------------------------------------------------------------------- /chart/templates/headlamp/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/headlamp/values.yaml -------------------------------------------------------------------------------- /chart/templates/helm-repository/cosignsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/helm-repository/cosignsecret.yaml -------------------------------------------------------------------------------- /chart/templates/helm-repository/helmrepo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/helm-repository/helmrepo.yaml -------------------------------------------------------------------------------- /chart/templates/helm-repository/helmreposecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/helm-repository/helmreposecret.yaml -------------------------------------------------------------------------------- /chart/templates/helm-repository/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/helm-repository/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/istio-cni/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/istio-cni/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/istio-cni/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/istio-cni/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/istio-cni/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/istio-cni/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/istio-cni/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/istio-cni/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/istio-cni/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/istio-cni/values.yaml -------------------------------------------------------------------------------- /chart/templates/istio-crds/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/istio-crds/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/istio-crds/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/istio-crds/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/istio-crds/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/istio-crds/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/istio-crds/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/istio-crds/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/istio-crds/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/istio-crds/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/istio-crds/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/istio-crds/values.yaml -------------------------------------------------------------------------------- /chart/templates/istio-gateway/_defaults.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/istio-gateway/_defaults.tpl -------------------------------------------------------------------------------- /chart/templates/istio-gateway/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/istio-gateway/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/istio-gateway/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/istio-gateway/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/istio-gateway/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/istio-gateway/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/istio-gateway/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/istio-gateway/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/istio-gateway/secret-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/istio-gateway/secret-tls.yaml -------------------------------------------------------------------------------- /chart/templates/istio-gateway/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/istio-gateway/values.yaml -------------------------------------------------------------------------------- /chart/templates/istiod/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/istiod/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/istiod/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/istiod/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/istiod/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/istiod/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/istiod/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/istiod/values.yaml -------------------------------------------------------------------------------- /chart/templates/keycloak/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/keycloak/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/keycloak/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/keycloak/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/keycloak/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/keycloak/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/keycloak/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/keycloak/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/keycloak/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/keycloak/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/keycloak/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/keycloak/values.yaml -------------------------------------------------------------------------------- /chart/templates/kiali/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kiali/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/kiali/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kiali/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/kiali/grafana-auth-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kiali/grafana-auth-secret.yaml -------------------------------------------------------------------------------- /chart/templates/kiali/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kiali/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/kiali/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kiali/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/kiali/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kiali/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/kiali/secret-ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kiali/secret-ca.yaml -------------------------------------------------------------------------------- /chart/templates/kiali/sso-client-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kiali/sso-client-secret.yaml -------------------------------------------------------------------------------- /chart/templates/kiali/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kiali/values.yaml -------------------------------------------------------------------------------- /chart/templates/kyverno-policies/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kyverno-policies/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/kyverno-policies/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kyverno-policies/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/kyverno-policies/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kyverno-policies/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/kyverno-policies/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kyverno-policies/values.yaml -------------------------------------------------------------------------------- /chart/templates/kyverno-reporter/_postrenderers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kyverno-reporter/_postrenderers.tpl -------------------------------------------------------------------------------- /chart/templates/kyverno-reporter/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kyverno-reporter/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/kyverno-reporter/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kyverno-reporter/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/kyverno-reporter/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kyverno-reporter/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/kyverno-reporter/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kyverno-reporter/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/kyverno-reporter/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kyverno-reporter/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/kyverno-reporter/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kyverno-reporter/values.yaml -------------------------------------------------------------------------------- /chart/templates/kyverno/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kyverno/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/kyverno/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kyverno/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/kyverno/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kyverno/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/kyverno/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kyverno/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/kyverno/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kyverno/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/kyverno/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/kyverno/values.yaml -------------------------------------------------------------------------------- /chart/templates/loki/_postrenderers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/loki/_postrenderers.yaml -------------------------------------------------------------------------------- /chart/templates/loki/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/loki/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/loki/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/loki/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/loki/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/loki/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/loki/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/loki/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/loki/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/loki/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/loki/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/loki/values.yaml -------------------------------------------------------------------------------- /chart/templates/mattermost-operator/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/mattermost-operator/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/mattermost-operator/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/mattermost-operator/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/mattermost-operator/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/mattermost-operator/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/mattermost-operator/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/mattermost-operator/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/mattermost-operator/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/mattermost-operator/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/mattermost-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/mattermost-operator/values.yaml -------------------------------------------------------------------------------- /chart/templates/mattermost/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/mattermost/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/mattermost/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/mattermost/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/mattermost/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/mattermost/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/mattermost/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/mattermost/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/mattermost/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/mattermost/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/mattermost/secret-ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/mattermost/secret-ca.yaml -------------------------------------------------------------------------------- /chart/templates/mattermost/secret-database.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/mattermost/secret-database.yaml -------------------------------------------------------------------------------- /chart/templates/mattermost/secret-objectstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/mattermost/secret-objectstore.yaml -------------------------------------------------------------------------------- /chart/templates/mattermost/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/mattermost/values.yaml -------------------------------------------------------------------------------- /chart/templates/metrics-server/_postrenderers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/metrics-server/_postrenderers.tpl -------------------------------------------------------------------------------- /chart/templates/metrics-server/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/metrics-server/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/metrics-server/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/metrics-server/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/metrics-server/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/metrics-server/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/metrics-server/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/metrics-server/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/metrics-server/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/metrics-server/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/metrics-server/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/metrics-server/values.yaml -------------------------------------------------------------------------------- /chart/templates/mimir/_postrenderers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/mimir/_postrenderers.tpl -------------------------------------------------------------------------------- /chart/templates/mimir/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/mimir/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/mimir/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/mimir/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/mimir/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/mimir/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/mimir/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/mimir/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/mimir/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/mimir/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/mimir/secret-objectstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/mimir/secret-objectstore.yaml -------------------------------------------------------------------------------- /chart/templates/mimir/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/mimir/values.yaml -------------------------------------------------------------------------------- /chart/templates/minio-operator/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/minio-operator/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/minio-operator/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/minio-operator/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/minio-operator/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/minio-operator/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/minio-operator/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/minio-operator/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/minio-operator/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/minio-operator/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/minio-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/minio-operator/values.yaml -------------------------------------------------------------------------------- /chart/templates/minio/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/minio/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/minio/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/minio/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/minio/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/minio/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/minio/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/minio/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/minio/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/minio/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/minio/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/minio/values.yaml -------------------------------------------------------------------------------- /chart/templates/monitoring/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/monitoring/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/monitoring/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/monitoring/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/monitoring/grafana-env-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/monitoring/grafana-env-secret.yaml -------------------------------------------------------------------------------- /chart/templates/monitoring/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/monitoring/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/monitoring/secret-ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/monitoring/secret-ca.yaml -------------------------------------------------------------------------------- /chart/templates/monitoring/secret-objectstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/monitoring/secret-objectstore.yaml -------------------------------------------------------------------------------- /chart/templates/monitoring/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/monitoring/values.yaml -------------------------------------------------------------------------------- /chart/templates/neuvector/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/neuvector/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/neuvector/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/neuvector/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/neuvector/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/neuvector/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/neuvector/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/neuvector/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/neuvector/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/neuvector/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/neuvector/secret-ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/neuvector/secret-ca.yaml -------------------------------------------------------------------------------- /chart/templates/neuvector/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/neuvector/values.yaml -------------------------------------------------------------------------------- /chart/templates/nexus-repository-manager/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/nexus-repository-manager/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/nexus-repository-manager/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/nexus-repository-manager/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/nexus-repository-manager/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/nexus-repository-manager/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/nexus-repository-manager/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/nexus-repository-manager/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/nexus-repository-manager/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/nexus-repository-manager/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/nexus-repository-manager/secret-ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/nexus-repository-manager/secret-ca.yaml -------------------------------------------------------------------------------- /chart/templates/nexus-repository-manager/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/nexus-repository-manager/values.yaml -------------------------------------------------------------------------------- /chart/templates/package/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/package/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/package/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/package/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/package/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/package/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/package/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/package/kustomization.yaml -------------------------------------------------------------------------------- /chart/templates/package/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/package/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/package/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/package/values.yaml -------------------------------------------------------------------------------- /chart/templates/prometheus-operator-crds/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/prometheus-operator-crds/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/prometheus-operator-crds/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/prometheus-operator-crds/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/prometheus-operator-crds/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/prometheus-operator-crds/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/prometheus-operator-crds/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/prometheus-operator-crds/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/prometheus-operator-crds/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/prometheus-operator-crds/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/prometheus-operator-crds/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/prometheus-operator-crds/values.yaml -------------------------------------------------------------------------------- /chart/templates/secrets/certificateauthority.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/secrets/certificateauthority.yaml -------------------------------------------------------------------------------- /chart/templates/secrets/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/secrets/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/sonarqube/_postrenderers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/sonarqube/_postrenderers.tpl -------------------------------------------------------------------------------- /chart/templates/sonarqube/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/sonarqube/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/sonarqube/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/sonarqube/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/sonarqube/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/sonarqube/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/sonarqube/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/sonarqube/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/sonarqube/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/sonarqube/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/sonarqube/secret-ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/sonarqube/secret-ca.yaml -------------------------------------------------------------------------------- /chart/templates/sonarqube/secret-database.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/sonarqube/secret-database.yaml -------------------------------------------------------------------------------- /chart/templates/sonarqube/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/sonarqube/values.yaml -------------------------------------------------------------------------------- /chart/templates/tempo/_postrenderers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/tempo/_postrenderers.tpl -------------------------------------------------------------------------------- /chart/templates/tempo/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/tempo/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/tempo/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/tempo/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/tempo/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/tempo/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/tempo/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/tempo/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/tempo/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/tempo/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/tempo/secret-objectstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/tempo/secret-objectstore.yaml -------------------------------------------------------------------------------- /chart/templates/tempo/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/tempo/values.yaml -------------------------------------------------------------------------------- /chart/templates/thanos/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/thanos/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/thanos/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/thanos/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/thanos/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/thanos/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/thanos/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/thanos/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/thanos/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/thanos/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/thanos/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/thanos/values.yaml -------------------------------------------------------------------------------- /chart/templates/twistlock/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/twistlock/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/twistlock/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/twistlock/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/twistlock/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/twistlock/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/twistlock/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/twistlock/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/twistlock/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/twistlock/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/twistlock/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/twistlock/values.yaml -------------------------------------------------------------------------------- /chart/templates/vault/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/vault/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/vault/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/vault/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/vault/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/vault/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/vault/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/vault/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/vault/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/vault/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/vault/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/vault/values.yaml -------------------------------------------------------------------------------- /chart/templates/velero/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/velero/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/velero/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/velero/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/velero/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/velero/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/velero/imagepullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/velero/imagepullsecret.yaml -------------------------------------------------------------------------------- /chart/templates/velero/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/velero/namespace.yaml -------------------------------------------------------------------------------- /chart/templates/velero/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/velero/values.yaml -------------------------------------------------------------------------------- /chart/templates/wrapper/git-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/wrapper/git-credentials.yaml -------------------------------------------------------------------------------- /chart/templates/wrapper/gitrepository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/wrapper/gitrepository.yaml -------------------------------------------------------------------------------- /chart/templates/wrapper/helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/wrapper/helmrelease.yaml -------------------------------------------------------------------------------- /chart/templates/wrapper/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/templates/wrapper/values.yaml -------------------------------------------------------------------------------- /chart/unittests/packages/kiali/serviceentries_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/unittests/packages/kiali/serviceentries_test.yaml -------------------------------------------------------------------------------- /chart/unittests/packages/kiali/values_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/unittests/packages/kiali/values_test.yaml -------------------------------------------------------------------------------- /chart/unittests/packages/loki/helmrelease_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/unittests/packages/loki/helmrelease_test.yaml -------------------------------------------------------------------------------- /chart/unittests/packages/mimir/helmrelease_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/unittests/packages/mimir/helmrelease_test.yaml -------------------------------------------------------------------------------- /chart/unittests/packages/monitoring/values_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/unittests/packages/monitoring/values_test.yaml -------------------------------------------------------------------------------- /chart/unittests/packages/package/values_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/unittests/packages/package/values_test.yaml -------------------------------------------------------------------------------- /chart/unittests/schema/addons_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/unittests/schema/addons_test.yaml -------------------------------------------------------------------------------- /chart/unittests/schema/base-package-git_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/unittests/schema/base-package-git_test.yaml -------------------------------------------------------------------------------- /chart/unittests/schema/base-package-helm-repo_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/unittests/schema/base-package-helm-repo_test.yaml -------------------------------------------------------------------------------- /chart/unittests/schema/base-package-source-type_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/unittests/schema/base-package-source-type_test.yaml -------------------------------------------------------------------------------- /chart/unittests/schema/base-package-sso_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/unittests/schema/base-package-sso_test.yaml -------------------------------------------------------------------------------- /chart/unittests/schema/base-package_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/unittests/schema/base-package_test.yaml -------------------------------------------------------------------------------- /chart/unittests/schema/flux_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/unittests/schema/flux_test.yaml -------------------------------------------------------------------------------- /chart/unittests/schema/git_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/unittests/schema/git_test.yaml -------------------------------------------------------------------------------- /chart/unittests/schema/monitoring_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/unittests/schema/monitoring_test.yaml -------------------------------------------------------------------------------- /chart/unittests/schema/registry-credentials_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/unittests/schema/registry-credentials_test.yaml -------------------------------------------------------------------------------- /chart/unittests/schema/umbrella_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/unittests/schema/umbrella_test.yaml -------------------------------------------------------------------------------- /chart/unittests/templates/bigbang.istio-gateway.generate-ingress-netpols_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/unittests/templates/bigbang.istio-gateway.generate-ingress-netpols_test.yaml -------------------------------------------------------------------------------- /chart/unittests/templates/bigbang.istio-gateway.ingress-netpol-spec_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/unittests/templates/bigbang.istio-gateway.ingress-netpol-spec_test.yaml -------------------------------------------------------------------------------- /chart/unittests/templates/kyverno-merged-policies_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/unittests/templates/kyverno-merged-policies_test.yaml -------------------------------------------------------------------------------- /chart/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/values.schema.json -------------------------------------------------------------------------------- /chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/chart/values.yaml -------------------------------------------------------------------------------- /docs/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/.pages -------------------------------------------------------------------------------- /docs/community/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/.pages -------------------------------------------------------------------------------- /docs/community/adrs/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/adrs/.pages -------------------------------------------------------------------------------- /docs/community/adrs/0001-public-adrs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/adrs/0001-public-adrs.md -------------------------------------------------------------------------------- /docs/community/adrs/0002-package-standardization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/adrs/0002-package-standardization.md -------------------------------------------------------------------------------- /docs/community/adrs/0003-single-package-mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/adrs/0003-single-package-mapping.md -------------------------------------------------------------------------------- /docs/community/adrs/0004-alloy-replacing-promtail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/adrs/0004-alloy-replacing-promtail.md -------------------------------------------------------------------------------- /docs/community/adrs/0005-passthrough-chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/adrs/0005-passthrough-chart.md -------------------------------------------------------------------------------- /docs/community/adrs/0006-drift-detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/adrs/0006-drift-detection.md -------------------------------------------------------------------------------- /docs/community/adrs/0007-dev-defaults.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/adrs/0007-dev-defaults.md -------------------------------------------------------------------------------- /docs/community/adrs/0008-generate-images-metadata-from-explicit-container-image-references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/adrs/0008-generate-images-metadata-from-explicit-container-image-references.md -------------------------------------------------------------------------------- /docs/community/development/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/.pages -------------------------------------------------------------------------------- /docs/community/development/aws-k3d-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/aws-k3d-script.md -------------------------------------------------------------------------------- /docs/community/development/ci-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/ci-workflow.md -------------------------------------------------------------------------------- /docs/community/development/dev-oci-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/dev-oci-workflow.md -------------------------------------------------------------------------------- /docs/community/development/develop-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/develop-package.md -------------------------------------------------------------------------------- /docs/community/development/development-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/development-environment.md -------------------------------------------------------------------------------- /docs/community/development/helm-unittests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/helm-unittests.md -------------------------------------------------------------------------------- /docs/community/development/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/index.md -------------------------------------------------------------------------------- /docs/community/development/k3d-keys-for-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/k3d-keys-for-testing.md -------------------------------------------------------------------------------- /docs/community/development/k8s-storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/k8s-storage.md -------------------------------------------------------------------------------- /docs/community/development/mdo-partybus-pipelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/mdo-partybus-pipelines.md -------------------------------------------------------------------------------- /docs/community/development/oscal-contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/oscal-contributing.md -------------------------------------------------------------------------------- /docs/community/development/package-integration/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/package-integration/.pages -------------------------------------------------------------------------------- /docs/community/development/package-integration/bigbang-merge-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/package-integration/bigbang-merge-request.md -------------------------------------------------------------------------------- /docs/community/development/package-integration/database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/package-integration/database.md -------------------------------------------------------------------------------- /docs/community/development/package-integration/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/package-integration/documentation.md -------------------------------------------------------------------------------- /docs/community/development/package-integration/flux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/package-integration/flux.md -------------------------------------------------------------------------------- /docs/community/development/package-integration/helm-standards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/package-integration/helm-standards.md -------------------------------------------------------------------------------- /docs/community/development/package-integration/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/package-integration/index.md -------------------------------------------------------------------------------- /docs/community/development/package-integration/istio-hardened.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/package-integration/istio-hardened.md -------------------------------------------------------------------------------- /docs/community/development/package-integration/monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/package-integration/monitoring.md -------------------------------------------------------------------------------- /docs/community/development/package-integration/network-policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/package-integration/network-policies.md -------------------------------------------------------------------------------- /docs/community/development/package-integration/ownership.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/package-integration/ownership.md -------------------------------------------------------------------------------- /docs/community/development/package-integration/pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/package-integration/pipeline.md -------------------------------------------------------------------------------- /docs/community/development/package-integration/policy-enforcement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/package-integration/policy-enforcement.md -------------------------------------------------------------------------------- /docs/community/development/package-integration/service-mesh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/package-integration/service-mesh.md -------------------------------------------------------------------------------- /docs/community/development/package-integration/sso.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/package-integration/sso.md -------------------------------------------------------------------------------- /docs/community/development/package-integration/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/package-integration/storage.md -------------------------------------------------------------------------------- /docs/community/development/package-integration/supported.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/package-integration/supported.md -------------------------------------------------------------------------------- /docs/community/development/package-integration/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/package-integration/testing.md -------------------------------------------------------------------------------- /docs/community/development/package-integration/upstream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/package-integration/upstream.md -------------------------------------------------------------------------------- /docs/community/development/postrenderers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/postrenderers.md -------------------------------------------------------------------------------- /docs/community/development/release-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/release-process.md -------------------------------------------------------------------------------- /docs/community/development/renovate-maintenance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/renovate-maintenance.md -------------------------------------------------------------------------------- /docs/community/development/self-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/self-testing.md -------------------------------------------------------------------------------- /docs/community/development/test-package-against-bb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/test-package-against-bb.md -------------------------------------------------------------------------------- /docs/community/development/testing-repo1-CI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/testing-repo1-CI.md -------------------------------------------------------------------------------- /docs/community/development/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/testing.md -------------------------------------------------------------------------------- /docs/community/development/vendor-distro-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/community/development/vendor-distro-integration.md -------------------------------------------------------------------------------- /docs/concepts/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/concepts/.pages -------------------------------------------------------------------------------- /docs/concepts/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/concepts/architecture.md -------------------------------------------------------------------------------- /docs/concepts/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/concepts/deployment.md -------------------------------------------------------------------------------- /docs/concepts/encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/concepts/encryption.md -------------------------------------------------------------------------------- /docs/concepts/git-ops-engine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/concepts/git-ops-engine.md -------------------------------------------------------------------------------- /docs/concepts/git-ops-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/concepts/git-ops-workflow.md -------------------------------------------------------------------------------- /docs/concepts/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/concepts/glossary.md -------------------------------------------------------------------------------- /docs/concepts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/concepts/index.md -------------------------------------------------------------------------------- /docs/concepts/kyverno-use-by-apps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/concepts/kyverno-use-by-apps.md -------------------------------------------------------------------------------- /docs/concepts/licensing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/concepts/licensing.md -------------------------------------------------------------------------------- /docs/concepts/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/concepts/logging.md -------------------------------------------------------------------------------- /docs/concepts/package-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/concepts/package-management.md -------------------------------------------------------------------------------- /docs/concepts/security-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/concepts/security-model.md -------------------------------------------------------------------------------- /docs/concepts/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/concepts/style.md -------------------------------------------------------------------------------- /docs/concepts/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/concepts/testing.md -------------------------------------------------------------------------------- /docs/concepts/values-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/concepts/values-guide.md -------------------------------------------------------------------------------- /docs/configuration/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/configuration/.pages -------------------------------------------------------------------------------- /docs/configuration/base-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/configuration/base-config.md -------------------------------------------------------------------------------- /docs/configuration/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/configuration/configuration.md -------------------------------------------------------------------------------- /docs/configuration/default-credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/configuration/default-credentials.md -------------------------------------------------------------------------------- /docs/configuration/network-policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/configuration/network-policies.md -------------------------------------------------------------------------------- /docs/configuration/postrenderers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/configuration/postrenderers.md -------------------------------------------------------------------------------- /docs/configuration/sample-prod-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/configuration/sample-prod-config.md -------------------------------------------------------------------------------- /docs/getting-started/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/getting-started/.pages -------------------------------------------------------------------------------- /docs/getting-started/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/getting-started/faq.md -------------------------------------------------------------------------------- /docs/getting-started/first-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/getting-started/first-deployment.md -------------------------------------------------------------------------------- /docs/getting-started/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/getting-started/overview.md -------------------------------------------------------------------------------- /docs/getting-started/prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/getting-started/prerequisites.md -------------------------------------------------------------------------------- /docs/getting-started/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/getting-started/quick-start.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/installation/.pages -------------------------------------------------------------------------------- /docs/installation/environments/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/installation/environments/.pages -------------------------------------------------------------------------------- /docs/installation/environments/airgap-zarf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/installation/environments/airgap-zarf.md -------------------------------------------------------------------------------- /docs/installation/environments/airgap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/installation/environments/airgap.md -------------------------------------------------------------------------------- /docs/installation/environments/appliance-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/installation/environments/appliance-mode.md -------------------------------------------------------------------------------- /docs/installation/environments/extra-package-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/installation/environments/extra-package-deployment.md -------------------------------------------------------------------------------- /docs/installation/environments/multiple-ingress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/installation/environments/multiple-ingress.md -------------------------------------------------------------------------------- /docs/installation/environments/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/installation/environments/quick-start.md -------------------------------------------------------------------------------- /docs/installation/environments/sso-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/installation/environments/sso-quickstart.md -------------------------------------------------------------------------------- /docs/installation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/installation/index.md -------------------------------------------------------------------------------- /docs/migration/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/migration/.pages -------------------------------------------------------------------------------- /docs/migration/migrating-istio-for-bb3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/migration/migrating-istio-for-bb3.0.md -------------------------------------------------------------------------------- /docs/operations/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/operations/.pages -------------------------------------------------------------------------------- /docs/operations/backup-restore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/operations/backup-restore.md -------------------------------------------------------------------------------- /docs/operations/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/operations/index.md -------------------------------------------------------------------------------- /docs/operations/maintenance/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/operations/maintenance/.pages -------------------------------------------------------------------------------- /docs/operations/maintenance/renovate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/operations/maintenance/renovate.md -------------------------------------------------------------------------------- /docs/operations/monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/operations/monitoring.md -------------------------------------------------------------------------------- /docs/operations/troubleshooting/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/operations/troubleshooting/.pages -------------------------------------------------------------------------------- /docs/operations/troubleshooting/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/operations/troubleshooting/index.md -------------------------------------------------------------------------------- /docs/operations/troubleshooting/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/operations/troubleshooting/installation.md -------------------------------------------------------------------------------- /docs/operations/troubleshooting/networking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/operations/troubleshooting/networking.md -------------------------------------------------------------------------------- /docs/operations/troubleshooting/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/operations/troubleshooting/packages.md -------------------------------------------------------------------------------- /docs/operations/troubleshooting/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/operations/troubleshooting/performance.md -------------------------------------------------------------------------------- /docs/operations/troubleshooting/upgrades.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/operations/troubleshooting/upgrades.md -------------------------------------------------------------------------------- /docs/operations/upgrades.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/operations/upgrades.md -------------------------------------------------------------------------------- /docs/packages/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/.pages -------------------------------------------------------------------------------- /docs/packages/addons/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/addons/.pages -------------------------------------------------------------------------------- /docs/packages/addons/anchore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/addons/anchore.md -------------------------------------------------------------------------------- /docs/packages/addons/argocd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/addons/argocd.md -------------------------------------------------------------------------------- /docs/packages/addons/authservice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/addons/authservice.md -------------------------------------------------------------------------------- /docs/packages/addons/backstage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/addons/backstage.md -------------------------------------------------------------------------------- /docs/packages/addons/external-secrets-operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/addons/external-secrets-operator.md -------------------------------------------------------------------------------- /docs/packages/addons/fortify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/addons/fortify.md -------------------------------------------------------------------------------- /docs/packages/addons/gitlab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/addons/gitlab.md -------------------------------------------------------------------------------- /docs/packages/addons/harbor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/addons/harbor.md -------------------------------------------------------------------------------- /docs/packages/addons/keycloak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/addons/keycloak.md -------------------------------------------------------------------------------- /docs/packages/addons/mattermost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/addons/mattermost.md -------------------------------------------------------------------------------- /docs/packages/addons/metricserver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/addons/metricserver.md -------------------------------------------------------------------------------- /docs/packages/addons/mimir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/addons/mimir.md -------------------------------------------------------------------------------- /docs/packages/addons/minio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/addons/minio.md -------------------------------------------------------------------------------- /docs/packages/addons/nexus-repository-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/addons/nexus-repository-manager.md -------------------------------------------------------------------------------- /docs/packages/addons/sonarqube.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/addons/sonarqube.md -------------------------------------------------------------------------------- /docs/packages/addons/vault.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/addons/vault.md -------------------------------------------------------------------------------- /docs/packages/addons/velero.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/addons/velero.md -------------------------------------------------------------------------------- /docs/packages/categorization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/categorization.md -------------------------------------------------------------------------------- /docs/packages/community/.pages: -------------------------------------------------------------------------------- 1 | nav: [] 2 | -------------------------------------------------------------------------------- /docs/packages/core/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/core/.pages -------------------------------------------------------------------------------- /docs/packages/core/alloy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/core/alloy.md -------------------------------------------------------------------------------- /docs/packages/core/elasticsearch-kibana.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/core/elasticsearch-kibana.md -------------------------------------------------------------------------------- /docs/packages/core/fluentbit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/core/fluentbit.md -------------------------------------------------------------------------------- /docs/packages/core/istio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/core/istio.md -------------------------------------------------------------------------------- /docs/packages/core/kiali.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/core/kiali.md -------------------------------------------------------------------------------- /docs/packages/core/kyverno.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/core/kyverno.md -------------------------------------------------------------------------------- /docs/packages/core/loki.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/core/loki.md -------------------------------------------------------------------------------- /docs/packages/core/monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/core/monitoring.md -------------------------------------------------------------------------------- /docs/packages/core/neuvector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/core/neuvector.md -------------------------------------------------------------------------------- /docs/packages/core/opa-gatekeeper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/core/opa-gatekeeper.md -------------------------------------------------------------------------------- /docs/packages/core/tempo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/core/tempo.md -------------------------------------------------------------------------------- /docs/packages/core/twistlock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/core/twistlock.md -------------------------------------------------------------------------------- /docs/packages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/index.md -------------------------------------------------------------------------------- /docs/packages/package-development/.pages: -------------------------------------------------------------------------------- 1 | nav: 2 | - Overview: index.md 3 | -------------------------------------------------------------------------------- /docs/packages/package-development/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/package-development/index.md -------------------------------------------------------------------------------- /docs/packages/ref-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/packages/ref-package.md -------------------------------------------------------------------------------- /docs/reference/configs/appliance-mode/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/configs/appliance-mode/values.yaml -------------------------------------------------------------------------------- /docs/reference/configs/example/dev-sso-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/configs/example/dev-sso-values.yaml -------------------------------------------------------------------------------- /docs/reference/configs/example/git-repo-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/configs/example/git-repo-values.yaml -------------------------------------------------------------------------------- /docs/reference/configs/example/google-auth-example-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/configs/example/google-auth-example-values.yaml -------------------------------------------------------------------------------- /docs/reference/configs/example/policy-overrides-k3d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/configs/example/policy-overrides-k3d.yaml -------------------------------------------------------------------------------- /docs/reference/configs/example/public-ingressgateway-cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/configs/example/public-ingressgateway-cert.yaml -------------------------------------------------------------------------------- /docs/reference/configs/example/vault-production-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/configs/example/vault-production-values.yaml -------------------------------------------------------------------------------- /docs/reference/configs/k8s-storage/benchmark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/configs/k8s-storage/benchmark.yaml -------------------------------------------------------------------------------- /docs/reference/configs/k8s-storage/rwx-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/configs/k8s-storage/rwx-test.yaml -------------------------------------------------------------------------------- /docs/reference/configs/zarf/config/custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/configs/zarf/config/custom.yaml -------------------------------------------------------------------------------- /docs/reference/configs/zarf/config/kyverno.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/configs/zarf/config/kyverno.yaml -------------------------------------------------------------------------------- /docs/reference/configs/zarf/metallb/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/configs/zarf/metallb/config.yaml -------------------------------------------------------------------------------- /docs/reference/configs/zarf/metallb/metallb-native-0.13.9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/configs/zarf/metallb/metallb-native-0.13.9.yaml -------------------------------------------------------------------------------- /docs/reference/configs/zarf/metallb/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/configs/zarf/metallb/zarf.yaml -------------------------------------------------------------------------------- /docs/reference/configs/zarf/virtualservices/gitea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/configs/zarf/virtualservices/gitea.yaml -------------------------------------------------------------------------------- /docs/reference/configs/zarf/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/configs/zarf/zarf.yaml -------------------------------------------------------------------------------- /docs/reference/diagrams/developer/bb-gitlab-ci-diagram.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/diagrams/developer/bb-gitlab-ci-diagram.drawio -------------------------------------------------------------------------------- /docs/reference/diagrams/developer/dev_ci_workflow.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/diagrams/developer/dev_ci_workflow.drawio -------------------------------------------------------------------------------- /docs/reference/scripts/airgap-dev/airgap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/scripts/airgap-dev/airgap.sh -------------------------------------------------------------------------------- /docs/reference/scripts/airgap-dev/config.toml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/scripts/airgap-dev/config.toml.tmpl -------------------------------------------------------------------------------- /docs/reference/scripts/airgap-dev/copy-containerd-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/scripts/airgap-dev/copy-containerd-config.yaml -------------------------------------------------------------------------------- /docs/reference/scripts/airgap-dev/deploy-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/scripts/airgap-dev/deploy-images.sh -------------------------------------------------------------------------------- /docs/reference/scripts/airgap-dev/images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/scripts/airgap-dev/images.txt -------------------------------------------------------------------------------- /docs/reference/scripts/airgap-dev/package-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/scripts/airgap-dev/package-images.sh -------------------------------------------------------------------------------- /docs/reference/scripts/airgap-dev/package-repos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/scripts/airgap-dev/package-repos.sh -------------------------------------------------------------------------------- /docs/reference/scripts/airgap-dev/registry-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/scripts/airgap-dev/registry-config.yaml -------------------------------------------------------------------------------- /docs/reference/scripts/airgap-dev/registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/scripts/airgap-dev/registry.sh -------------------------------------------------------------------------------- /docs/reference/scripts/airgap-dev/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/scripts/airgap-dev/values.yaml -------------------------------------------------------------------------------- /docs/reference/scripts/airgap-zarf/zarf-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/scripts/airgap-zarf/zarf-dev.sh -------------------------------------------------------------------------------- /docs/reference/scripts/developer/aws-mfa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/scripts/developer/aws-mfa.sh -------------------------------------------------------------------------------- /docs/reference/scripts/developer/k3d-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/scripts/developer/k3d-dev.sh -------------------------------------------------------------------------------- /docs/reference/scripts/developer/metallb/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/scripts/developer/metallb/kustomization.yaml -------------------------------------------------------------------------------- /docs/reference/scripts/developer/mfa-aws-creds-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/scripts/developer/mfa-aws-creds-example -------------------------------------------------------------------------------- /docs/reference/scripts/developer/weave/README-weave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/scripts/developer/weave/README-weave.md -------------------------------------------------------------------------------- /docs/reference/scripts/developer/weave/machine-id-agent-0: -------------------------------------------------------------------------------- 1 | 242892d11ac2521aac3d2ad864baaa22 2 | -------------------------------------------------------------------------------- /docs/reference/scripts/developer/weave/machine-id-agent-1: -------------------------------------------------------------------------------- 1 | 242892d11ac2521aac3d2ad864baaa23 2 | -------------------------------------------------------------------------------- /docs/reference/scripts/developer/weave/machine-id-agent-2: -------------------------------------------------------------------------------- 1 | 242892d11ac2521aac3d2ad864baaa24 2 | -------------------------------------------------------------------------------- /docs/reference/scripts/developer/weave/machine-id-server-0: -------------------------------------------------------------------------------- 1 | 242892d11ac2521aac3d2ad864baaa21 2 | -------------------------------------------------------------------------------- /docs/reference/scripts/developer/weave/weave.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/scripts/developer/weave/weave.yaml -------------------------------------------------------------------------------- /docs/reference/scripts/quickstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/scripts/quickstart.sh -------------------------------------------------------------------------------- /docs/reference/terraform/airgap-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/terraform/airgap-dev/README.md -------------------------------------------------------------------------------- /docs/reference/terraform/airgap-dev/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/terraform/airgap-dev/main.tf -------------------------------------------------------------------------------- /docs/reference/terraform/airgap-dev/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/reference/terraform/airgap-dev/variables.tf -------------------------------------------------------------------------------- /docs/tutorials/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/tutorials/.pages -------------------------------------------------------------------------------- /docs/tutorials/big-bang-deployment-uninstall-cleanup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/tutorials/big-bang-deployment-uninstall-cleanup.md -------------------------------------------------------------------------------- /docs/tutorials/pod-usage-in-grafana.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/tutorials/pod-usage-in-grafana.md -------------------------------------------------------------------------------- /docs/tutorials/signed-helm-repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/docs/tutorials/signed-helm-repositories.md -------------------------------------------------------------------------------- /oscal-component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/oscal-component.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/install_flux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/scripts/install_flux.sh -------------------------------------------------------------------------------- /scripts/remove-ns-finalizer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/scripts/remove-ns-finalizer.sh -------------------------------------------------------------------------------- /scripts/schema-refresh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/scripts/schema-refresh.sh -------------------------------------------------------------------------------- /scripts/sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/scripts/sync.sh -------------------------------------------------------------------------------- /scripts/template-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/scripts/template-all.sh -------------------------------------------------------------------------------- /tests/disable-core-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/tests/disable-core-values.yaml -------------------------------------------------------------------------------- /tests/eks-test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/tests/eks-test-values.yaml -------------------------------------------------------------------------------- /tests/images.txt: -------------------------------------------------------------------------------- 1 | registry1.dso.mil/ironbank/big-bang/p1-keycloak-plugin:3.6.7 2 | -------------------------------------------------------------------------------- /tests/oci-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/tests/oci-values.yaml -------------------------------------------------------------------------------- /tests/openshift-test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/tests/openshift-test-values.yaml -------------------------------------------------------------------------------- /tests/package-mapping.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/tests/package-mapping.yaml -------------------------------------------------------------------------------- /tests/rke2-test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/tests/rke2-test-values.yaml -------------------------------------------------------------------------------- /tests/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoD-Platform-One/bigbang/HEAD/tests/test-values.yaml --------------------------------------------------------------------------------