From 250d4265ceac562b8a41870c38164c311a8ee553 Mon Sep 17 00:00:00 2001 From: Shreyas Goenka Date: Thu, 31 Oct 2024 18:00:31 +0100 Subject: [PATCH] rename to volume --- .../{uc_volume => volume}/databricks_template_schema.json | 0 .../bundles/{uc_volume => volume}/template/databricks.yml.tmpl | 0 internal/bundle/bundles/{uc_volume => volume}/template/nb.sql | 0 internal/bundle/deploy_test.go | 2 +- 4 files changed, 1 insertion(+), 1 deletion(-) rename internal/bundle/bundles/{uc_volume => volume}/databricks_template_schema.json (100%) rename internal/bundle/bundles/{uc_volume => volume}/template/databricks.yml.tmpl (100%) rename internal/bundle/bundles/{uc_volume => volume}/template/nb.sql (100%) diff --git a/internal/bundle/bundles/uc_volume/databricks_template_schema.json b/internal/bundle/bundles/volume/databricks_template_schema.json similarity index 100% rename from internal/bundle/bundles/uc_volume/databricks_template_schema.json rename to internal/bundle/bundles/volume/databricks_template_schema.json diff --git a/internal/bundle/bundles/uc_volume/template/databricks.yml.tmpl b/internal/bundle/bundles/volume/template/databricks.yml.tmpl similarity index 100% rename from internal/bundle/bundles/uc_volume/template/databricks.yml.tmpl rename to internal/bundle/bundles/volume/template/databricks.yml.tmpl diff --git a/internal/bundle/bundles/uc_volume/template/nb.sql b/internal/bundle/bundles/volume/template/nb.sql similarity index 100% rename from internal/bundle/bundles/uc_volume/template/nb.sql rename to internal/bundle/bundles/volume/template/nb.sql diff --git a/internal/bundle/deploy_test.go b/internal/bundle/deploy_test.go index 1956139a0e..0ddc79f3b7 100644 --- a/internal/bundle/deploy_test.go +++ b/internal/bundle/deploy_test.go @@ -249,7 +249,7 @@ func TestAccDeployUcVolume(t *testing.T) { w := wt.W uniqueId := uuid.New().String() - bundleRoot, err := initTestTemplate(t, ctx, "uc_volume", map[string]any{ + bundleRoot, err := initTestTemplate(t, ctx, "volume", map[string]any{ "unique_id": uniqueId, }) require.NoError(t, err)