├── .adr-dir ├── .commitlintrc.yaml ├── .editorconfig ├── .gitattributes ├── .github ├── .codecov.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ ├── tech_debt.md │ └── ux_test.md ├── SECURITY.md ├── actions │ ├── cleanup-files │ │ └── action.yaml │ ├── debug-cluster │ │ └── action.yaml │ ├── install-tools │ │ └── action.yaml │ ├── k3d │ │ └── action.yaml │ ├── packages │ │ └── action.yaml │ └── slack │ │ └── action.yaml ├── codeql.yaml ├── dependabot.yaml ├── pull_request_template.md ├── release.yml └── workflows │ ├── check-go-mod.yml │ ├── commitlint.yml │ ├── dependency-review.yml │ ├── dummy-dco.yaml │ ├── nightly-ecr.yml │ ├── nightly-eks.yml │ ├── nightly-release.yaml │ ├── publish-application-packages.yml │ ├── release.yml │ ├── scan-codeql.yml │ ├── scan-docs-and-schema.yml │ ├── scan-lint.yml │ ├── scorecard.yaml │ ├── test-e2e.yml │ ├── test-external.yml │ ├── test-import.yaml │ ├── test-package-create.yml │ ├── test-proxy.yml │ ├── test-shim.yml │ ├── test-site.yml │ ├── test-unit.yml │ ├── test-upgrade.yml │ └── test-windows.yml ├── .gitignore ├── .golangci.yaml ├── .goreleaser-pro.yaml ├── .goreleaser.yaml ├── .grype.yaml ├── .markdownlint-cli2.jsonc ├── .pre-commit-config.yaml ├── ADOPTERS.md ├── CHARTER.pdf ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── COMMUNITY.md ├── CONTRIBUTING.md ├── CONTRIBUTOR_LADDER.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── RELEASES.md ├── SUPPORT.md ├── adr ├── 0001-record-architecture-decisions.md ├── 0002-moving-e2e-tests-away-from-terratest.md ├── 0003-image-injection-into-remote-clusters-without-native-support.md ├── 0004-generate-sboms-with-witness.md ├── 0005-mutating-webhook.md ├── 0006-package-variables.md ├── 0007-use-rust-binary-for-both-injection-stages.md ├── 0008-begin-using-unit-tests.md ├── 0009-sbom-more-than-images.md ├── 0010-yolo-mode.md ├── 0011-scripts-actions.md ├── 0012-local-image-support-via-docker.md ├── 0013-bigbang-as-a-noun.md ├── 0014-oci-publish.md ├── 0015-artifact-server-support.md ├── 0016-zarf-definition-of-generally-available.md ├── 0017-zarf-bundle.md ├── 0018-hooks.md ├── 0019-decouple-transformation-library-from-zarf.md ├── 0020-package-sources.md ├── 0021-composable-components.md ├── 0022-dev-cmd.md ├── 0023-chart-override.md ├── 0024-starlight.md ├── 0025-logging.md ├── 0026-schema.md ├── 0026-schema.yaml └── template.md ├── cosign.pub ├── examples ├── argocd │ ├── apps │ │ └── values.yaml │ ├── baseline │ │ └── values.yaml │ └── zarf.yaml ├── component-actions │ ├── test-configmap.yaml │ ├── test.txt │ └── zarf.yaml ├── composable-packages │ ├── quake-service.yaml │ └── zarf.yaml ├── config-file │ ├── simple-configmap.yaml │ ├── zarf-config.toml │ ├── zarf-config.yaml │ └── zarf.yaml ├── dos-games │ ├── image │ │ ├── Dockerfile │ │ └── index.html │ ├── manifests │ │ ├── deployment.yaml │ │ └── service.yaml │ └── zarf.yaml ├── git-data │ └── zarf.yaml ├── helm-charts │ ├── chart │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ │ └── values.yaml │ ├── values.yaml │ └── zarf.yaml ├── kiwix │ ├── manifests │ │ ├── deployment.yaml │ │ ├── persistence.yaml │ │ └── service.yaml │ ├── zarf.yaml │ └── zim-data │ │ └── .gitkeep ├── longhorn │ ├── connect.yaml │ ├── values.yaml │ └── zarf.yaml ├── manifests │ ├── httpd-deployment.yaml │ └── zarf.yaml ├── package-flavors │ ├── pod.yaml │ └── zarf.yaml ├── podinfo-flux │ ├── git │ │ ├── podinfo-kustomization.yaml │ │ └── podinfo-source.yaml │ ├── helm-oci │ │ ├── podinfo-helmrelease.yaml │ │ └── podinfo-source.yaml │ ├── helm │ │ ├── podinfo-helmrelease.yaml │ │ └── podinfo-source.yaml │ ├── oci │ │ ├── podinfo-kustomization.yaml │ │ └── podinfo-source.yaml │ └── zarf.yaml ├── values-templating │ ├── charts │ │ └── example-chart │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ └── configmap.yaml │ │ │ └── values.yaml │ ├── nginx-configmap.yaml │ ├── nginx-deployment.yaml │ ├── nginx-service.yaml │ ├── values │ │ └── values.yaml │ └── zarf.yaml ├── variables │ ├── nginx-configmap.yaml │ ├── nginx-deployment.yaml │ ├── nginx-service.yaml │ ├── simple-config.json │ └── zarf.yaml ├── wordpress │ ├── connect-services.yaml │ ├── wordpress-values.yaml │ └── zarf.yaml └── yolo │ └── zarf.yaml ├── go.mod ├── go.sum ├── hack ├── check-zarf-docs-and-schema.sh ├── compare.tmpl ├── cots │ └── update-gitea.sh ├── empty-config.toml ├── examples-checksums │ ├── zarf-package-component-actions-amd64.txt │ ├── zarf-package-dos-games-amd64-1.2.0.txt │ ├── zarf-package-manifests-amd64-0.0.1.txt │ ├── zarf-package-variables-amd64.txt │ └── zarf-package-yolo-amd64.txt ├── grype.tmpl └── schema │ ├── README.md │ ├── create-zarf-schema.sh │ ├── go.mod │ ├── go.sum │ └── main.go ├── main.go ├── netlify.toml ├── packages ├── README.md ├── distros │ ├── eks │ │ ├── eks.yaml │ │ └── zarf.yaml │ └── k3s │ │ ├── k3s.service │ │ ├── zarf-clean-k3s.sh │ │ └── zarf.yaml ├── gitea │ ├── connect.yaml │ ├── gitea-values.yaml │ └── zarf.yaml ├── zarf-agent │ ├── chart │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── secret.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── webhook.yaml │ │ └── values.yaml │ └── zarf.yaml └── zarf-registry │ ├── chart │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── injector-daemonset.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── proxy-daemonset.yaml │ │ ├── pvc.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ └── values.yaml │ ├── configmap.yaml │ ├── connect.yaml │ ├── registry-values-seed.yaml │ ├── registry-values.yaml │ └── zarf.yaml ├── renovate.json ├── site ├── .gitignore ├── README.md ├── astro.config.ts ├── hack │ └── copy-examples.js ├── linkinator.config.json ├── package-lock.json ├── package.json ├── public │ ├── architecture.drawio.svg │ ├── favicon.svg │ └── tutorials │ │ ├── differential_package_create.html │ │ ├── differential_package_create_conclusion.html │ │ ├── differential_package_create_differential.html │ │ ├── differential_package_edit.html │ │ ├── differential_package_error.html │ │ ├── k3s_init.html │ │ ├── package_create_error.html │ │ ├── package_create_init.html │ │ ├── package_create_wordpress.html │ │ ├── package_deploy_connect.html │ │ ├── package_deploy_deploy.html │ │ ├── package_deploy_deploy_bottom.html │ │ ├── package_deploy_deploy_full.html │ │ ├── package_deploy_list.html │ │ ├── package_deploy_no_file.html │ │ ├── package_deploy_remove_by_file.html │ │ ├── package_deploy_remove_no_confirm.html │ │ ├── package_deploy_suggest.html │ │ ├── package_deploy_wordpress.html │ │ ├── package_deploy_wordpress_bottom.html │ │ ├── package_deploy_wordpress_list.html │ │ ├── package_deploy_wordpress_no_confirm.html │ │ ├── package_deploy_wordpress_remove_by_file.html │ │ ├── package_deploy_wordpress_suggestions.html │ │ ├── prepare_find_images.html │ │ ├── publish_and_deploy_create.html │ │ ├── publish_and_deploy_deploy.html │ │ ├── publish_and_deploy_docker_config.html │ │ ├── publish_and_deploy_inspect.html │ │ ├── publish_and_deploy_list.html │ │ ├── publish_and_deploy_login.html │ │ ├── publish_and_deploy_manifest.html │ │ ├── publish_and_deploy_publish.html │ │ ├── publish_and_deploy_pull.html │ │ ├── publish_and_deploy_remove.html │ │ ├── publish_and_deploy_setup.html │ │ ├── resource_adoption_adopted.html │ │ ├── resource_adoption_connect.html │ │ ├── resource_adoption_deploy.html │ │ ├── resource_adoption_forward.html │ │ ├── resource_adoption_ignored.html │ │ ├── resource_adoption_manifests.html │ │ ├── resource_adoption_namespace.html │ │ ├── resource_adoption_package.html │ │ ├── troubleshoot_insecure_registry.html │ │ ├── troubleshoot_uninitialized.html │ │ ├── troubleshoot_uninitialized_helmOCI.html │ │ ├── troubleshoot_unreachable.html │ │ ├── troubleshoot_version_required_no_version.html │ │ └── troubleshoot_version_required_publish.html ├── src │ ├── assets │ │ ├── dashboard │ │ │ ├── SBOM-compare.png │ │ │ ├── SBOM-dashboard.png │ │ │ ├── SBOM-prompt-example.png │ │ │ ├── deployment-ui.png │ │ │ ├── k9s_dashboard_example.png │ │ │ ├── web-ui-cluster-connected.png │ │ │ ├── web-ui-cluster-not-connected.png │ │ │ ├── web-ui-launch.gif │ │ │ └── web-ui-package-commands.png │ │ ├── tutorials │ │ │ ├── games_connected.png │ │ │ ├── logging_login.png │ │ │ ├── logging_logs.png │ │ │ ├── logging_query.png │ │ │ ├── wordpress_connected.png │ │ │ └── zarf_tools_monitor.png │ │ ├── zarf-bubbles.svg │ │ ├── zarf-logo-header.svg │ │ ├── zarf-logo.png │ │ ├── zarf-underwater-behind-rock.svg │ │ └── zarf-v0.21-preview.gif │ ├── components │ │ ├── Details.astro │ │ ├── ExampleYAML.astro │ │ ├── Mermaid.astro │ │ ├── SchemaItemProperties.astro │ │ ├── SkipLink.astro │ │ └── StripH1.astro │ ├── content │ │ ├── config.ts │ │ └── docs │ │ │ ├── best-practices │ │ │ ├── airgap-demos.mdx │ │ │ └── upgrading-zarf.mdx │ │ │ ├── commands │ │ │ ├── zarf.md │ │ │ ├── zarf_completion.md │ │ │ ├── zarf_completion_bash.md │ │ │ ├── zarf_completion_fish.md │ │ │ ├── zarf_completion_powershell.md │ │ │ ├── zarf_completion_zsh.md │ │ │ ├── zarf_connect.md │ │ │ ├── zarf_connect_list.md │ │ │ ├── zarf_destroy.md │ │ │ ├── zarf_dev.md │ │ │ ├── zarf_dev_deploy.md │ │ │ ├── zarf_dev_find-images.md │ │ │ ├── zarf_dev_generate-config.md │ │ │ ├── zarf_dev_generate.md │ │ │ ├── zarf_dev_inspect.md │ │ │ ├── zarf_dev_inspect_definition.md │ │ │ ├── zarf_dev_inspect_manifests.md │ │ │ ├── zarf_dev_inspect_values-files.md │ │ │ ├── zarf_dev_lint.md │ │ │ ├── zarf_dev_patch-git.md │ │ │ ├── zarf_dev_sha256sum.md │ │ │ ├── zarf_init.md │ │ │ ├── zarf_package.md │ │ │ ├── zarf_package_create.md │ │ │ ├── zarf_package_deploy.md │ │ │ ├── zarf_package_inspect.md │ │ │ ├── zarf_package_inspect_definition.md │ │ │ ├── zarf_package_inspect_images.md │ │ │ ├── zarf_package_inspect_manifests.md │ │ │ ├── zarf_package_inspect_sbom.md │ │ │ ├── zarf_package_inspect_values-files.md │ │ │ ├── zarf_package_list.md │ │ │ ├── zarf_package_mirror-resources.md │ │ │ ├── zarf_package_publish.md │ │ │ ├── zarf_package_pull.md │ │ │ ├── zarf_package_remove.md │ │ │ ├── zarf_package_sign.md │ │ │ ├── zarf_package_verify.md │ │ │ ├── zarf_say.md │ │ │ ├── zarf_tools.md │ │ │ ├── zarf_tools_archiver.md │ │ │ ├── zarf_tools_archiver_compress.md │ │ │ ├── zarf_tools_archiver_decompress.md │ │ │ ├── zarf_tools_archiver_version.md │ │ │ ├── zarf_tools_clear-cache.md │ │ │ ├── zarf_tools_download-init.md │ │ │ ├── zarf_tools_gen-key.md │ │ │ ├── zarf_tools_gen-pki.md │ │ │ ├── zarf_tools_get-creds.md │ │ │ ├── zarf_tools_helm.md │ │ │ ├── zarf_tools_helm_dependency.md │ │ │ ├── zarf_tools_helm_dependency_build.md │ │ │ ├── zarf_tools_helm_dependency_list.md │ │ │ ├── zarf_tools_helm_dependency_update.md │ │ │ ├── zarf_tools_helm_repo.md │ │ │ ├── zarf_tools_helm_repo_add.md │ │ │ ├── zarf_tools_helm_repo_index.md │ │ │ ├── zarf_tools_helm_repo_list.md │ │ │ ├── zarf_tools_helm_repo_remove.md │ │ │ ├── zarf_tools_helm_repo_update.md │ │ │ ├── zarf_tools_helm_version.md │ │ │ ├── zarf_tools_kubectl.md │ │ │ ├── zarf_tools_monitor.md │ │ │ ├── zarf_tools_registry.md │ │ │ ├── zarf_tools_registry_catalog.md │ │ │ ├── zarf_tools_registry_copy.md │ │ │ ├── zarf_tools_registry_delete.md │ │ │ ├── zarf_tools_registry_digest.md │ │ │ ├── zarf_tools_registry_export.md │ │ │ ├── zarf_tools_registry_login.md │ │ │ ├── zarf_tools_registry_ls.md │ │ │ ├── zarf_tools_registry_manifest.md │ │ │ ├── zarf_tools_registry_prune.md │ │ │ ├── zarf_tools_registry_pull.md │ │ │ ├── zarf_tools_registry_push.md │ │ │ ├── zarf_tools_registry_version.md │ │ │ ├── zarf_tools_sbom.md │ │ │ ├── zarf_tools_sbom_attest.md │ │ │ ├── zarf_tools_sbom_cataloger.md │ │ │ ├── zarf_tools_sbom_cataloger_list.md │ │ │ ├── zarf_tools_sbom_config.md │ │ │ ├── zarf_tools_sbom_config_locations.md │ │ │ ├── zarf_tools_sbom_convert.md │ │ │ ├── zarf_tools_sbom_login.md │ │ │ ├── zarf_tools_sbom_scan.md │ │ │ ├── zarf_tools_sbom_version.md │ │ │ ├── zarf_tools_update-creds.md │ │ │ ├── zarf_tools_wait-for.md │ │ │ ├── zarf_tools_yq.md │ │ │ ├── zarf_tools_yq_completion.md │ │ │ ├── zarf_tools_yq_eval-all.md │ │ │ ├── zarf_tools_yq_eval.md │ │ │ └── zarf_version.md │ │ │ ├── contribute │ │ │ ├── contributor-guide.mdx │ │ │ ├── nerd-notes.mdx │ │ │ ├── principles.mdx │ │ │ ├── style-guide.mdx │ │ │ └── testing.mdx │ │ │ ├── faq.mdx │ │ │ ├── getting-started │ │ │ ├── index.mdx │ │ │ ├── install.mdx │ │ │ └── understanding.mdx │ │ │ ├── index.mdx │ │ │ ├── ref │ │ │ ├── actions.mdx │ │ │ ├── components.mdx │ │ │ ├── config-files.mdx │ │ │ ├── create.mdx │ │ │ ├── deploy.mdx │ │ │ ├── dev.mdx │ │ │ ├── github-action.mdx │ │ │ ├── index.mdx │ │ │ ├── init-package.mdx │ │ │ ├── packages.mdx │ │ │ ├── sboms.mdx │ │ │ ├── tools.mdx │ │ │ └── values.mdx │ │ │ ├── roadmap.mdx │ │ │ ├── support.mdx │ │ │ └── tutorials │ │ │ ├── 0-creating-a-zarf-package.mdx │ │ │ ├── 1-initializing-a-k8s-cluster.mdx │ │ │ ├── 2-deploying-zarf-packages.mdx │ │ │ ├── 3-deploy-a-retro-arcade.mdx │ │ │ ├── 4-creating-a-k8s-cluster-with-zarf.mdx │ │ │ ├── 6-publish-and-deploy.mdx │ │ │ ├── 7-custom-init-packages.mdx │ │ │ ├── 8-resource-adoption.mdx │ │ │ ├── 9-package-create-differential.mdx │ │ │ └── index.mdx │ ├── env.d.ts │ └── styles │ │ └── custom.css └── tsconfig.json ├── src ├── api │ ├── internal │ │ └── v1beta1 │ │ │ ├── component.go │ │ │ ├── package.go │ │ │ ├── package_test.go │ │ │ ├── translate.go │ │ │ └── translate_test.go │ └── v1alpha1 │ │ ├── component.go │ │ ├── package.go │ │ └── package_test.go ├── cmd │ ├── archiver.go │ ├── cmd.go │ ├── connect.go │ ├── crane.go │ ├── destroy.go │ ├── dev.go │ ├── dev_test.go │ ├── helm.go │ ├── helm │ │ ├── LICENSE │ │ ├── dependency.go │ │ ├── dependency_build.go │ │ ├── dependency_update.go │ │ ├── flags.go │ │ ├── load_plugins.go │ │ ├── repo.go │ │ ├── repo_add.go │ │ ├── repo_index.go │ │ ├── repo_list.go │ │ ├── repo_remove.go │ │ ├── repo_update.go │ │ └── root.go │ ├── initialize.go │ ├── internal.go │ ├── k9s.go │ ├── kubectl.go │ ├── package.go │ ├── package_test.go │ ├── root.go │ ├── say.go │ ├── syft.go │ ├── table.go │ ├── testdata │ │ ├── get-creds │ │ │ ├── expected.json │ │ │ └── expected.yaml │ │ ├── inspect-manifests │ │ │ ├── chart │ │ │ │ ├── chart │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ └── deployment.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── expected.yaml │ │ │ │ ├── values.yaml │ │ │ │ └── zarf.yaml │ │ │ ├── empty │ │ │ │ └── zarf.yaml │ │ │ ├── kustomize │ │ │ │ ├── expected.yaml │ │ │ │ ├── httpd-service.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ └── zarf.yaml │ │ │ ├── manifest │ │ │ │ ├── expected-httpd-component.yaml │ │ │ │ ├── expected.yaml │ │ │ │ ├── httpd-deployment.yaml │ │ │ │ ├── svc.yaml │ │ │ │ └── zarf.yaml │ │ │ └── variable-templates │ │ │ │ ├── expected.yaml │ │ │ │ ├── httpd-deployment.yaml │ │ │ │ └── zarf.yaml │ │ ├── inspect-values-files │ │ │ ├── chart-remote │ │ │ │ ├── chart │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ └── templates │ │ │ │ │ │ └── deployment.yaml │ │ │ │ ├── expected.yaml │ │ │ │ ├── remote-values │ │ │ │ │ └── values.yaml │ │ │ │ └── zarf-template.yaml │ │ │ └── chart │ │ │ │ ├── chart │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ └── deployment.yaml │ │ │ │ └── values.yaml │ │ │ │ ├── expected-httpd-component.yaml │ │ │ │ ├── expected.yaml │ │ │ │ ├── values.yaml │ │ │ │ └── zarf.yaml │ │ └── package-list │ │ │ ├── expected.json │ │ │ └── expected.yaml │ ├── tools.go │ ├── vendor.go │ ├── version.go │ ├── viper.go │ ├── wait.go │ ├── yq.go │ ├── zarf_tools.go │ └── zarf_tools_test.go ├── config │ ├── config.go │ └── lang │ │ └── english.go ├── internal │ ├── agent │ │ ├── hooks │ │ │ ├── argocd-application.go │ │ │ ├── argocd-application_test.go │ │ │ ├── argocd-appproject.go │ │ │ ├── argocd-appproject_test.go │ │ │ ├── argocd-repository.go │ │ │ ├── argocd-repository_test.go │ │ │ ├── common.go │ │ │ ├── common_test.go │ │ │ ├── flux-gitrepo.go │ │ │ ├── flux-gitrepo_test.go │ │ │ ├── flux-helmrepo.go │ │ │ ├── flux-helmrepo_test.go │ │ │ ├── flux-ocirepo.go │ │ │ ├── flux-ocirepo_test.go │ │ │ ├── pods.go │ │ │ ├── pods_test.go │ │ │ └── utils_test.go │ │ ├── http │ │ │ ├── admission │ │ │ │ └── handler.go │ │ │ ├── proxy.go │ │ │ └── proxy_test.go │ │ ├── operations │ │ │ ├── hook.go │ │ │ └── patch.go │ │ └── start.go │ ├── dns │ │ ├── dns.go │ │ └── dns_test.go │ ├── feature │ │ ├── feature.go │ │ └── feature_test.go │ ├── git │ │ ├── fallback.go │ │ ├── git.go │ │ ├── git_test.go │ │ ├── repository.go │ │ └── repository_test.go │ ├── gitea │ │ ├── gitea.go │ │ └── gitea_test.go │ ├── healthchecks │ │ ├── healthchecks.go │ │ └── healthchecks_test.go │ ├── packager │ │ ├── helm │ │ │ ├── chart.go │ │ │ ├── common.go │ │ │ ├── destroy.go │ │ │ ├── images.go │ │ │ ├── images_test.go │ │ │ ├── post-render.go │ │ │ ├── repo.go │ │ │ ├── template.go │ │ │ ├── template_test.go │ │ │ ├── testdata │ │ │ │ ├── annotations-test │ │ │ │ │ └── test-chart │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ ├── charts │ │ │ │ │ │ └── subchart │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ └── deployment.yaml │ │ │ │ │ │ │ └── values.yaml │ │ │ │ │ │ ├── templates │ │ │ │ │ │ └── deployment.yaml │ │ │ │ │ │ └── values.yaml │ │ │ │ └── template │ │ │ │ │ ├── expected │ │ │ │ │ └── manifest.yaml │ │ │ │ │ └── simple-chart │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ └── templates │ │ │ │ │ ├── pod.yaml │ │ │ │ │ └── svc.yaml │ │ │ └── zarf.go │ │ ├── images │ │ │ ├── common.go │ │ │ ├── progress.go │ │ │ ├── pull.go │ │ │ ├── pull_test.go │ │ │ ├── push.go │ │ │ ├── push_test.go │ │ │ └── testdata │ │ │ │ ├── crane-oci-layout │ │ │ │ └── images │ │ │ │ │ ├── blobs │ │ │ │ │ └── sha256 │ │ │ │ │ │ ├── 03b62250a3cb1abd125271d393fc08bf0cc713391eda6b57c02d1ef85efcc25c │ │ │ │ │ │ ├── 36d1d40a06b50801a6a61e0d77839ddcb1fad96236bc9bb0b054a0a88ddee6d2 │ │ │ │ │ │ ├── 388644128f73336edd09211c3d96cfa150d79ad3c37cd6a1a1daced62e832015 │ │ │ │ │ │ ├── 3e84ea487b4c52a3299cf2996f70e7e1721236a0998da33a0e30107108486b3e │ │ │ │ │ │ ├── 527f371018c97e284c0bdafe15473f36fe9cea21f461d1c46628df7dbae25e01 │ │ │ │ │ │ ├── 6162308b7421163281afe8bd1c69ae16d50e675cbe93ff8b34f8ad5efb71a866 │ │ │ │ │ │ ├── 74cc54e27dc41bb10dc4b2226072d469509f2f22f1a3ce74f4a59661a1d44602 │ │ │ │ │ │ ├── 9a4fb3c3a1b9efd437f8dc47ea37ea64fcd81a08591f4343271a57f39cd4639f │ │ │ │ │ │ ├── b28556176ff21acc94aeecd721dc335722f98fe36c480ce9efe35a4987571cec │ │ │ │ │ │ ├── cb03d9ef0fc8b4a5669cdcf652c23670f93bd1bd4f1431a57ad4917d894a90e2 │ │ │ │ │ │ ├── dfd1d516bc666aa249eb62a4ad12460d77b1db3ce6f27b129e8462b6ee8170cb │ │ │ │ │ │ └── e6590344b1a5dc518829d6ea1524fc12f8bcd14ee9a02aa6ad8360cce3a9a9e9 │ │ │ │ │ ├── index.json │ │ │ │ │ └── oci-layout │ │ │ │ └── oras-oci-layout │ │ │ │ └── images │ │ │ │ ├── blobs │ │ │ │ └── sha256 │ │ │ │ │ ├── 03b62250a3cb1abd125271d393fc08bf0cc713391eda6b57c02d1ef85efcc25c │ │ │ │ │ ├── 388644128f73336edd09211c3d96cfa150d79ad3c37cd6a1a1daced62e832015 │ │ │ │ │ ├── 3e84ea487b4c52a3299cf2996f70e7e1721236a0998da33a0e30107108486b3e │ │ │ │ │ ├── 527f371018c97e284c0bdafe15473f36fe9cea21f461d1c46628df7dbae25e01 │ │ │ │ │ ├── 6162308b7421163281afe8bd1c69ae16d50e675cbe93ff8b34f8ad5efb71a866 │ │ │ │ │ ├── 6a88822e787d1df28b83ebd72eb348569fc44351b84bba25c0bc566f6083965b │ │ │ │ │ ├── 74cc54e27dc41bb10dc4b2226072d469509f2f22f1a3ce74f4a59661a1d44602 │ │ │ │ │ ├── 9a4fb3c3a1b9efd437f8dc47ea37ea64fcd81a08591f4343271a57f39cd4639f │ │ │ │ │ ├── b28556176ff21acc94aeecd721dc335722f98fe36c480ce9efe35a4987571cec │ │ │ │ │ ├── cb03d9ef0fc8b4a5669cdcf652c23670f93bd1bd4f1431a57ad4917d894a90e2 │ │ │ │ │ ├── dfd1d516bc666aa249eb62a4ad12460d77b1db3ce6f27b129e8462b6ee8170cb │ │ │ │ │ └── e6590344b1a5dc518829d6ea1524fc12f8bcd14ee9a02aa6ad8360cce3a9a9e9 │ │ │ │ ├── index.json │ │ │ │ └── oci-layout │ │ ├── kustomize │ │ │ └── build.go │ │ ├── requirements │ │ │ ├── requirements.go │ │ │ └── requirements_test.go │ │ └── template │ │ │ ├── template.go │ │ │ └── template_test.go │ ├── pkgcfg │ │ ├── pkgcfg.go │ │ └── pkgcfg_test.go │ ├── split │ │ ├── split.go │ │ └── split_test.go │ ├── template │ │ ├── template.go │ │ ├── template_test.go │ │ └── testdata │ │ │ ├── configmap │ │ │ ├── expected.yaml │ │ │ └── input.yaml │ │ │ ├── constants │ │ │ ├── expected.yaml │ │ │ └── input.yaml │ │ │ ├── deployment │ │ │ ├── expected.yaml │ │ │ └── input.yaml │ │ │ ├── invalid │ │ │ └── input.yaml │ │ │ ├── sprig-basic │ │ │ ├── expected.yaml │ │ │ └── input.yaml │ │ │ └── sprig-functions │ │ │ ├── expected.yaml │ │ │ └── input.yaml │ └── value │ │ ├── testdata │ │ ├── invalid │ │ │ ├── malformed.yaml │ │ │ └── tabs.yaml │ │ └── valid │ │ │ ├── arrays.yaml │ │ │ ├── complex.yaml │ │ │ ├── empty.yaml │ │ │ ├── merge-overwrite.yaml │ │ │ ├── merge1.yaml │ │ │ ├── merge2.yaml │ │ │ ├── nulls.yaml │ │ │ └── simple.yaml │ │ ├── value.go │ │ └── value_test.go ├── pkg │ ├── archive │ │ ├── archive.go │ │ └── archive_test.go │ ├── cluster │ │ ├── cluster.go │ │ ├── cluster_test.go │ │ ├── data.go │ │ ├── distro.go │ │ ├── distro_test.go │ │ ├── injector.go │ │ ├── injector_test.go │ │ ├── namespace.go │ │ ├── pvc.go │ │ ├── pvc_test.go │ │ ├── secrets.go │ │ ├── secrets_test.go │ │ ├── testdata │ │ │ ├── expected-injection-pod.json │ │ │ └── expected-injection-service.json │ │ ├── tunnel.go │ │ ├── tunnel_test.go │ │ ├── zarf.go │ │ └── zarf_test.go │ ├── interactive │ │ ├── components.go │ │ └── prompt.go │ ├── lint │ │ ├── findings.go │ │ ├── findings_test.go │ │ ├── rules.go │ │ ├── rules_test.go │ │ ├── schema.go │ │ ├── schema_test.go │ │ ├── testdata │ │ │ └── package-with-templates │ │ │ │ └── zarf.yaml │ │ ├── validate.go │ │ └── validate_test.go │ ├── logger │ │ ├── logger.go │ │ └── logger_test.go │ ├── message │ │ └── message.go │ ├── packager │ │ ├── actions │ │ │ ├── actions.go │ │ │ └── actions_test.go │ │ ├── create.go │ │ ├── create_test.go │ │ ├── deploy.go │ │ ├── dev.go │ │ ├── filters │ │ │ ├── deploy.go │ │ │ ├── deploy_test.go │ │ │ ├── diff.go │ │ │ ├── diff_test.go │ │ │ ├── empty.go │ │ │ ├── empty_test.go │ │ │ ├── os.go │ │ │ ├── os_test.go │ │ │ ├── select.go │ │ │ ├── select_test.go │ │ │ ├── strat.go │ │ │ ├── strat_test.go │ │ │ ├── utils.go │ │ │ └── utils_test.go │ │ ├── find_images.go │ │ ├── find_images_test.go │ │ ├── generate.go │ │ ├── inspect.go │ │ ├── layout │ │ │ ├── assemble.go │ │ │ ├── assemble_test.go │ │ │ ├── layout.go │ │ │ ├── layout_test.go │ │ │ ├── package.go │ │ │ ├── package_test.go │ │ │ ├── sbom.go │ │ │ ├── sbom_test.go │ │ │ ├── testdata │ │ │ │ ├── cosign.key │ │ │ │ ├── cosign.pub │ │ │ │ ├── zarf-package │ │ │ │ │ ├── archive.tar │ │ │ │ │ ├── chart │ │ │ │ │ │ ├── .helmignore │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── NOTICE │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ │ └── values.yaml │ │ │ │ │ ├── data.txt │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── injection │ │ │ │ │ │ └── data.txt │ │ │ │ │ ├── kustomize │ │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ │ └── namespace.yaml │ │ │ │ │ ├── values.yaml │ │ │ │ │ └── zarf.yaml │ │ │ │ └── zarf-skeleton-package │ │ │ │ │ ├── archive.tar │ │ │ │ │ ├── chart │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── NOTICE │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ │ ├── data.txt │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── injection │ │ │ │ │ └── data.txt │ │ │ │ │ ├── kustomize │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ └── namespace.yaml │ │ │ │ │ ├── values.yaml │ │ │ │ │ └── zarf.yaml │ │ │ └── viewer │ │ │ │ ├── common.js │ │ │ │ ├── compare.gohtml │ │ │ │ ├── compare.js │ │ │ │ ├── library.js │ │ │ │ ├── styles.css │ │ │ │ ├── template.gohtml │ │ │ │ ├── theme.css │ │ │ │ └── viewer.js │ │ ├── lint.go │ │ ├── lint_test.go │ │ ├── load.go │ │ ├── load │ │ │ ├── import.go │ │ │ ├── import_test.go │ │ │ ├── load.go │ │ │ ├── load_test.go │ │ │ └── testdata │ │ │ │ ├── import │ │ │ │ ├── branch │ │ │ │ │ ├── child │ │ │ │ │ │ └── zarf.yaml │ │ │ │ │ ├── common │ │ │ │ │ │ └── zarf.yaml │ │ │ │ │ ├── expected.yaml │ │ │ │ │ └── zarf.yaml │ │ │ │ ├── chart │ │ │ │ │ ├── common │ │ │ │ │ │ └── zarf.yaml │ │ │ │ │ ├── expected.yaml │ │ │ │ │ └── zarf.yaml │ │ │ │ ├── circular │ │ │ │ │ ├── first │ │ │ │ │ │ └── zarf.yaml │ │ │ │ │ ├── second │ │ │ │ │ │ └── zarf.yaml │ │ │ │ │ └── third │ │ │ │ │ │ └── zarf.yaml │ │ │ │ ├── flavor │ │ │ │ │ ├── child │ │ │ │ │ │ └── zarf.yaml │ │ │ │ │ ├── expected.yaml │ │ │ │ │ └── zarf.yaml │ │ │ │ ├── import-each-other │ │ │ │ │ ├── expected.yaml │ │ │ │ │ ├── first-import │ │ │ │ │ │ └── zarf.yaml │ │ │ │ │ ├── second-import │ │ │ │ │ │ └── zarf.yaml │ │ │ │ │ └── zarf.yaml │ │ │ │ └── variables │ │ │ │ │ ├── expected.yaml │ │ │ │ │ ├── import │ │ │ │ │ └── zarf.yaml │ │ │ │ │ ├── secondImport │ │ │ │ │ └── zarf.yaml │ │ │ │ │ └── zarf.yaml │ │ │ │ └── package-with-flavors │ │ │ │ └── zarf.yaml │ │ ├── load_test.go │ │ ├── mirror.go │ │ ├── packager.go │ │ ├── packager_test.go │ │ ├── publish.go │ │ ├── publish_test.go │ │ ├── pull.go │ │ ├── pull_test.go │ │ ├── remove.go │ │ ├── testdata │ │ │ ├── create │ │ │ │ ├── create-publish-arch │ │ │ │ │ └── zarf.yaml │ │ │ │ └── differential │ │ │ │ │ ├── older-version │ │ │ │ │ └── zarf.yaml │ │ │ │ │ └── zarf.yaml │ │ │ ├── find-images │ │ │ │ ├── agent │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ └── zarf.yaml │ │ │ │ ├── flux-oci-repo │ │ │ │ │ ├── oci-repo-digest.yaml │ │ │ │ │ ├── oci-repo-invalid.yaml │ │ │ │ │ ├── oci-repo-tag.yaml │ │ │ │ │ └── zarf.yaml │ │ │ │ ├── fuzzy │ │ │ │ │ ├── configmap.yml │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ └── zarf.yaml │ │ │ │ ├── helm-chart │ │ │ │ │ ├── chart │ │ │ │ │ │ ├── .helmignore │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ │ └── test-connection.yaml │ │ │ │ │ │ └── values.yaml │ │ │ │ │ ├── values-invalid-image.yaml │ │ │ │ │ ├── values.yaml │ │ │ │ │ └── zarf.yaml │ │ │ │ ├── invalid-helm-repo │ │ │ │ │ └── zarf.yaml │ │ │ │ ├── invalid-manifest-yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ └── zarf.yaml │ │ │ │ ├── kustomize │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ └── zarf.yaml │ │ │ │ ├── repo-chart-path │ │ │ │ │ └── zarf.yaml │ │ │ │ └── valid-image-uri │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ ├── policy.yaml │ │ │ │ │ └── zarf.yaml │ │ │ ├── lint-with-imports │ │ │ │ ├── compose │ │ │ │ │ ├── linted-import │ │ │ │ │ │ └── zarf.yaml │ │ │ │ │ └── zarf.yaml │ │ │ │ ├── flavor │ │ │ │ │ └── zarf.yaml │ │ │ │ └── variables │ │ │ │ │ └── zarf.yaml │ │ │ ├── load-package │ │ │ │ ├── compressed │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── zarf-package-test-amd64-0.0.1.tar.zst │ │ │ │ │ └── zarf.yaml │ │ │ │ ├── split │ │ │ │ │ └── zarf.yaml │ │ │ │ └── uncompressed │ │ │ │ │ ├── zarf-package-test-uncompressed-amd64-0.0.1.tar │ │ │ │ │ └── zarf.yaml │ │ │ ├── publish │ │ │ │ ├── cosign.key │ │ │ │ └── cosign.pub │ │ │ └── skeleton │ │ │ │ ├── test.txt │ │ │ │ └── zarf.yaml │ │ ├── update.go │ │ └── update_test.go │ ├── pki │ │ ├── pki.go │ │ └── pki_test.go │ ├── state │ │ ├── state.go │ │ └── state_test.go │ ├── transform │ │ ├── artifact.go │ │ ├── artifact_test.go │ │ ├── git.go │ │ ├── git_test.go │ │ ├── image.go │ │ ├── image_test.go │ │ └── types.go │ ├── utils │ │ ├── auth.go │ │ ├── auth_test.go │ │ ├── bytes.go │ │ ├── bytes_test.go │ │ ├── cosign.go │ │ ├── exec │ │ │ └── exec.go │ │ ├── htpasswd.go │ │ ├── image.go │ │ ├── io.go │ │ ├── io_test.go │ │ ├── network.go │ │ ├── network_test.go │ │ ├── wait.go │ │ ├── wait_test.go │ │ └── yaml.go │ ├── variables │ │ ├── common.go │ │ ├── templates.go │ │ ├── templates_test.go │ │ ├── testdata │ │ │ └── file.txt │ │ ├── variables.go │ │ └── variables_test.go │ └── zoci │ │ ├── common.go │ │ ├── copier.go │ │ ├── fetch.go │ │ ├── pull.go │ │ ├── pull_test.go │ │ ├── push.go │ │ ├── push_test.go │ │ ├── testdata │ │ └── basic │ │ │ ├── pod.yaml │ │ │ └── zarf.yaml │ │ └── utils.go ├── test │ ├── common.go │ ├── e2e │ │ ├── 00_use_cli_test.go │ │ ├── 01_component_choice_test.go │ │ ├── 02_component_actions_test.go │ │ ├── 03_deprecations_test.go │ │ ├── 04_create_templating_test.go │ │ ├── 05_tarball_test.go │ │ ├── 06_create_sbom_test.go │ │ ├── 07_create_git_test.go │ │ ├── 08_create_differential_test.go │ │ ├── 09_component_compose_test.go │ │ ├── 10_component_flavor_test.go │ │ ├── 11_oci_pull_inspect_test.go │ │ ├── 12_package_signing_test.go │ │ ├── 13_find_images_test.go │ │ ├── 13_zarf_package_generate_test.go │ │ ├── 14_oci_compose_test.go │ │ ├── 20_zarf_init_test.go │ │ ├── 21_connect_creds_test.go │ │ ├── 22_git_and_gitops_test.go │ │ ├── 23_data_injection_test.go │ │ ├── 24_variables_test.go │ │ ├── 25_helm_test.go │ │ ├── 26_simple_packages_test.go │ │ ├── 27_deploy_regression_test.go │ │ ├── 28_wait_test.go │ │ ├── 29_config_file_test.go │ │ ├── 30_component_action_cluster_test.go │ │ ├── 31_checksum_and_signature_test.go │ │ ├── 32_build_machine_info_test.go │ │ ├── 33_manifest_with_symlink_test.go │ │ ├── 34_custom_init_package_test.go │ │ ├── 36_health_check_test.go │ │ ├── 37_component_status_test.go │ │ ├── 38_ephemeral_container_test.go │ │ ├── 39_crane_to_oras_test.go │ │ ├── 40_namespace_override_test.go │ │ ├── 41_remove_test.go │ │ ├── 42_values_test.go │ │ ├── 50_oci_publish_deploy_test.go │ │ ├── 99_appliance_remove_test.go │ │ ├── 99_yolo_test.go │ │ └── main_test.go │ ├── external │ │ ├── common.go │ │ ├── configure-gitea.sh │ │ ├── docker-compose.yml │ │ ├── docker-registry-values.yaml │ │ ├── ext_in_cluster_test.go │ │ ├── ext_out_cluster_test.go │ │ └── gitea-values.yaml │ ├── nightly │ │ └── ecr_publish_test.go │ ├── packages │ │ ├── 00-dev-inspect-definition │ │ │ ├── expected-zarf.yaml │ │ │ ├── import │ │ │ │ └── zarf.yaml │ │ │ └── zarf.yaml │ │ ├── 00-extract-path │ │ │ └── zarf.yaml │ │ ├── 00-helm-annotations │ │ │ └── zarf.yaml │ │ ├── 00-http-pull │ │ │ └── zarf.yaml │ │ ├── 00-kube-version-override │ │ │ ├── values.yaml │ │ │ └── zarf.yaml │ │ ├── 00-no-components │ │ │ └── zarf.yaml │ │ ├── 00-yq-checks │ │ │ ├── file1.yaml │ │ │ └── file2.yaml │ │ ├── 01-component-choice │ │ │ ├── blank-file.txt │ │ │ └── zarf.yaml │ │ ├── 03-deprecated-component-scripts │ │ │ └── zarf.yaml │ │ ├── 03-deprecated-set-variable │ │ │ └── zarf.yaml │ │ ├── 04-file-folders-templating-sbom │ │ │ ├── include-files │ │ │ │ ├── requirements.txt │ │ │ │ ├── simple.txt │ │ │ │ └── something.yaml │ │ │ ├── requirements.txt │ │ │ └── zarf.yaml │ │ ├── 04-templating │ │ │ └── zarf.yaml │ │ ├── 05-archive-structure │ │ │ ├── files │ │ │ │ ├── coffee-ipsum.txt │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── test-values.yaml │ │ │ ├── sub-package │ │ │ │ └── zarf.yaml │ │ │ └── zarf.yaml │ │ ├── 05-multi-part │ │ │ └── zarf.yaml │ │ ├── 08-differential-package │ │ │ └── zarf.yaml │ │ ├── 09-composable-packages │ │ │ ├── bad-local-os │ │ │ │ └── zarf.yaml │ │ │ ├── files │ │ │ │ ├── coffee-ipsum.txt │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── test-values.yaml │ │ │ ├── sub-package │ │ │ │ └── zarf.yaml │ │ │ └── zarf.yaml │ │ ├── 10-package-flavors │ │ │ ├── sub-package │ │ │ │ └── zarf.yaml │ │ │ └── zarf.yaml │ │ ├── 11-simple-package │ │ │ ├── test.txt │ │ │ └── zarf.yaml │ │ ├── 12-package-signing │ │ │ └── zarf.yaml │ │ ├── 13-find-images-with-vars │ │ │ ├── deployment.yaml │ │ │ ├── simple-helm │ │ │ │ ├── Chart.yaml │ │ │ │ └── templates │ │ │ │ │ └── deployment.yaml │ │ │ ├── values.yaml │ │ │ └── zarf.yaml │ │ ├── 14-import-everything │ │ │ ├── inception │ │ │ │ └── zarf.yaml │ │ │ ├── remote-resources │ │ │ │ └── zarf.yaml │ │ │ └── zarf.yaml │ │ ├── 20-mismatched-arch-init │ │ │ └── zarf.yaml │ │ ├── 22-git-data │ │ │ └── zarf.yaml │ │ ├── 24-evil-variables │ │ │ └── zarf.yaml │ │ ├── 25-chart-deps │ │ │ ├── .gitignore │ │ │ ├── parent-chart │ │ │ │ └── Chart.yaml │ │ │ └── zarf.yaml │ │ ├── 25-evil-chart-lookup │ │ │ └── zarf.yaml │ │ ├── 25-evil-dos-games │ │ │ ├── manifests │ │ │ │ ├── evil-deployment.yaml │ │ │ │ └── service.yaml │ │ │ └── zarf.yaml │ │ ├── 25-evil-templates │ │ │ ├── configmap.yaml │ │ │ └── zarf.yaml │ │ ├── 25-helm-release-history │ │ │ ├── chart │ │ │ │ ├── Chart.yaml │ │ │ │ └── templates │ │ │ │ │ └── configmap.yaml │ │ │ └── zarf.yaml │ │ ├── 25-local-tgz-chart │ │ │ └── zarf.yaml │ │ ├── 25-manifest-adoption │ │ │ └── deployment.yaml │ │ ├── 26-agent-ignore │ │ │ ├── manifests │ │ │ │ ├── deployment.yaml │ │ │ │ └── namespace.yaml │ │ │ └── zarf.yaml │ │ ├── 26-image-dos-games │ │ │ └── zarf.yaml │ │ ├── 28-helm-no-wait │ │ │ ├── never-ready.pod.yaml │ │ │ └── zarf.yaml │ │ ├── 31-component-actions-edgecases │ │ │ └── zarf.yaml │ │ ├── 34-manifest-with-symlink │ │ │ ├── manifests │ │ │ │ ├── img │ │ │ │ │ └── test.txt │ │ │ │ └── resources │ │ │ │ │ └── img │ │ │ └── zarf.yaml │ │ ├── 35-custom-init-package │ │ │ └── zarf.yaml │ │ ├── 36-health-checks │ │ │ ├── ready-pod.yaml │ │ │ └── zarf.yaml │ │ ├── 37-component-status │ │ │ ├── component-status.yaml │ │ │ └── zarf.yaml │ │ ├── 38-ephemeral-container │ │ │ ├── pod.yaml │ │ │ └── zarf.yaml │ │ ├── 39-crane-to-oras │ │ │ ├── dockerfile │ │ │ └── zarf.yaml │ │ ├── 40-namespace-override │ │ │ ├── chart │ │ │ │ ├── Chart.yaml │ │ │ │ └── templates │ │ │ │ │ └── configmap.yaml │ │ │ ├── manifests │ │ │ │ ├── configmap1.yaml │ │ │ │ └── configmap2.yaml │ │ │ ├── multi-ns │ │ │ │ └── zarf.yaml │ │ │ ├── zarf-config.yaml │ │ │ └── zarf.yaml │ │ ├── 41-remove-test │ │ │ ├── configmap.yaml │ │ │ ├── fail │ │ │ │ ├── deployment.yaml │ │ │ │ └── zarf.yaml │ │ │ └── zarf.yaml │ │ ├── 42-values │ │ │ ├── action-configmap.yaml │ │ │ ├── configmap.yaml │ │ │ ├── override-values.yaml │ │ │ ├── processed-template-configmap.yaml │ │ │ ├── raw-template-configmap.yaml │ │ │ ├── values │ │ │ │ └── values.yaml │ │ │ └── zarf.yaml │ │ ├── 99-registry-url │ │ │ ├── registry-url.yaml │ │ │ └── zarf.yaml │ │ ├── external-helm-auth │ │ │ └── zarf.yaml │ │ ├── zarf-test.prv-key │ │ └── zarf-test.pub │ ├── testutil │ │ ├── registry.go │ │ ├── schema.go │ │ └── testutil.go │ ├── upgrade │ │ ├── files │ │ │ ├── service.yaml │ │ │ └── test-values.yaml │ │ ├── previously_built_test.go │ │ └── zarf.yaml │ └── zarf-config-test.toml └── types │ └── runtime.go ├── zarf-config.toml ├── zarf.schema.json └── zarf.yaml /.adr-dir: -------------------------------------------------------------------------------- 1 | adr 2 | -------------------------------------------------------------------------------- /.commitlintrc.yaml: -------------------------------------------------------------------------------- 1 | extends: ["@commitlint/config-conventional"] 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/.codecov.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/tech_debt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/ISSUE_TEMPLATE/tech_debt.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ux_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/ISSUE_TEMPLATE/ux_test.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/actions/cleanup-files/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/actions/cleanup-files/action.yaml -------------------------------------------------------------------------------- /.github/actions/debug-cluster/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/actions/debug-cluster/action.yaml -------------------------------------------------------------------------------- /.github/actions/install-tools/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/actions/install-tools/action.yaml -------------------------------------------------------------------------------- /.github/actions/k3d/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/actions/k3d/action.yaml -------------------------------------------------------------------------------- /.github/actions/packages/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/actions/packages/action.yaml -------------------------------------------------------------------------------- /.github/actions/slack/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/actions/slack/action.yaml -------------------------------------------------------------------------------- /.github/codeql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/codeql.yaml -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/check-go-mod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/workflows/check-go-mod.yml -------------------------------------------------------------------------------- /.github/workflows/commitlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/workflows/commitlint.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/dummy-dco.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/workflows/dummy-dco.yaml -------------------------------------------------------------------------------- /.github/workflows/nightly-ecr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/workflows/nightly-ecr.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-eks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/workflows/nightly-eks.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/workflows/nightly-release.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-application-packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/workflows/publish-application-packages.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/scan-codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/workflows/scan-codeql.yml -------------------------------------------------------------------------------- /.github/workflows/scan-docs-and-schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/workflows/scan-docs-and-schema.yml -------------------------------------------------------------------------------- /.github/workflows/scan-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/workflows/scan-lint.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/workflows/scorecard.yaml -------------------------------------------------------------------------------- /.github/workflows/test-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/workflows/test-e2e.yml -------------------------------------------------------------------------------- /.github/workflows/test-external.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/workflows/test-external.yml -------------------------------------------------------------------------------- /.github/workflows/test-import.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/workflows/test-import.yaml -------------------------------------------------------------------------------- /.github/workflows/test-package-create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/workflows/test-package-create.yml -------------------------------------------------------------------------------- /.github/workflows/test-proxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/workflows/test-proxy.yml -------------------------------------------------------------------------------- /.github/workflows/test-shim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/workflows/test-shim.yml -------------------------------------------------------------------------------- /.github/workflows/test-site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/workflows/test-site.yml -------------------------------------------------------------------------------- /.github/workflows/test-unit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/workflows/test-unit.yml -------------------------------------------------------------------------------- /.github/workflows/test-upgrade.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/workflows/test-upgrade.yml -------------------------------------------------------------------------------- /.github/workflows/test-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.github/workflows/test-windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /.goreleaser-pro.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.goreleaser-pro.yaml -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /.grype.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.grype.yaml -------------------------------------------------------------------------------- /.markdownlint-cli2.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.markdownlint-cli2.jsonc -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /ADOPTERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/ADOPTERS.md -------------------------------------------------------------------------------- /CHARTER.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/CHARTER.pdf -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COMMUNITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/COMMUNITY.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTOR_LADDER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/CONTRIBUTOR_LADDER.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/README.md -------------------------------------------------------------------------------- /RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/RELEASES.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /adr/0001-record-architecture-decisions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0001-record-architecture-decisions.md -------------------------------------------------------------------------------- /adr/0002-moving-e2e-tests-away-from-terratest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0002-moving-e2e-tests-away-from-terratest.md -------------------------------------------------------------------------------- /adr/0004-generate-sboms-with-witness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0004-generate-sboms-with-witness.md -------------------------------------------------------------------------------- /adr/0005-mutating-webhook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0005-mutating-webhook.md -------------------------------------------------------------------------------- /adr/0006-package-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0006-package-variables.md -------------------------------------------------------------------------------- /adr/0007-use-rust-binary-for-both-injection-stages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0007-use-rust-binary-for-both-injection-stages.md -------------------------------------------------------------------------------- /adr/0008-begin-using-unit-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0008-begin-using-unit-tests.md -------------------------------------------------------------------------------- /adr/0009-sbom-more-than-images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0009-sbom-more-than-images.md -------------------------------------------------------------------------------- /adr/0010-yolo-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0010-yolo-mode.md -------------------------------------------------------------------------------- /adr/0011-scripts-actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0011-scripts-actions.md -------------------------------------------------------------------------------- /adr/0012-local-image-support-via-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0012-local-image-support-via-docker.md -------------------------------------------------------------------------------- /adr/0013-bigbang-as-a-noun.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0013-bigbang-as-a-noun.md -------------------------------------------------------------------------------- /adr/0014-oci-publish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0014-oci-publish.md -------------------------------------------------------------------------------- /adr/0015-artifact-server-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0015-artifact-server-support.md -------------------------------------------------------------------------------- /adr/0016-zarf-definition-of-generally-available.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0016-zarf-definition-of-generally-available.md -------------------------------------------------------------------------------- /adr/0017-zarf-bundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0017-zarf-bundle.md -------------------------------------------------------------------------------- /adr/0018-hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0018-hooks.md -------------------------------------------------------------------------------- /adr/0019-decouple-transformation-library-from-zarf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0019-decouple-transformation-library-from-zarf.md -------------------------------------------------------------------------------- /adr/0020-package-sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0020-package-sources.md -------------------------------------------------------------------------------- /adr/0021-composable-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0021-composable-components.md -------------------------------------------------------------------------------- /adr/0022-dev-cmd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0022-dev-cmd.md -------------------------------------------------------------------------------- /adr/0023-chart-override.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0023-chart-override.md -------------------------------------------------------------------------------- /adr/0024-starlight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0024-starlight.md -------------------------------------------------------------------------------- /adr/0025-logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0025-logging.md -------------------------------------------------------------------------------- /adr/0026-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0026-schema.md -------------------------------------------------------------------------------- /adr/0026-schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/0026-schema.yaml -------------------------------------------------------------------------------- /adr/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/adr/template.md -------------------------------------------------------------------------------- /cosign.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/cosign.pub -------------------------------------------------------------------------------- /examples/argocd/apps/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/argocd/apps/values.yaml -------------------------------------------------------------------------------- /examples/argocd/baseline/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/argocd/baseline/values.yaml -------------------------------------------------------------------------------- /examples/argocd/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/argocd/zarf.yaml -------------------------------------------------------------------------------- /examples/component-actions/test-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/component-actions/test-configmap.yaml -------------------------------------------------------------------------------- /examples/component-actions/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/component-actions/test.txt -------------------------------------------------------------------------------- /examples/component-actions/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/component-actions/zarf.yaml -------------------------------------------------------------------------------- /examples/composable-packages/quake-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/composable-packages/quake-service.yaml -------------------------------------------------------------------------------- /examples/composable-packages/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/composable-packages/zarf.yaml -------------------------------------------------------------------------------- /examples/config-file/simple-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/config-file/simple-configmap.yaml -------------------------------------------------------------------------------- /examples/config-file/zarf-config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/config-file/zarf-config.toml -------------------------------------------------------------------------------- /examples/config-file/zarf-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/config-file/zarf-config.yaml -------------------------------------------------------------------------------- /examples/config-file/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/config-file/zarf.yaml -------------------------------------------------------------------------------- /examples/dos-games/image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/dos-games/image/Dockerfile -------------------------------------------------------------------------------- /examples/dos-games/image/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/dos-games/image/index.html -------------------------------------------------------------------------------- /examples/dos-games/manifests/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/dos-games/manifests/deployment.yaml -------------------------------------------------------------------------------- /examples/dos-games/manifests/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/dos-games/manifests/service.yaml -------------------------------------------------------------------------------- /examples/dos-games/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/dos-games/zarf.yaml -------------------------------------------------------------------------------- /examples/git-data/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/git-data/zarf.yaml -------------------------------------------------------------------------------- /examples/helm-charts/chart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/helm-charts/chart/.helmignore -------------------------------------------------------------------------------- /examples/helm-charts/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/helm-charts/chart/Chart.yaml -------------------------------------------------------------------------------- /examples/helm-charts/chart/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/helm-charts/chart/LICENSE -------------------------------------------------------------------------------- /examples/helm-charts/chart/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/helm-charts/chart/NOTICE -------------------------------------------------------------------------------- /examples/helm-charts/chart/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/helm-charts/chart/templates/NOTES.txt -------------------------------------------------------------------------------- /examples/helm-charts/chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/helm-charts/chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /examples/helm-charts/chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/helm-charts/chart/templates/deployment.yaml -------------------------------------------------------------------------------- /examples/helm-charts/chart/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/helm-charts/chart/templates/hpa.yaml -------------------------------------------------------------------------------- /examples/helm-charts/chart/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/helm-charts/chart/templates/ingress.yaml -------------------------------------------------------------------------------- /examples/helm-charts/chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/helm-charts/chart/templates/service.yaml -------------------------------------------------------------------------------- /examples/helm-charts/chart/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/helm-charts/chart/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /examples/helm-charts/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/helm-charts/chart/values.yaml -------------------------------------------------------------------------------- /examples/helm-charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/helm-charts/values.yaml -------------------------------------------------------------------------------- /examples/helm-charts/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/helm-charts/zarf.yaml -------------------------------------------------------------------------------- /examples/kiwix/manifests/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/kiwix/manifests/deployment.yaml -------------------------------------------------------------------------------- /examples/kiwix/manifests/persistence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/kiwix/manifests/persistence.yaml -------------------------------------------------------------------------------- /examples/kiwix/manifests/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/kiwix/manifests/service.yaml -------------------------------------------------------------------------------- /examples/kiwix/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/kiwix/zarf.yaml -------------------------------------------------------------------------------- /examples/kiwix/zim-data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/longhorn/connect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/longhorn/connect.yaml -------------------------------------------------------------------------------- /examples/longhorn/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/longhorn/values.yaml -------------------------------------------------------------------------------- /examples/longhorn/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/longhorn/zarf.yaml -------------------------------------------------------------------------------- /examples/manifests/httpd-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/manifests/httpd-deployment.yaml -------------------------------------------------------------------------------- /examples/manifests/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/manifests/zarf.yaml -------------------------------------------------------------------------------- /examples/package-flavors/pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/package-flavors/pod.yaml -------------------------------------------------------------------------------- /examples/package-flavors/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/package-flavors/zarf.yaml -------------------------------------------------------------------------------- /examples/podinfo-flux/git/podinfo-kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/podinfo-flux/git/podinfo-kustomization.yaml -------------------------------------------------------------------------------- /examples/podinfo-flux/git/podinfo-source.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/podinfo-flux/git/podinfo-source.yaml -------------------------------------------------------------------------------- /examples/podinfo-flux/helm-oci/podinfo-helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/podinfo-flux/helm-oci/podinfo-helmrelease.yaml -------------------------------------------------------------------------------- /examples/podinfo-flux/helm-oci/podinfo-source.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/podinfo-flux/helm-oci/podinfo-source.yaml -------------------------------------------------------------------------------- /examples/podinfo-flux/helm/podinfo-helmrelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/podinfo-flux/helm/podinfo-helmrelease.yaml -------------------------------------------------------------------------------- /examples/podinfo-flux/helm/podinfo-source.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/podinfo-flux/helm/podinfo-source.yaml -------------------------------------------------------------------------------- /examples/podinfo-flux/oci/podinfo-kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/podinfo-flux/oci/podinfo-kustomization.yaml -------------------------------------------------------------------------------- /examples/podinfo-flux/oci/podinfo-source.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/podinfo-flux/oci/podinfo-source.yaml -------------------------------------------------------------------------------- /examples/podinfo-flux/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/podinfo-flux/zarf.yaml -------------------------------------------------------------------------------- /examples/values-templating/charts/example-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/values-templating/charts/example-chart/Chart.yaml -------------------------------------------------------------------------------- /examples/values-templating/charts/example-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/values-templating/charts/example-chart/values.yaml -------------------------------------------------------------------------------- /examples/values-templating/nginx-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/values-templating/nginx-configmap.yaml -------------------------------------------------------------------------------- /examples/values-templating/nginx-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/values-templating/nginx-deployment.yaml -------------------------------------------------------------------------------- /examples/values-templating/nginx-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/values-templating/nginx-service.yaml -------------------------------------------------------------------------------- /examples/values-templating/values/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/values-templating/values/values.yaml -------------------------------------------------------------------------------- /examples/values-templating/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/values-templating/zarf.yaml -------------------------------------------------------------------------------- /examples/variables/nginx-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/variables/nginx-configmap.yaml -------------------------------------------------------------------------------- /examples/variables/nginx-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/variables/nginx-deployment.yaml -------------------------------------------------------------------------------- /examples/variables/nginx-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/variables/nginx-service.yaml -------------------------------------------------------------------------------- /examples/variables/simple-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/variables/simple-config.json -------------------------------------------------------------------------------- /examples/variables/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/variables/zarf.yaml -------------------------------------------------------------------------------- /examples/wordpress/connect-services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/wordpress/connect-services.yaml -------------------------------------------------------------------------------- /examples/wordpress/wordpress-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/wordpress/wordpress-values.yaml -------------------------------------------------------------------------------- /examples/wordpress/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/wordpress/zarf.yaml -------------------------------------------------------------------------------- /examples/yolo/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/examples/yolo/zarf.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/go.sum -------------------------------------------------------------------------------- /hack/check-zarf-docs-and-schema.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/hack/check-zarf-docs-and-schema.sh -------------------------------------------------------------------------------- /hack/compare.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/hack/compare.tmpl -------------------------------------------------------------------------------- /hack/cots/update-gitea.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/hack/cots/update-gitea.sh -------------------------------------------------------------------------------- /hack/empty-config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/hack/empty-config.toml -------------------------------------------------------------------------------- /hack/examples-checksums/zarf-package-variables-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/hack/examples-checksums/zarf-package-variables-amd64.txt -------------------------------------------------------------------------------- /hack/examples-checksums/zarf-package-yolo-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/hack/examples-checksums/zarf-package-yolo-amd64.txt -------------------------------------------------------------------------------- /hack/grype.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/hack/grype.tmpl -------------------------------------------------------------------------------- /hack/schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/hack/schema/README.md -------------------------------------------------------------------------------- /hack/schema/create-zarf-schema.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/hack/schema/create-zarf-schema.sh -------------------------------------------------------------------------------- /hack/schema/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/hack/schema/go.mod -------------------------------------------------------------------------------- /hack/schema/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/hack/schema/go.sum -------------------------------------------------------------------------------- /hack/schema/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/hack/schema/main.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/main.go -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/netlify.toml -------------------------------------------------------------------------------- /packages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/README.md -------------------------------------------------------------------------------- /packages/distros/eks/eks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/distros/eks/eks.yaml -------------------------------------------------------------------------------- /packages/distros/eks/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/distros/eks/zarf.yaml -------------------------------------------------------------------------------- /packages/distros/k3s/k3s.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/distros/k3s/k3s.service -------------------------------------------------------------------------------- /packages/distros/k3s/zarf-clean-k3s.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/distros/k3s/zarf-clean-k3s.sh -------------------------------------------------------------------------------- /packages/distros/k3s/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/distros/k3s/zarf.yaml -------------------------------------------------------------------------------- /packages/gitea/connect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/gitea/connect.yaml -------------------------------------------------------------------------------- /packages/gitea/gitea-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/gitea/gitea-values.yaml -------------------------------------------------------------------------------- /packages/gitea/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/gitea/zarf.yaml -------------------------------------------------------------------------------- /packages/zarf-agent/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-agent/chart/Chart.yaml -------------------------------------------------------------------------------- /packages/zarf-agent/chart/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-agent/chart/templates/clusterrole.yaml -------------------------------------------------------------------------------- /packages/zarf-agent/chart/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-agent/chart/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /packages/zarf-agent/chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-agent/chart/templates/deployment.yaml -------------------------------------------------------------------------------- /packages/zarf-agent/chart/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-agent/chart/templates/role.yaml -------------------------------------------------------------------------------- /packages/zarf-agent/chart/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-agent/chart/templates/rolebinding.yaml -------------------------------------------------------------------------------- /packages/zarf-agent/chart/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-agent/chart/templates/secret.yaml -------------------------------------------------------------------------------- /packages/zarf-agent/chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-agent/chart/templates/service.yaml -------------------------------------------------------------------------------- /packages/zarf-agent/chart/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-agent/chart/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /packages/zarf-agent/chart/templates/webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-agent/chart/templates/webhook.yaml -------------------------------------------------------------------------------- /packages/zarf-agent/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-agent/chart/values.yaml -------------------------------------------------------------------------------- /packages/zarf-agent/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-agent/zarf.yaml -------------------------------------------------------------------------------- /packages/zarf-registry/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-registry/chart/Chart.yaml -------------------------------------------------------------------------------- /packages/zarf-registry/chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-registry/chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /packages/zarf-registry/chart/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-registry/chart/templates/configmap.yaml -------------------------------------------------------------------------------- /packages/zarf-registry/chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-registry/chart/templates/deployment.yaml -------------------------------------------------------------------------------- /packages/zarf-registry/chart/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-registry/chart/templates/hpa.yaml -------------------------------------------------------------------------------- /packages/zarf-registry/chart/templates/proxy-daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-registry/chart/templates/proxy-daemonset.yaml -------------------------------------------------------------------------------- /packages/zarf-registry/chart/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-registry/chart/templates/pvc.yaml -------------------------------------------------------------------------------- /packages/zarf-registry/chart/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-registry/chart/templates/secret.yaml -------------------------------------------------------------------------------- /packages/zarf-registry/chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-registry/chart/templates/service.yaml -------------------------------------------------------------------------------- /packages/zarf-registry/chart/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-registry/chart/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /packages/zarf-registry/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-registry/chart/values.yaml -------------------------------------------------------------------------------- /packages/zarf-registry/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-registry/configmap.yaml -------------------------------------------------------------------------------- /packages/zarf-registry/connect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-registry/connect.yaml -------------------------------------------------------------------------------- /packages/zarf-registry/registry-values-seed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-registry/registry-values-seed.yaml -------------------------------------------------------------------------------- /packages/zarf-registry/registry-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-registry/registry-values.yaml -------------------------------------------------------------------------------- /packages/zarf-registry/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/packages/zarf-registry/zarf.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/renovate.json -------------------------------------------------------------------------------- /site/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/.gitignore -------------------------------------------------------------------------------- /site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/README.md -------------------------------------------------------------------------------- /site/astro.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/astro.config.ts -------------------------------------------------------------------------------- /site/hack/copy-examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/hack/copy-examples.js -------------------------------------------------------------------------------- /site/linkinator.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/linkinator.config.json -------------------------------------------------------------------------------- /site/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/package-lock.json -------------------------------------------------------------------------------- /site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/package.json -------------------------------------------------------------------------------- /site/public/architecture.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/architecture.drawio.svg -------------------------------------------------------------------------------- /site/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/favicon.svg -------------------------------------------------------------------------------- /site/public/tutorials/differential_package_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/differential_package_create.html -------------------------------------------------------------------------------- /site/public/tutorials/differential_package_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/differential_package_edit.html -------------------------------------------------------------------------------- /site/public/tutorials/differential_package_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/differential_package_error.html -------------------------------------------------------------------------------- /site/public/tutorials/k3s_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/k3s_init.html -------------------------------------------------------------------------------- /site/public/tutorials/package_create_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/package_create_error.html -------------------------------------------------------------------------------- /site/public/tutorials/package_create_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/package_create_init.html -------------------------------------------------------------------------------- /site/public/tutorials/package_create_wordpress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/package_create_wordpress.html -------------------------------------------------------------------------------- /site/public/tutorials/package_deploy_connect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/package_deploy_connect.html -------------------------------------------------------------------------------- /site/public/tutorials/package_deploy_deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/package_deploy_deploy.html -------------------------------------------------------------------------------- /site/public/tutorials/package_deploy_deploy_bottom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/package_deploy_deploy_bottom.html -------------------------------------------------------------------------------- /site/public/tutorials/package_deploy_deploy_full.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/package_deploy_deploy_full.html -------------------------------------------------------------------------------- /site/public/tutorials/package_deploy_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/package_deploy_list.html -------------------------------------------------------------------------------- /site/public/tutorials/package_deploy_no_file.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/public/tutorials/package_deploy_remove_by_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/package_deploy_remove_by_file.html -------------------------------------------------------------------------------- /site/public/tutorials/package_deploy_remove_no_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/package_deploy_remove_no_confirm.html -------------------------------------------------------------------------------- /site/public/tutorials/package_deploy_suggest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/package_deploy_suggest.html -------------------------------------------------------------------------------- /site/public/tutorials/package_deploy_wordpress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/package_deploy_wordpress.html -------------------------------------------------------------------------------- /site/public/tutorials/package_deploy_wordpress_bottom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/package_deploy_wordpress_bottom.html -------------------------------------------------------------------------------- /site/public/tutorials/package_deploy_wordpress_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/package_deploy_wordpress_list.html -------------------------------------------------------------------------------- /site/public/tutorials/prepare_find_images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/prepare_find_images.html -------------------------------------------------------------------------------- /site/public/tutorials/publish_and_deploy_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/publish_and_deploy_create.html -------------------------------------------------------------------------------- /site/public/tutorials/publish_and_deploy_deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/publish_and_deploy_deploy.html -------------------------------------------------------------------------------- /site/public/tutorials/publish_and_deploy_docker_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/publish_and_deploy_docker_config.html -------------------------------------------------------------------------------- /site/public/tutorials/publish_and_deploy_inspect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/publish_and_deploy_inspect.html -------------------------------------------------------------------------------- /site/public/tutorials/publish_and_deploy_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/publish_and_deploy_list.html -------------------------------------------------------------------------------- /site/public/tutorials/publish_and_deploy_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/publish_and_deploy_login.html -------------------------------------------------------------------------------- /site/public/tutorials/publish_and_deploy_manifest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/publish_and_deploy_manifest.html -------------------------------------------------------------------------------- /site/public/tutorials/publish_and_deploy_publish.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/publish_and_deploy_publish.html -------------------------------------------------------------------------------- /site/public/tutorials/publish_and_deploy_pull.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/publish_and_deploy_pull.html -------------------------------------------------------------------------------- /site/public/tutorials/publish_and_deploy_remove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/publish_and_deploy_remove.html -------------------------------------------------------------------------------- /site/public/tutorials/publish_and_deploy_setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/publish_and_deploy_setup.html -------------------------------------------------------------------------------- /site/public/tutorials/resource_adoption_adopted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/resource_adoption_adopted.html -------------------------------------------------------------------------------- /site/public/tutorials/resource_adoption_connect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/resource_adoption_connect.html -------------------------------------------------------------------------------- /site/public/tutorials/resource_adoption_deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/resource_adoption_deploy.html -------------------------------------------------------------------------------- /site/public/tutorials/resource_adoption_forward.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/resource_adoption_forward.html -------------------------------------------------------------------------------- /site/public/tutorials/resource_adoption_ignored.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/resource_adoption_ignored.html -------------------------------------------------------------------------------- /site/public/tutorials/resource_adoption_manifests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/resource_adoption_manifests.html -------------------------------------------------------------------------------- /site/public/tutorials/resource_adoption_namespace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/resource_adoption_namespace.html -------------------------------------------------------------------------------- /site/public/tutorials/resource_adoption_package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/resource_adoption_package.html -------------------------------------------------------------------------------- /site/public/tutorials/troubleshoot_insecure_registry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/troubleshoot_insecure_registry.html -------------------------------------------------------------------------------- /site/public/tutorials/troubleshoot_uninitialized.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/troubleshoot_uninitialized.html -------------------------------------------------------------------------------- /site/public/tutorials/troubleshoot_unreachable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/public/tutorials/troubleshoot_unreachable.html -------------------------------------------------------------------------------- /site/src/assets/dashboard/SBOM-compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/assets/dashboard/SBOM-compare.png -------------------------------------------------------------------------------- /site/src/assets/dashboard/SBOM-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/assets/dashboard/SBOM-dashboard.png -------------------------------------------------------------------------------- /site/src/assets/dashboard/SBOM-prompt-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/assets/dashboard/SBOM-prompt-example.png -------------------------------------------------------------------------------- /site/src/assets/dashboard/deployment-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/assets/dashboard/deployment-ui.png -------------------------------------------------------------------------------- /site/src/assets/dashboard/k9s_dashboard_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/assets/dashboard/k9s_dashboard_example.png -------------------------------------------------------------------------------- /site/src/assets/dashboard/web-ui-cluster-connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/assets/dashboard/web-ui-cluster-connected.png -------------------------------------------------------------------------------- /site/src/assets/dashboard/web-ui-cluster-not-connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/assets/dashboard/web-ui-cluster-not-connected.png -------------------------------------------------------------------------------- /site/src/assets/dashboard/web-ui-launch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/assets/dashboard/web-ui-launch.gif -------------------------------------------------------------------------------- /site/src/assets/dashboard/web-ui-package-commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/assets/dashboard/web-ui-package-commands.png -------------------------------------------------------------------------------- /site/src/assets/tutorials/games_connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/assets/tutorials/games_connected.png -------------------------------------------------------------------------------- /site/src/assets/tutorials/logging_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/assets/tutorials/logging_login.png -------------------------------------------------------------------------------- /site/src/assets/tutorials/logging_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/assets/tutorials/logging_logs.png -------------------------------------------------------------------------------- /site/src/assets/tutorials/logging_query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/assets/tutorials/logging_query.png -------------------------------------------------------------------------------- /site/src/assets/tutorials/wordpress_connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/assets/tutorials/wordpress_connected.png -------------------------------------------------------------------------------- /site/src/assets/tutorials/zarf_tools_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/assets/tutorials/zarf_tools_monitor.png -------------------------------------------------------------------------------- /site/src/assets/zarf-bubbles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/assets/zarf-bubbles.svg -------------------------------------------------------------------------------- /site/src/assets/zarf-logo-header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/assets/zarf-logo-header.svg -------------------------------------------------------------------------------- /site/src/assets/zarf-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/assets/zarf-logo.png -------------------------------------------------------------------------------- /site/src/assets/zarf-underwater-behind-rock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/assets/zarf-underwater-behind-rock.svg -------------------------------------------------------------------------------- /site/src/assets/zarf-v0.21-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/assets/zarf-v0.21-preview.gif -------------------------------------------------------------------------------- /site/src/components/Details.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/components/Details.astro -------------------------------------------------------------------------------- /site/src/components/ExampleYAML.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/components/ExampleYAML.astro -------------------------------------------------------------------------------- /site/src/components/Mermaid.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/components/Mermaid.astro -------------------------------------------------------------------------------- /site/src/components/SchemaItemProperties.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/components/SchemaItemProperties.astro -------------------------------------------------------------------------------- /site/src/components/SkipLink.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/components/SkipLink.astro -------------------------------------------------------------------------------- /site/src/components/StripH1.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/components/StripH1.astro -------------------------------------------------------------------------------- /site/src/content/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/config.ts -------------------------------------------------------------------------------- /site/src/content/docs/best-practices/airgap-demos.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/best-practices/airgap-demos.mdx -------------------------------------------------------------------------------- /site/src/content/docs/best-practices/upgrading-zarf.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/best-practices/upgrading-zarf.mdx -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_completion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_completion.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_completion_bash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_completion_bash.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_completion_fish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_completion_fish.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_completion_zsh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_completion_zsh.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_connect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_connect.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_connect_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_connect_list.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_destroy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_destroy.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_dev.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_dev_deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_dev_deploy.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_dev_find-images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_dev_find-images.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_dev_generate-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_dev_generate-config.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_dev_generate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_dev_generate.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_dev_inspect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_dev_inspect.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_dev_lint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_dev_lint.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_dev_patch-git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_dev_patch-git.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_dev_sha256sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_dev_sha256sum.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_init.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_package.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_package_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_package_create.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_package_deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_package_deploy.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_package_inspect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_package_inspect.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_package_inspect_sbom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_package_inspect_sbom.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_package_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_package_list.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_package_publish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_package_publish.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_package_pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_package_pull.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_package_remove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_package_remove.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_package_sign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_package_sign.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_package_verify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_package_verify.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_say.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_say.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_archiver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_archiver.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_clear-cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_clear-cache.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_download-init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_download-init.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_gen-key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_gen-key.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_gen-pki.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_gen-pki.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_get-creds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_get-creds.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_helm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_helm.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_helm_repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_helm_repo.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_helm_repo_add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_helm_repo_add.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_helm_repo_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_helm_repo_list.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_helm_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_helm_version.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_kubectl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_kubectl.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_monitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_monitor.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_registry.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_registry_copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_registry_copy.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_registry_login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_registry_login.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_registry_ls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_registry_ls.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_sbom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_sbom.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_sbom_attest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_sbom_attest.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_sbom_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_sbom_config.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_sbom_convert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_sbom_convert.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_sbom_login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_sbom_login.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_sbom_scan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_sbom_scan.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_sbom_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_sbom_version.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_update-creds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_update-creds.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_wait-for.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_wait-for.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_yq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_yq.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_yq_eval-all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_yq_eval-all.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_tools_yq_eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_tools_yq_eval.md -------------------------------------------------------------------------------- /site/src/content/docs/commands/zarf_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/commands/zarf_version.md -------------------------------------------------------------------------------- /site/src/content/docs/contribute/contributor-guide.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/contribute/contributor-guide.mdx -------------------------------------------------------------------------------- /site/src/content/docs/contribute/nerd-notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/contribute/nerd-notes.mdx -------------------------------------------------------------------------------- /site/src/content/docs/contribute/principles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/contribute/principles.mdx -------------------------------------------------------------------------------- /site/src/content/docs/contribute/style-guide.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/contribute/style-guide.mdx -------------------------------------------------------------------------------- /site/src/content/docs/contribute/testing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/contribute/testing.mdx -------------------------------------------------------------------------------- /site/src/content/docs/faq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/faq.mdx -------------------------------------------------------------------------------- /site/src/content/docs/getting-started/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/getting-started/index.mdx -------------------------------------------------------------------------------- /site/src/content/docs/getting-started/install.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/getting-started/install.mdx -------------------------------------------------------------------------------- /site/src/content/docs/getting-started/understanding.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/getting-started/understanding.mdx -------------------------------------------------------------------------------- /site/src/content/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/index.mdx -------------------------------------------------------------------------------- /site/src/content/docs/ref/actions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/ref/actions.mdx -------------------------------------------------------------------------------- /site/src/content/docs/ref/components.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/ref/components.mdx -------------------------------------------------------------------------------- /site/src/content/docs/ref/config-files.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/ref/config-files.mdx -------------------------------------------------------------------------------- /site/src/content/docs/ref/create.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/ref/create.mdx -------------------------------------------------------------------------------- /site/src/content/docs/ref/deploy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/ref/deploy.mdx -------------------------------------------------------------------------------- /site/src/content/docs/ref/dev.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/ref/dev.mdx -------------------------------------------------------------------------------- /site/src/content/docs/ref/github-action.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/ref/github-action.mdx -------------------------------------------------------------------------------- /site/src/content/docs/ref/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/ref/index.mdx -------------------------------------------------------------------------------- /site/src/content/docs/ref/init-package.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/ref/init-package.mdx -------------------------------------------------------------------------------- /site/src/content/docs/ref/packages.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/ref/packages.mdx -------------------------------------------------------------------------------- /site/src/content/docs/ref/sboms.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/ref/sboms.mdx -------------------------------------------------------------------------------- /site/src/content/docs/ref/tools.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/ref/tools.mdx -------------------------------------------------------------------------------- /site/src/content/docs/ref/values.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/ref/values.mdx -------------------------------------------------------------------------------- /site/src/content/docs/roadmap.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/roadmap.mdx -------------------------------------------------------------------------------- /site/src/content/docs/support.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/support.mdx -------------------------------------------------------------------------------- /site/src/content/docs/tutorials/6-publish-and-deploy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/tutorials/6-publish-and-deploy.mdx -------------------------------------------------------------------------------- /site/src/content/docs/tutorials/8-resource-adoption.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/tutorials/8-resource-adoption.mdx -------------------------------------------------------------------------------- /site/src/content/docs/tutorials/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/content/docs/tutorials/index.mdx -------------------------------------------------------------------------------- /site/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/env.d.ts -------------------------------------------------------------------------------- /site/src/styles/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/src/styles/custom.css -------------------------------------------------------------------------------- /site/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/site/tsconfig.json -------------------------------------------------------------------------------- /src/api/internal/v1beta1/component.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/api/internal/v1beta1/component.go -------------------------------------------------------------------------------- /src/api/internal/v1beta1/package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/api/internal/v1beta1/package.go -------------------------------------------------------------------------------- /src/api/internal/v1beta1/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/api/internal/v1beta1/package_test.go -------------------------------------------------------------------------------- /src/api/internal/v1beta1/translate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/api/internal/v1beta1/translate.go -------------------------------------------------------------------------------- /src/api/internal/v1beta1/translate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/api/internal/v1beta1/translate_test.go -------------------------------------------------------------------------------- /src/api/v1alpha1/component.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/api/v1alpha1/component.go -------------------------------------------------------------------------------- /src/api/v1alpha1/package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/api/v1alpha1/package.go -------------------------------------------------------------------------------- /src/api/v1alpha1/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/api/v1alpha1/package_test.go -------------------------------------------------------------------------------- /src/cmd/archiver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/archiver.go -------------------------------------------------------------------------------- /src/cmd/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/cmd.go -------------------------------------------------------------------------------- /src/cmd/connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/connect.go -------------------------------------------------------------------------------- /src/cmd/crane.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/crane.go -------------------------------------------------------------------------------- /src/cmd/destroy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/destroy.go -------------------------------------------------------------------------------- /src/cmd/dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/dev.go -------------------------------------------------------------------------------- /src/cmd/dev_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/dev_test.go -------------------------------------------------------------------------------- /src/cmd/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/helm.go -------------------------------------------------------------------------------- /src/cmd/helm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/helm/LICENSE -------------------------------------------------------------------------------- /src/cmd/helm/dependency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/helm/dependency.go -------------------------------------------------------------------------------- /src/cmd/helm/dependency_build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/helm/dependency_build.go -------------------------------------------------------------------------------- /src/cmd/helm/dependency_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/helm/dependency_update.go -------------------------------------------------------------------------------- /src/cmd/helm/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/helm/flags.go -------------------------------------------------------------------------------- /src/cmd/helm/load_plugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/helm/load_plugins.go -------------------------------------------------------------------------------- /src/cmd/helm/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/helm/repo.go -------------------------------------------------------------------------------- /src/cmd/helm/repo_add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/helm/repo_add.go -------------------------------------------------------------------------------- /src/cmd/helm/repo_index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/helm/repo_index.go -------------------------------------------------------------------------------- /src/cmd/helm/repo_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/helm/repo_list.go -------------------------------------------------------------------------------- /src/cmd/helm/repo_remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/helm/repo_remove.go -------------------------------------------------------------------------------- /src/cmd/helm/repo_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/helm/repo_update.go -------------------------------------------------------------------------------- /src/cmd/helm/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/helm/root.go -------------------------------------------------------------------------------- /src/cmd/initialize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/initialize.go -------------------------------------------------------------------------------- /src/cmd/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/internal.go -------------------------------------------------------------------------------- /src/cmd/k9s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/k9s.go -------------------------------------------------------------------------------- /src/cmd/kubectl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/kubectl.go -------------------------------------------------------------------------------- /src/cmd/package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/package.go -------------------------------------------------------------------------------- /src/cmd/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/package_test.go -------------------------------------------------------------------------------- /src/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/root.go -------------------------------------------------------------------------------- /src/cmd/say.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/say.go -------------------------------------------------------------------------------- /src/cmd/syft.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/syft.go -------------------------------------------------------------------------------- /src/cmd/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/table.go -------------------------------------------------------------------------------- /src/cmd/testdata/get-creds/expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/testdata/get-creds/expected.json -------------------------------------------------------------------------------- /src/cmd/testdata/get-creds/expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/testdata/get-creds/expected.yaml -------------------------------------------------------------------------------- /src/cmd/testdata/inspect-manifests/chart/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/testdata/inspect-manifests/chart/chart/Chart.yaml -------------------------------------------------------------------------------- /src/cmd/testdata/inspect-manifests/chart/chart/values.yaml: -------------------------------------------------------------------------------- 1 | replicaCount: 1 2 | 3 | image: 4 | pullPolicy: Always 5 | -------------------------------------------------------------------------------- /src/cmd/testdata/inspect-manifests/chart/expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/testdata/inspect-manifests/chart/expected.yaml -------------------------------------------------------------------------------- /src/cmd/testdata/inspect-manifests/chart/values.yaml: -------------------------------------------------------------------------------- 1 | image: 2 | pullPolicy: IfNotPresent 3 | label: "###ZARF_VAR_LABEL###" 4 | -------------------------------------------------------------------------------- /src/cmd/testdata/inspect-manifests/chart/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/testdata/inspect-manifests/chart/zarf.yaml -------------------------------------------------------------------------------- /src/cmd/testdata/inspect-manifests/empty/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/testdata/inspect-manifests/empty/zarf.yaml -------------------------------------------------------------------------------- /src/cmd/testdata/inspect-manifests/kustomize/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/testdata/inspect-manifests/kustomize/zarf.yaml -------------------------------------------------------------------------------- /src/cmd/testdata/inspect-manifests/manifest/expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/testdata/inspect-manifests/manifest/expected.yaml -------------------------------------------------------------------------------- /src/cmd/testdata/inspect-manifests/manifest/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/testdata/inspect-manifests/manifest/svc.yaml -------------------------------------------------------------------------------- /src/cmd/testdata/inspect-manifests/manifest/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/testdata/inspect-manifests/manifest/zarf.yaml -------------------------------------------------------------------------------- /src/cmd/testdata/inspect-values-files/chart-remote/expected.yaml: -------------------------------------------------------------------------------- 1 | image: 2 | pullPolicy: "IfNotPresent" 3 | port: 8888 4 | -------------------------------------------------------------------------------- /src/cmd/testdata/inspect-values-files/chart-remote/remote-values/values.yaml: -------------------------------------------------------------------------------- 1 | image: 2 | pullPolicy: IfNotPresent 3 | port: 8888 4 | -------------------------------------------------------------------------------- /src/cmd/testdata/inspect-values-files/chart/expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/testdata/inspect-values-files/chart/expected.yaml -------------------------------------------------------------------------------- /src/cmd/testdata/inspect-values-files/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/testdata/inspect-values-files/chart/values.yaml -------------------------------------------------------------------------------- /src/cmd/testdata/inspect-values-files/chart/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/testdata/inspect-values-files/chart/zarf.yaml -------------------------------------------------------------------------------- /src/cmd/testdata/package-list/expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/testdata/package-list/expected.json -------------------------------------------------------------------------------- /src/cmd/testdata/package-list/expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/testdata/package-list/expected.yaml -------------------------------------------------------------------------------- /src/cmd/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/tools.go -------------------------------------------------------------------------------- /src/cmd/vendor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/vendor.go -------------------------------------------------------------------------------- /src/cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/version.go -------------------------------------------------------------------------------- /src/cmd/viper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/viper.go -------------------------------------------------------------------------------- /src/cmd/wait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/wait.go -------------------------------------------------------------------------------- /src/cmd/yq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/yq.go -------------------------------------------------------------------------------- /src/cmd/zarf_tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/zarf_tools.go -------------------------------------------------------------------------------- /src/cmd/zarf_tools_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/cmd/zarf_tools_test.go -------------------------------------------------------------------------------- /src/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/config/config.go -------------------------------------------------------------------------------- /src/config/lang/english.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/config/lang/english.go -------------------------------------------------------------------------------- /src/internal/agent/hooks/argocd-application.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/agent/hooks/argocd-application.go -------------------------------------------------------------------------------- /src/internal/agent/hooks/argocd-application_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/agent/hooks/argocd-application_test.go -------------------------------------------------------------------------------- /src/internal/agent/hooks/argocd-appproject.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/agent/hooks/argocd-appproject.go -------------------------------------------------------------------------------- /src/internal/agent/hooks/argocd-appproject_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/agent/hooks/argocd-appproject_test.go -------------------------------------------------------------------------------- /src/internal/agent/hooks/argocd-repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/agent/hooks/argocd-repository.go -------------------------------------------------------------------------------- /src/internal/agent/hooks/argocd-repository_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/agent/hooks/argocd-repository_test.go -------------------------------------------------------------------------------- /src/internal/agent/hooks/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/agent/hooks/common.go -------------------------------------------------------------------------------- /src/internal/agent/hooks/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/agent/hooks/common_test.go -------------------------------------------------------------------------------- /src/internal/agent/hooks/flux-gitrepo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/agent/hooks/flux-gitrepo.go -------------------------------------------------------------------------------- /src/internal/agent/hooks/flux-gitrepo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/agent/hooks/flux-gitrepo_test.go -------------------------------------------------------------------------------- /src/internal/agent/hooks/flux-helmrepo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/agent/hooks/flux-helmrepo.go -------------------------------------------------------------------------------- /src/internal/agent/hooks/flux-helmrepo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/agent/hooks/flux-helmrepo_test.go -------------------------------------------------------------------------------- /src/internal/agent/hooks/flux-ocirepo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/agent/hooks/flux-ocirepo.go -------------------------------------------------------------------------------- /src/internal/agent/hooks/flux-ocirepo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/agent/hooks/flux-ocirepo_test.go -------------------------------------------------------------------------------- /src/internal/agent/hooks/pods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/agent/hooks/pods.go -------------------------------------------------------------------------------- /src/internal/agent/hooks/pods_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/agent/hooks/pods_test.go -------------------------------------------------------------------------------- /src/internal/agent/hooks/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/agent/hooks/utils_test.go -------------------------------------------------------------------------------- /src/internal/agent/http/admission/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/agent/http/admission/handler.go -------------------------------------------------------------------------------- /src/internal/agent/http/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/agent/http/proxy.go -------------------------------------------------------------------------------- /src/internal/agent/http/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/agent/http/proxy_test.go -------------------------------------------------------------------------------- /src/internal/agent/operations/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/agent/operations/hook.go -------------------------------------------------------------------------------- /src/internal/agent/operations/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/agent/operations/patch.go -------------------------------------------------------------------------------- /src/internal/agent/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/agent/start.go -------------------------------------------------------------------------------- /src/internal/dns/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/dns/dns.go -------------------------------------------------------------------------------- /src/internal/dns/dns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/dns/dns_test.go -------------------------------------------------------------------------------- /src/internal/feature/feature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/feature/feature.go -------------------------------------------------------------------------------- /src/internal/feature/feature_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/feature/feature_test.go -------------------------------------------------------------------------------- /src/internal/git/fallback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/git/fallback.go -------------------------------------------------------------------------------- /src/internal/git/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/git/git.go -------------------------------------------------------------------------------- /src/internal/git/git_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/git/git_test.go -------------------------------------------------------------------------------- /src/internal/git/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/git/repository.go -------------------------------------------------------------------------------- /src/internal/git/repository_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/git/repository_test.go -------------------------------------------------------------------------------- /src/internal/gitea/gitea.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/gitea/gitea.go -------------------------------------------------------------------------------- /src/internal/gitea/gitea_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/gitea/gitea_test.go -------------------------------------------------------------------------------- /src/internal/healthchecks/healthchecks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/healthchecks/healthchecks.go -------------------------------------------------------------------------------- /src/internal/healthchecks/healthchecks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/healthchecks/healthchecks_test.go -------------------------------------------------------------------------------- /src/internal/packager/helm/chart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/packager/helm/chart.go -------------------------------------------------------------------------------- /src/internal/packager/helm/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/packager/helm/common.go -------------------------------------------------------------------------------- /src/internal/packager/helm/destroy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/packager/helm/destroy.go -------------------------------------------------------------------------------- /src/internal/packager/helm/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/packager/helm/images.go -------------------------------------------------------------------------------- /src/internal/packager/helm/images_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/packager/helm/images_test.go -------------------------------------------------------------------------------- /src/internal/packager/helm/post-render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/packager/helm/post-render.go -------------------------------------------------------------------------------- /src/internal/packager/helm/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/packager/helm/repo.go -------------------------------------------------------------------------------- /src/internal/packager/helm/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/packager/helm/template.go -------------------------------------------------------------------------------- /src/internal/packager/helm/template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/packager/helm/template_test.go -------------------------------------------------------------------------------- /src/internal/packager/helm/testdata/annotations-test/test-chart/charts/subchart/values.yaml: -------------------------------------------------------------------------------- 1 | postgres: 2 | enabled: true 3 | -------------------------------------------------------------------------------- /src/internal/packager/helm/zarf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/packager/helm/zarf.go -------------------------------------------------------------------------------- /src/internal/packager/images/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/packager/images/common.go -------------------------------------------------------------------------------- /src/internal/packager/images/progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/packager/images/progress.go -------------------------------------------------------------------------------- /src/internal/packager/images/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/packager/images/pull.go -------------------------------------------------------------------------------- /src/internal/packager/images/pull_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/packager/images/pull_test.go -------------------------------------------------------------------------------- /src/internal/packager/images/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/packager/images/push.go -------------------------------------------------------------------------------- /src/internal/packager/images/push_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/packager/images/push_test.go -------------------------------------------------------------------------------- /src/internal/packager/images/testdata/crane-oci-layout/images/oci-layout: -------------------------------------------------------------------------------- 1 | { 2 | "imageLayoutVersion": "1.0.0" 3 | } -------------------------------------------------------------------------------- /src/internal/packager/images/testdata/oras-oci-layout/images/oci-layout: -------------------------------------------------------------------------------- 1 | {"imageLayoutVersion":"1.0.0"} -------------------------------------------------------------------------------- /src/internal/packager/kustomize/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/packager/kustomize/build.go -------------------------------------------------------------------------------- /src/internal/packager/requirements/requirements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/packager/requirements/requirements.go -------------------------------------------------------------------------------- /src/internal/packager/requirements/requirements_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/packager/requirements/requirements_test.go -------------------------------------------------------------------------------- /src/internal/packager/template/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/packager/template/template.go -------------------------------------------------------------------------------- /src/internal/packager/template/template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/packager/template/template_test.go -------------------------------------------------------------------------------- /src/internal/pkgcfg/pkgcfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/pkgcfg/pkgcfg.go -------------------------------------------------------------------------------- /src/internal/pkgcfg/pkgcfg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/pkgcfg/pkgcfg_test.go -------------------------------------------------------------------------------- /src/internal/split/split.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/split/split.go -------------------------------------------------------------------------------- /src/internal/split/split_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/split/split_test.go -------------------------------------------------------------------------------- /src/internal/template/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/template/template.go -------------------------------------------------------------------------------- /src/internal/template/template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/template/template_test.go -------------------------------------------------------------------------------- /src/internal/template/testdata/configmap/expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/template/testdata/configmap/expected.yaml -------------------------------------------------------------------------------- /src/internal/template/testdata/configmap/input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/template/testdata/configmap/input.yaml -------------------------------------------------------------------------------- /src/internal/template/testdata/constants/expected.yaml: -------------------------------------------------------------------------------- 1 | namespace: production 2 | version: 1.0.0 3 | -------------------------------------------------------------------------------- /src/internal/template/testdata/constants/input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/template/testdata/constants/input.yaml -------------------------------------------------------------------------------- /src/internal/template/testdata/deployment/expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/template/testdata/deployment/expected.yaml -------------------------------------------------------------------------------- /src/internal/template/testdata/deployment/input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/template/testdata/deployment/input.yaml -------------------------------------------------------------------------------- /src/internal/template/testdata/invalid/input.yaml: -------------------------------------------------------------------------------- 1 | name: {{ .Values.missing -------------------------------------------------------------------------------- /src/internal/template/testdata/sprig-basic/expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/template/testdata/sprig-basic/expected.yaml -------------------------------------------------------------------------------- /src/internal/template/testdata/sprig-basic/input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/template/testdata/sprig-basic/input.yaml -------------------------------------------------------------------------------- /src/internal/template/testdata/sprig-functions/input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/template/testdata/sprig-functions/input.yaml -------------------------------------------------------------------------------- /src/internal/value/testdata/invalid/malformed.yaml: -------------------------------------------------------------------------------- 1 | key1: value1 2 | invalid: yaml: structure: -------------------------------------------------------------------------------- /src/internal/value/testdata/invalid/tabs.yaml: -------------------------------------------------------------------------------- 1 | key: 2 | value 3 | -------------------------------------------------------------------------------- /src/internal/value/testdata/valid/arrays.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/value/testdata/valid/arrays.yaml -------------------------------------------------------------------------------- /src/internal/value/testdata/valid/complex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/value/testdata/valid/complex.yaml -------------------------------------------------------------------------------- /src/internal/value/testdata/valid/empty.yaml: -------------------------------------------------------------------------------- 1 | # Empty file -------------------------------------------------------------------------------- /src/internal/value/testdata/valid/merge-overwrite.yaml: -------------------------------------------------------------------------------- 1 | app: 2 | replicas: 4 3 | -------------------------------------------------------------------------------- /src/internal/value/testdata/valid/merge1.yaml: -------------------------------------------------------------------------------- 1 | app: 2 | name: myapp 3 | version: "1.0" 4 | -------------------------------------------------------------------------------- /src/internal/value/testdata/valid/merge2.yaml: -------------------------------------------------------------------------------- 1 | app: 2 | replicas: 3 3 | config: 4 | debug: true 5 | -------------------------------------------------------------------------------- /src/internal/value/testdata/valid/nulls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/value/testdata/valid/nulls.yaml -------------------------------------------------------------------------------- /src/internal/value/testdata/valid/simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/value/testdata/valid/simple.yaml -------------------------------------------------------------------------------- /src/internal/value/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/value/value.go -------------------------------------------------------------------------------- /src/internal/value/value_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/internal/value/value_test.go -------------------------------------------------------------------------------- /src/pkg/archive/archive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/archive/archive.go -------------------------------------------------------------------------------- /src/pkg/archive/archive_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/archive/archive_test.go -------------------------------------------------------------------------------- /src/pkg/cluster/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/cluster/cluster.go -------------------------------------------------------------------------------- /src/pkg/cluster/cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/cluster/cluster_test.go -------------------------------------------------------------------------------- /src/pkg/cluster/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/cluster/data.go -------------------------------------------------------------------------------- /src/pkg/cluster/distro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/cluster/distro.go -------------------------------------------------------------------------------- /src/pkg/cluster/distro_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/cluster/distro_test.go -------------------------------------------------------------------------------- /src/pkg/cluster/injector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/cluster/injector.go -------------------------------------------------------------------------------- /src/pkg/cluster/injector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/cluster/injector_test.go -------------------------------------------------------------------------------- /src/pkg/cluster/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/cluster/namespace.go -------------------------------------------------------------------------------- /src/pkg/cluster/pvc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/cluster/pvc.go -------------------------------------------------------------------------------- /src/pkg/cluster/pvc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/cluster/pvc_test.go -------------------------------------------------------------------------------- /src/pkg/cluster/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/cluster/secrets.go -------------------------------------------------------------------------------- /src/pkg/cluster/secrets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/cluster/secrets_test.go -------------------------------------------------------------------------------- /src/pkg/cluster/testdata/expected-injection-pod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/cluster/testdata/expected-injection-pod.json -------------------------------------------------------------------------------- /src/pkg/cluster/testdata/expected-injection-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/cluster/testdata/expected-injection-service.json -------------------------------------------------------------------------------- /src/pkg/cluster/tunnel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/cluster/tunnel.go -------------------------------------------------------------------------------- /src/pkg/cluster/tunnel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/cluster/tunnel_test.go -------------------------------------------------------------------------------- /src/pkg/cluster/zarf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/cluster/zarf.go -------------------------------------------------------------------------------- /src/pkg/cluster/zarf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/cluster/zarf_test.go -------------------------------------------------------------------------------- /src/pkg/interactive/components.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/interactive/components.go -------------------------------------------------------------------------------- /src/pkg/interactive/prompt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/interactive/prompt.go -------------------------------------------------------------------------------- /src/pkg/lint/findings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/lint/findings.go -------------------------------------------------------------------------------- /src/pkg/lint/findings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/lint/findings_test.go -------------------------------------------------------------------------------- /src/pkg/lint/rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/lint/rules.go -------------------------------------------------------------------------------- /src/pkg/lint/rules_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/lint/rules_test.go -------------------------------------------------------------------------------- /src/pkg/lint/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/lint/schema.go -------------------------------------------------------------------------------- /src/pkg/lint/schema_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/lint/schema_test.go -------------------------------------------------------------------------------- /src/pkg/lint/testdata/package-with-templates/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/lint/testdata/package-with-templates/zarf.yaml -------------------------------------------------------------------------------- /src/pkg/lint/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/lint/validate.go -------------------------------------------------------------------------------- /src/pkg/lint/validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/lint/validate_test.go -------------------------------------------------------------------------------- /src/pkg/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/logger/logger.go -------------------------------------------------------------------------------- /src/pkg/logger/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/logger/logger_test.go -------------------------------------------------------------------------------- /src/pkg/message/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/message/message.go -------------------------------------------------------------------------------- /src/pkg/packager/actions/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/actions/actions.go -------------------------------------------------------------------------------- /src/pkg/packager/actions/actions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/actions/actions_test.go -------------------------------------------------------------------------------- /src/pkg/packager/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/create.go -------------------------------------------------------------------------------- /src/pkg/packager/create_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/create_test.go -------------------------------------------------------------------------------- /src/pkg/packager/deploy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/deploy.go -------------------------------------------------------------------------------- /src/pkg/packager/dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/dev.go -------------------------------------------------------------------------------- /src/pkg/packager/filters/deploy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/filters/deploy.go -------------------------------------------------------------------------------- /src/pkg/packager/filters/deploy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/filters/deploy_test.go -------------------------------------------------------------------------------- /src/pkg/packager/filters/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/filters/diff.go -------------------------------------------------------------------------------- /src/pkg/packager/filters/diff_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/filters/diff_test.go -------------------------------------------------------------------------------- /src/pkg/packager/filters/empty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/filters/empty.go -------------------------------------------------------------------------------- /src/pkg/packager/filters/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/filters/empty_test.go -------------------------------------------------------------------------------- /src/pkg/packager/filters/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/filters/os.go -------------------------------------------------------------------------------- /src/pkg/packager/filters/os_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/filters/os_test.go -------------------------------------------------------------------------------- /src/pkg/packager/filters/select.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/filters/select.go -------------------------------------------------------------------------------- /src/pkg/packager/filters/select_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/filters/select_test.go -------------------------------------------------------------------------------- /src/pkg/packager/filters/strat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/filters/strat.go -------------------------------------------------------------------------------- /src/pkg/packager/filters/strat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/filters/strat_test.go -------------------------------------------------------------------------------- /src/pkg/packager/filters/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/filters/utils.go -------------------------------------------------------------------------------- /src/pkg/packager/filters/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/filters/utils_test.go -------------------------------------------------------------------------------- /src/pkg/packager/find_images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/find_images.go -------------------------------------------------------------------------------- /src/pkg/packager/find_images_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/find_images_test.go -------------------------------------------------------------------------------- /src/pkg/packager/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/generate.go -------------------------------------------------------------------------------- /src/pkg/packager/inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/inspect.go -------------------------------------------------------------------------------- /src/pkg/packager/layout/assemble.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/layout/assemble.go -------------------------------------------------------------------------------- /src/pkg/packager/layout/assemble_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/layout/assemble_test.go -------------------------------------------------------------------------------- /src/pkg/packager/layout/layout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/layout/layout.go -------------------------------------------------------------------------------- /src/pkg/packager/layout/layout_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/layout/layout_test.go -------------------------------------------------------------------------------- /src/pkg/packager/layout/package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/layout/package.go -------------------------------------------------------------------------------- /src/pkg/packager/layout/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/layout/package_test.go -------------------------------------------------------------------------------- /src/pkg/packager/layout/sbom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/layout/sbom.go -------------------------------------------------------------------------------- /src/pkg/packager/layout/sbom_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/layout/sbom_test.go -------------------------------------------------------------------------------- /src/pkg/packager/layout/testdata/cosign.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/layout/testdata/cosign.key -------------------------------------------------------------------------------- /src/pkg/packager/layout/testdata/cosign.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/layout/testdata/cosign.pub -------------------------------------------------------------------------------- /src/pkg/packager/layout/testdata/zarf-package/archive.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/layout/testdata/zarf-package/archive.tar -------------------------------------------------------------------------------- /src/pkg/packager/layout/testdata/zarf-package/data.txt: -------------------------------------------------------------------------------- 1 | Hello World 2 | -------------------------------------------------------------------------------- /src/pkg/packager/layout/testdata/zarf-package/injection/data.txt: -------------------------------------------------------------------------------- 1 | data 2 | -------------------------------------------------------------------------------- /src/pkg/packager/layout/testdata/zarf-package/kustomize/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - namespace.yaml 3 | -------------------------------------------------------------------------------- /src/pkg/packager/layout/testdata/zarf-package/kustomize/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: test 5 | -------------------------------------------------------------------------------- /src/pkg/packager/layout/testdata/zarf-package/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/layout/testdata/zarf-package/values.yaml -------------------------------------------------------------------------------- /src/pkg/packager/layout/testdata/zarf-package/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/layout/testdata/zarf-package/zarf.yaml -------------------------------------------------------------------------------- /src/pkg/packager/layout/testdata/zarf-skeleton-package/data.txt: -------------------------------------------------------------------------------- 1 | Hello World 2 | -------------------------------------------------------------------------------- /src/pkg/packager/layout/testdata/zarf-skeleton-package/injection/data.txt: -------------------------------------------------------------------------------- 1 | data 2 | -------------------------------------------------------------------------------- /src/pkg/packager/layout/testdata/zarf-skeleton-package/kustomize/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - namespace.yaml 3 | -------------------------------------------------------------------------------- /src/pkg/packager/layout/testdata/zarf-skeleton-package/kustomize/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: test 5 | -------------------------------------------------------------------------------- /src/pkg/packager/layout/viewer/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/layout/viewer/common.js -------------------------------------------------------------------------------- /src/pkg/packager/layout/viewer/compare.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/layout/viewer/compare.gohtml -------------------------------------------------------------------------------- /src/pkg/packager/layout/viewer/compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/layout/viewer/compare.js -------------------------------------------------------------------------------- /src/pkg/packager/layout/viewer/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/layout/viewer/library.js -------------------------------------------------------------------------------- /src/pkg/packager/layout/viewer/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/layout/viewer/styles.css -------------------------------------------------------------------------------- /src/pkg/packager/layout/viewer/template.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/layout/viewer/template.gohtml -------------------------------------------------------------------------------- /src/pkg/packager/layout/viewer/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/layout/viewer/theme.css -------------------------------------------------------------------------------- /src/pkg/packager/layout/viewer/viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/layout/viewer/viewer.js -------------------------------------------------------------------------------- /src/pkg/packager/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/lint.go -------------------------------------------------------------------------------- /src/pkg/packager/lint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/lint_test.go -------------------------------------------------------------------------------- /src/pkg/packager/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/load.go -------------------------------------------------------------------------------- /src/pkg/packager/load/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/load/import.go -------------------------------------------------------------------------------- /src/pkg/packager/load/import_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/load/import_test.go -------------------------------------------------------------------------------- /src/pkg/packager/load/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/load/load.go -------------------------------------------------------------------------------- /src/pkg/packager/load/load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/load/load_test.go -------------------------------------------------------------------------------- /src/pkg/packager/load/testdata/import/branch/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/load/testdata/import/branch/zarf.yaml -------------------------------------------------------------------------------- /src/pkg/packager/load/testdata/import/chart/expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/load/testdata/import/chart/expected.yaml -------------------------------------------------------------------------------- /src/pkg/packager/load/testdata/import/chart/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/load/testdata/import/chart/zarf.yaml -------------------------------------------------------------------------------- /src/pkg/packager/load/testdata/import/flavor/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/load/testdata/import/flavor/zarf.yaml -------------------------------------------------------------------------------- /src/pkg/packager/load/testdata/import/variables/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/load/testdata/import/variables/zarf.yaml -------------------------------------------------------------------------------- /src/pkg/packager/load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/load_test.go -------------------------------------------------------------------------------- /src/pkg/packager/mirror.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/mirror.go -------------------------------------------------------------------------------- /src/pkg/packager/packager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/packager.go -------------------------------------------------------------------------------- /src/pkg/packager/packager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/packager_test.go -------------------------------------------------------------------------------- /src/pkg/packager/publish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/publish.go -------------------------------------------------------------------------------- /src/pkg/packager/publish_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/publish_test.go -------------------------------------------------------------------------------- /src/pkg/packager/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/pull.go -------------------------------------------------------------------------------- /src/pkg/packager/pull_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/pull_test.go -------------------------------------------------------------------------------- /src/pkg/packager/remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/remove.go -------------------------------------------------------------------------------- /src/pkg/packager/testdata/create/differential/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/testdata/create/differential/zarf.yaml -------------------------------------------------------------------------------- /src/pkg/packager/testdata/find-images/agent/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/testdata/find-images/agent/zarf.yaml -------------------------------------------------------------------------------- /src/pkg/packager/testdata/find-images/fuzzy/configmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/testdata/find-images/fuzzy/configmap.yml -------------------------------------------------------------------------------- /src/pkg/packager/testdata/find-images/fuzzy/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/testdata/find-images/fuzzy/zarf.yaml -------------------------------------------------------------------------------- /src/pkg/packager/testdata/find-images/helm-chart/values-invalid-image.yaml: -------------------------------------------------------------------------------- 1 | image: 2 | repository: docker.io* 3 | -------------------------------------------------------------------------------- /src/pkg/packager/testdata/find-images/helm-chart/values.yaml: -------------------------------------------------------------------------------- 1 | replicaCount: 3 2 | -------------------------------------------------------------------------------- /src/pkg/packager/testdata/find-images/kustomize/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/testdata/find-images/kustomize/zarf.yaml -------------------------------------------------------------------------------- /src/pkg/packager/testdata/load-package/split/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/testdata/load-package/split/zarf.yaml -------------------------------------------------------------------------------- /src/pkg/packager/testdata/publish/cosign.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/testdata/publish/cosign.key -------------------------------------------------------------------------------- /src/pkg/packager/testdata/publish/cosign.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/testdata/publish/cosign.pub -------------------------------------------------------------------------------- /src/pkg/packager/testdata/skeleton/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pkg/packager/testdata/skeleton/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/testdata/skeleton/zarf.yaml -------------------------------------------------------------------------------- /src/pkg/packager/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/update.go -------------------------------------------------------------------------------- /src/pkg/packager/update_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/packager/update_test.go -------------------------------------------------------------------------------- /src/pkg/pki/pki.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/pki/pki.go -------------------------------------------------------------------------------- /src/pkg/pki/pki_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/pki/pki_test.go -------------------------------------------------------------------------------- /src/pkg/state/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/state/state.go -------------------------------------------------------------------------------- /src/pkg/state/state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/state/state_test.go -------------------------------------------------------------------------------- /src/pkg/transform/artifact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/transform/artifact.go -------------------------------------------------------------------------------- /src/pkg/transform/artifact_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/transform/artifact_test.go -------------------------------------------------------------------------------- /src/pkg/transform/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/transform/git.go -------------------------------------------------------------------------------- /src/pkg/transform/git_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/transform/git_test.go -------------------------------------------------------------------------------- /src/pkg/transform/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/transform/image.go -------------------------------------------------------------------------------- /src/pkg/transform/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/transform/image_test.go -------------------------------------------------------------------------------- /src/pkg/transform/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/transform/types.go -------------------------------------------------------------------------------- /src/pkg/utils/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/utils/auth.go -------------------------------------------------------------------------------- /src/pkg/utils/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/utils/auth_test.go -------------------------------------------------------------------------------- /src/pkg/utils/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/utils/bytes.go -------------------------------------------------------------------------------- /src/pkg/utils/bytes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/utils/bytes_test.go -------------------------------------------------------------------------------- /src/pkg/utils/cosign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/utils/cosign.go -------------------------------------------------------------------------------- /src/pkg/utils/exec/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/utils/exec/exec.go -------------------------------------------------------------------------------- /src/pkg/utils/htpasswd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/utils/htpasswd.go -------------------------------------------------------------------------------- /src/pkg/utils/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/utils/image.go -------------------------------------------------------------------------------- /src/pkg/utils/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/utils/io.go -------------------------------------------------------------------------------- /src/pkg/utils/io_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/utils/io_test.go -------------------------------------------------------------------------------- /src/pkg/utils/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/utils/network.go -------------------------------------------------------------------------------- /src/pkg/utils/network_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/utils/network_test.go -------------------------------------------------------------------------------- /src/pkg/utils/wait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/utils/wait.go -------------------------------------------------------------------------------- /src/pkg/utils/wait_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/utils/wait_test.go -------------------------------------------------------------------------------- /src/pkg/utils/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/utils/yaml.go -------------------------------------------------------------------------------- /src/pkg/variables/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/variables/common.go -------------------------------------------------------------------------------- /src/pkg/variables/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/variables/templates.go -------------------------------------------------------------------------------- /src/pkg/variables/templates_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/variables/templates_test.go -------------------------------------------------------------------------------- /src/pkg/variables/testdata/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/variables/testdata/file.txt -------------------------------------------------------------------------------- /src/pkg/variables/variables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/variables/variables.go -------------------------------------------------------------------------------- /src/pkg/variables/variables_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/variables/variables_test.go -------------------------------------------------------------------------------- /src/pkg/zoci/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/zoci/common.go -------------------------------------------------------------------------------- /src/pkg/zoci/copier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/zoci/copier.go -------------------------------------------------------------------------------- /src/pkg/zoci/fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/zoci/fetch.go -------------------------------------------------------------------------------- /src/pkg/zoci/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/zoci/pull.go -------------------------------------------------------------------------------- /src/pkg/zoci/pull_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/zoci/pull_test.go -------------------------------------------------------------------------------- /src/pkg/zoci/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/zoci/push.go -------------------------------------------------------------------------------- /src/pkg/zoci/push_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/zoci/push_test.go -------------------------------------------------------------------------------- /src/pkg/zoci/testdata/basic/pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/zoci/testdata/basic/pod.yaml -------------------------------------------------------------------------------- /src/pkg/zoci/testdata/basic/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/zoci/testdata/basic/zarf.yaml -------------------------------------------------------------------------------- /src/pkg/zoci/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/pkg/zoci/utils.go -------------------------------------------------------------------------------- /src/test/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/common.go -------------------------------------------------------------------------------- /src/test/e2e/00_use_cli_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/00_use_cli_test.go -------------------------------------------------------------------------------- /src/test/e2e/01_component_choice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/01_component_choice_test.go -------------------------------------------------------------------------------- /src/test/e2e/02_component_actions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/02_component_actions_test.go -------------------------------------------------------------------------------- /src/test/e2e/03_deprecations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/03_deprecations_test.go -------------------------------------------------------------------------------- /src/test/e2e/04_create_templating_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/04_create_templating_test.go -------------------------------------------------------------------------------- /src/test/e2e/05_tarball_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/05_tarball_test.go -------------------------------------------------------------------------------- /src/test/e2e/06_create_sbom_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/06_create_sbom_test.go -------------------------------------------------------------------------------- /src/test/e2e/07_create_git_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/07_create_git_test.go -------------------------------------------------------------------------------- /src/test/e2e/08_create_differential_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/08_create_differential_test.go -------------------------------------------------------------------------------- /src/test/e2e/09_component_compose_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/09_component_compose_test.go -------------------------------------------------------------------------------- /src/test/e2e/10_component_flavor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/10_component_flavor_test.go -------------------------------------------------------------------------------- /src/test/e2e/11_oci_pull_inspect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/11_oci_pull_inspect_test.go -------------------------------------------------------------------------------- /src/test/e2e/12_package_signing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/12_package_signing_test.go -------------------------------------------------------------------------------- /src/test/e2e/13_find_images_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/13_find_images_test.go -------------------------------------------------------------------------------- /src/test/e2e/13_zarf_package_generate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/13_zarf_package_generate_test.go -------------------------------------------------------------------------------- /src/test/e2e/14_oci_compose_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/14_oci_compose_test.go -------------------------------------------------------------------------------- /src/test/e2e/20_zarf_init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/20_zarf_init_test.go -------------------------------------------------------------------------------- /src/test/e2e/21_connect_creds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/21_connect_creds_test.go -------------------------------------------------------------------------------- /src/test/e2e/22_git_and_gitops_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/22_git_and_gitops_test.go -------------------------------------------------------------------------------- /src/test/e2e/23_data_injection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/23_data_injection_test.go -------------------------------------------------------------------------------- /src/test/e2e/24_variables_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/24_variables_test.go -------------------------------------------------------------------------------- /src/test/e2e/25_helm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/25_helm_test.go -------------------------------------------------------------------------------- /src/test/e2e/26_simple_packages_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/26_simple_packages_test.go -------------------------------------------------------------------------------- /src/test/e2e/27_deploy_regression_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/27_deploy_regression_test.go -------------------------------------------------------------------------------- /src/test/e2e/28_wait_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/28_wait_test.go -------------------------------------------------------------------------------- /src/test/e2e/29_config_file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/29_config_file_test.go -------------------------------------------------------------------------------- /src/test/e2e/30_component_action_cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/30_component_action_cluster_test.go -------------------------------------------------------------------------------- /src/test/e2e/31_checksum_and_signature_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/31_checksum_and_signature_test.go -------------------------------------------------------------------------------- /src/test/e2e/32_build_machine_info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/32_build_machine_info_test.go -------------------------------------------------------------------------------- /src/test/e2e/33_manifest_with_symlink_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/33_manifest_with_symlink_test.go -------------------------------------------------------------------------------- /src/test/e2e/34_custom_init_package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/34_custom_init_package_test.go -------------------------------------------------------------------------------- /src/test/e2e/36_health_check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/36_health_check_test.go -------------------------------------------------------------------------------- /src/test/e2e/37_component_status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/37_component_status_test.go -------------------------------------------------------------------------------- /src/test/e2e/38_ephemeral_container_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/38_ephemeral_container_test.go -------------------------------------------------------------------------------- /src/test/e2e/39_crane_to_oras_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/39_crane_to_oras_test.go -------------------------------------------------------------------------------- /src/test/e2e/40_namespace_override_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/40_namespace_override_test.go -------------------------------------------------------------------------------- /src/test/e2e/41_remove_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/41_remove_test.go -------------------------------------------------------------------------------- /src/test/e2e/42_values_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/42_values_test.go -------------------------------------------------------------------------------- /src/test/e2e/50_oci_publish_deploy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/50_oci_publish_deploy_test.go -------------------------------------------------------------------------------- /src/test/e2e/99_appliance_remove_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/99_appliance_remove_test.go -------------------------------------------------------------------------------- /src/test/e2e/99_yolo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/99_yolo_test.go -------------------------------------------------------------------------------- /src/test/e2e/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/e2e/main_test.go -------------------------------------------------------------------------------- /src/test/external/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/external/common.go -------------------------------------------------------------------------------- /src/test/external/configure-gitea.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/external/configure-gitea.sh -------------------------------------------------------------------------------- /src/test/external/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/external/docker-compose.yml -------------------------------------------------------------------------------- /src/test/external/docker-registry-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/external/docker-registry-values.yaml -------------------------------------------------------------------------------- /src/test/external/ext_in_cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/external/ext_in_cluster_test.go -------------------------------------------------------------------------------- /src/test/external/ext_out_cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/external/ext_out_cluster_test.go -------------------------------------------------------------------------------- /src/test/external/gitea-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/external/gitea-values.yaml -------------------------------------------------------------------------------- /src/test/nightly/ecr_publish_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/nightly/ecr_publish_test.go -------------------------------------------------------------------------------- /src/test/packages/00-dev-inspect-definition/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/00-dev-inspect-definition/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/00-extract-path/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/00-extract-path/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/00-helm-annotations/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/00-helm-annotations/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/00-http-pull/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/00-http-pull/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/00-kube-version-override/values.yaml: -------------------------------------------------------------------------------- 1 | replicaCount: 1 2 | -------------------------------------------------------------------------------- /src/test/packages/00-kube-version-override/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/00-kube-version-override/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/00-no-components/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/00-no-components/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/00-yq-checks/file1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/00-yq-checks/file1.yaml -------------------------------------------------------------------------------- /src/test/packages/00-yq-checks/file2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/00-yq-checks/file2.yaml -------------------------------------------------------------------------------- /src/test/packages/01-component-choice/blank-file.txt: -------------------------------------------------------------------------------- 1 | Just some simple file.... 2 | -------------------------------------------------------------------------------- /src/test/packages/01-component-choice/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/01-component-choice/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/03-deprecated-set-variable/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/03-deprecated-set-variable/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/04-file-folders-templating-sbom/include-files/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==1.23.4 2 | -------------------------------------------------------------------------------- /src/test/packages/04-file-folders-templating-sbom/include-files/simple.txt: -------------------------------------------------------------------------------- 1 | A ###ZARF_VAR_DOGGO### barks! 2 | -------------------------------------------------------------------------------- /src/test/packages/04-file-folders-templating-sbom/requirements.txt: -------------------------------------------------------------------------------- 1 | # Total ###ZARF_VAR_PANDA### 2 | pandas==1.5.0 3 | -------------------------------------------------------------------------------- /src/test/packages/04-templating/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/04-templating/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/05-archive-structure/files/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/05-archive-structure/files/service.yaml -------------------------------------------------------------------------------- /src/test/packages/05-archive-structure/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/05-archive-structure/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/05-multi-part/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/05-multi-part/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/08-differential-package/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/08-differential-package/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/09-composable-packages/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/09-composable-packages/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/10-package-flavors/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/10-package-flavors/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/11-simple-package/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/packages/11-simple-package/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/11-simple-package/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/12-package-signing/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/12-package-signing/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/13-find-images-with-vars/values.yaml: -------------------------------------------------------------------------------- 1 | podinfo: ###ZARF_VAR_PODINFO_IMAGE### 2 | -------------------------------------------------------------------------------- /src/test/packages/13-find-images-with-vars/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/13-find-images-with-vars/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/14-import-everything/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/14-import-everything/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/20-mismatched-arch-init/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/20-mismatched-arch-init/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/22-git-data/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/22-git-data/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/24-evil-variables/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/24-evil-variables/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/25-chart-deps/.gitignore: -------------------------------------------------------------------------------- 1 | requirements.lock 2 | -------------------------------------------------------------------------------- /src/test/packages/25-chart-deps/parent-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/25-chart-deps/parent-chart/Chart.yaml -------------------------------------------------------------------------------- /src/test/packages/25-chart-deps/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/25-chart-deps/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/25-evil-chart-lookup/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/25-evil-chart-lookup/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/25-evil-dos-games/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/25-evil-dos-games/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/25-evil-templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/25-evil-templates/configmap.yaml -------------------------------------------------------------------------------- /src/test/packages/25-evil-templates/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/25-evil-templates/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/25-helm-release-history/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/25-helm-release-history/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/25-local-tgz-chart/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/25-local-tgz-chart/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/25-manifest-adoption/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/25-manifest-adoption/deployment.yaml -------------------------------------------------------------------------------- /src/test/packages/26-agent-ignore/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/26-agent-ignore/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/26-image-dos-games/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/26-image-dos-games/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/28-helm-no-wait/never-ready.pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/28-helm-no-wait/never-ready.pod.yaml -------------------------------------------------------------------------------- /src/test/packages/28-helm-no-wait/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/28-helm-no-wait/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/34-manifest-with-symlink/manifests/img/test.txt: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /src/test/packages/34-manifest-with-symlink/manifests/resources/img: -------------------------------------------------------------------------------- 1 | ../img -------------------------------------------------------------------------------- /src/test/packages/34-manifest-with-symlink/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/34-manifest-with-symlink/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/35-custom-init-package/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/35-custom-init-package/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/36-health-checks/ready-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/36-health-checks/ready-pod.yaml -------------------------------------------------------------------------------- /src/test/packages/36-health-checks/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/36-health-checks/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/37-component-status/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/37-component-status/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/38-ephemeral-container/pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/38-ephemeral-container/pod.yaml -------------------------------------------------------------------------------- /src/test/packages/38-ephemeral-container/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/38-ephemeral-container/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/39-crane-to-oras/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/39-crane-to-oras/dockerfile -------------------------------------------------------------------------------- /src/test/packages/39-crane-to-oras/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/39-crane-to-oras/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/40-namespace-override/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/40-namespace-override/chart/Chart.yaml -------------------------------------------------------------------------------- /src/test/packages/40-namespace-override/zarf-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/40-namespace-override/zarf-config.yaml -------------------------------------------------------------------------------- /src/test/packages/40-namespace-override/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/40-namespace-override/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/41-remove-test/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/41-remove-test/configmap.yaml -------------------------------------------------------------------------------- /src/test/packages/41-remove-test/fail/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/41-remove-test/fail/deployment.yaml -------------------------------------------------------------------------------- /src/test/packages/41-remove-test/fail/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/41-remove-test/fail/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/41-remove-test/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/41-remove-test/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/42-values/action-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/42-values/action-configmap.yaml -------------------------------------------------------------------------------- /src/test/packages/42-values/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/42-values/configmap.yaml -------------------------------------------------------------------------------- /src/test/packages/42-values/override-values.yaml: -------------------------------------------------------------------------------- 1 | test: "override-value" 2 | additional: "extra-data" 3 | -------------------------------------------------------------------------------- /src/test/packages/42-values/raw-template-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/42-values/raw-template-configmap.yaml -------------------------------------------------------------------------------- /src/test/packages/42-values/values/values.yaml: -------------------------------------------------------------------------------- 1 | test: "default-value" 2 | additional: "not-set" 3 | -------------------------------------------------------------------------------- /src/test/packages/42-values/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/42-values/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/99-registry-url/registry-url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/99-registry-url/registry-url.yaml -------------------------------------------------------------------------------- /src/test/packages/99-registry-url/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/99-registry-url/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/external-helm-auth/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/external-helm-auth/zarf.yaml -------------------------------------------------------------------------------- /src/test/packages/zarf-test.prv-key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/zarf-test.prv-key -------------------------------------------------------------------------------- /src/test/packages/zarf-test.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/packages/zarf-test.pub -------------------------------------------------------------------------------- /src/test/testutil/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/testutil/registry.go -------------------------------------------------------------------------------- /src/test/testutil/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/testutil/schema.go -------------------------------------------------------------------------------- /src/test/testutil/testutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/testutil/testutil.go -------------------------------------------------------------------------------- /src/test/upgrade/files/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/upgrade/files/service.yaml -------------------------------------------------------------------------------- /src/test/upgrade/files/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/upgrade/files/test-values.yaml -------------------------------------------------------------------------------- /src/test/upgrade/previously_built_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/upgrade/previously_built_test.go -------------------------------------------------------------------------------- /src/test/upgrade/zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/upgrade/zarf.yaml -------------------------------------------------------------------------------- /src/test/zarf-config-test.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/test/zarf-config-test.toml -------------------------------------------------------------------------------- /src/types/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/src/types/runtime.go -------------------------------------------------------------------------------- /zarf-config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/zarf-config.toml -------------------------------------------------------------------------------- /zarf.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/zarf.schema.json -------------------------------------------------------------------------------- /zarf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarf-dev/zarf/HEAD/zarf.yaml --------------------------------------------------------------------------------