From 8f7d95a30d8d19535c50554f5e6bfbd9b953a8e1 Mon Sep 17 00:00:00 2001 From: Zack Annexstein Date: Fri, 12 Apr 2024 16:57:21 -0700 Subject: [PATCH] refactor make logic and move registry1 zarf config to hack folder --- .../publish-registry1-init-package.yml | 0 hack/zarf-config-registry1.toml | 22 +++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 .github/workflows/publish-registry1-init-package.yml create mode 100644 hack/zarf-config-registry1.toml diff --git a/.github/workflows/publish-registry1-init-package.yml b/.github/workflows/publish-registry1-init-package.yml new file mode 100644 index 0000000000..e69de29bb2 diff --git a/hack/zarf-config-registry1.toml b/hack/zarf-config-registry1.toml new file mode 100644 index 0000000000..b1cc718510 --- /dev/null +++ b/hack/zarf-config-registry1.toml @@ -0,0 +1,22 @@ +[package.create] +flavor = "registry1.alpha.1" +architecture = "amd64" + +[package.create.set] +# The image reference to use for the Zarf agent, defaults to a locally built image +agent_image_domain = "registry1.dso.mil/" +agent_image = "ironbank/opensource/defenseunicorns/zarf/zarf-agent" +agent_image_tag = "local" + +# Tag for the zarf injector binary to use +injector_version = "2023-08-02" +injector_amd64_shasum = "91de0768855ee2606a4f85a92bb480ff3a14ca205fd8d05eb397c18e15aa0247" +injector_arm64_shasum = "663df681deea957b0ec53538eab221691a83de8e95d86b8a29008af711934bee" + +# The image reference to use for the registry that Zarf deploys into the cluster +registry_image_domain = "" +registry_image = "library/registry" +registry_image_tag = "3.0.0-alpha.1" + +# The image reference to use for the optional git-server Zarf deploys +gitea_image = "registry1.dso.mil/ironbank/opensource/go-gitea/gitea:v1.21.5"