From 9419e05bf7bbda2e04d8cff5ef2e80e86e7de870 Mon Sep 17 00:00:00 2001 From: Aleksey Pesternikov <apesternikov@gmail.com> Date: Wed, 24 Apr 2024 13:00:19 -0700 Subject: [PATCH] update workspace snippet --- .github/workflows/workspace_snippet.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/workspace_snippet.sh b/.github/workflows/workspace_snippet.sh index 968e612a..4bb3f91a 100755 --- a/.github/workflows/workspace_snippet.sh +++ b/.github/workflows/workspace_snippet.sh @@ -43,6 +43,22 @@ http_archive( strip_prefix = "${PREFIX}", urls = ["https://github.com/fasterci/rules_gitops/releases/download/${TAG}/${ARCHIVE}"], ) + +load("@rules_gitops//gitops:deps.bzl", "rules_gitops_dependencies") + +rules_gitops_dependencies() + +load("@rules_gitops//gitops:repositories.bzl", "rules_gitops_repositories") + +rules_gitops_repositories() + +load("@rules_gitops//skylib:k8s.bzl", "kubeconfig") + +kubeconfig( + name = "k8s_dev_test", + cluster = "it_kubernetes_cluster_name", + use_host_config = True, +) \`\`\` EOF