diff --git a/.github/workflows/check-links.yml b/.github/workflows/check-links.yml index e46b520dc6..f10527fc62 100644 --- a/.github/workflows/check-links.yml +++ b/.github/workflows/check-links.yml @@ -27,7 +27,7 @@ jobs: - name: Link Checker uses: lycheeverse/lychee-action@ec3ed119d4f44ad2673a7232460dc7dff59d2421 # v1.8.0 with: - args: "--verbose --no-progress --max-concurrency 5 --exclude-path './cli/internal/helm/charts/cilium' './**/*.md' './**/*.html'" + args: "--verbose --no-progress --max-concurrency 5 --exclude-path './internal/helm/charts/cilium' './**/*.md' './**/*.html'" fail: true env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/.github/workflows/test-unittest.yml b/.github/workflows/test-unittest.yml index a86090927b..8d22c93369 100644 --- a/.github/workflows/test-unittest.yml +++ b/.github/workflows/test-unittest.yml @@ -14,7 +14,7 @@ on: - ".github/workflows/test-unittest.yml" pull_request: paths: - - "cli/internal/helm/**" + - "internal/helm/**" - "**.go" - "**/go.mod" - "**/go.sum" diff --git a/CODEOWNERS b/CODEOWNERS index c9fc06cf56..fce23c9140 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -5,15 +5,15 @@ /bazel/container @katexochen /bazel/sh @katexochen /bootstrapper @3u13r -/cli/internal/cloudcmd @daniel-weisse -/cli/internal/cmd/upgrade* @derpsteb -/cli/internal/featureset @malt3 -/cli/internal/helm @derpsteb -/cli/internal/kubecmd @daniel-weisse -/cli/internal/libvirt @daniel-weisse -/cli/internal/terraform @elchead -/cli/internal/upgrade @elchead -/cli/internal/state @elchead +/internal/cloudcmd @daniel-weisse +/internal/cmd/upgrade* @derpsteb +/internal/featureset @malt3 +/internal/helm @derpsteb +/internal/kubecmd @daniel-weisse +/internal/libvirt @daniel-weisse +/internal/terraform @elchead +/internal/upgrade @elchead +/internal/state @elchead /csi @daniel-weisse /debugd @malt3 /disk-mapper @daniel-weisse diff --git a/bazel/ci/shellcheck.sh.in b/bazel/ci/shellcheck.sh.in index dd657cef70..e9ab8180c6 100644 --- a/bazel/ci/shellcheck.sh.in +++ b/bazel/ci/shellcheck.sh.in @@ -25,7 +25,7 @@ readarray -t <<< "${scriptsStr}" scripts=("${MAPFILE[@]}") excludeDirs=( - "cli/internal/helm/charts/cilium" + "internal/helm/charts/cilium" "build" "docs/node_modules" ) diff --git a/bazel/ci/shfmt.sh.in b/bazel/ci/shfmt.sh.in index a045263c6b..613134899e 100644 --- a/bazel/ci/shfmt.sh.in +++ b/bazel/ci/shfmt.sh.in @@ -23,7 +23,7 @@ readarray -t <<< "${scriptsStr}" scripts=("${MAPFILE[@]}") excludeDirs=( - "cli/internal/helm/charts/cilium" + "internal/helm/charts/cilium" "build" "docs/node_modules" ) diff --git a/cli/internal/cloudcmd/BUILD.bazel b/cli/internal/cloudcmd/BUILD.bazel index 75a6030398..e03cacfe37 100644 --- a/cli/internal/cloudcmd/BUILD.bazel +++ b/cli/internal/cloudcmd/BUILD.bazel @@ -20,7 +20,6 @@ go_library( visibility = ["//cli:__subpackages__"], deps = [ "//cli/internal/libvirt", - "//cli/internal/state", "//cli/internal/terraform", "//internal/atls", "//internal/attestation/choose", @@ -36,6 +35,7 @@ go_library( "//internal/imagefetcher", "//internal/maa", "//internal/role", + "//internal/state", "@com_github_spf13_cobra//:cobra", ], ) @@ -54,7 +54,6 @@ go_test( ], embed = [":cloudcmd"], deps = [ - "//cli/internal/state", "//cli/internal/terraform", "//internal/attestation/measurements", "//internal/attestation/variant", @@ -63,6 +62,7 @@ go_test( "//internal/config", "//internal/constants", "//internal/file", + "//internal/state", "@com_github_spf13_afero//:afero", "@com_github_stretchr_testify//assert", "@com_github_stretchr_testify//require", diff --git a/cli/internal/cloudcmd/apply.go b/cli/internal/cloudcmd/apply.go index a50a89d81a..a85d83cb9f 100644 --- a/cli/internal/cloudcmd/apply.go +++ b/cli/internal/cloudcmd/apply.go @@ -14,7 +14,6 @@ import ( "strings" "github.com/edgelesssys/constellation/v2/cli/internal/libvirt" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/cli/internal/terraform" "github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider" "github.com/edgelesssys/constellation/v2/internal/config" @@ -22,6 +21,7 @@ import ( "github.com/edgelesssys/constellation/v2/internal/file" "github.com/edgelesssys/constellation/v2/internal/imagefetcher" "github.com/edgelesssys/constellation/v2/internal/maa" + "github.com/edgelesssys/constellation/v2/internal/state" ) const ( diff --git a/cli/internal/cloudcmd/clients.go b/cli/internal/cloudcmd/clients.go index 51241c4ee8..339d52825e 100644 --- a/cli/internal/cloudcmd/clients.go +++ b/cli/internal/cloudcmd/clients.go @@ -10,10 +10,10 @@ import ( "context" "io" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/cli/internal/terraform" "github.com/edgelesssys/constellation/v2/internal/attestation/variant" "github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider" + "github.com/edgelesssys/constellation/v2/internal/state" ) // imageFetcher gets an image reference from the versionsapi. diff --git a/cli/internal/cloudcmd/clients_test.go b/cli/internal/cloudcmd/clients_test.go index 5ba36a0c6f..28c27ee337 100644 --- a/cli/internal/cloudcmd/clients_test.go +++ b/cli/internal/cloudcmd/clients_test.go @@ -11,10 +11,10 @@ import ( "io" "testing" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/cli/internal/terraform" "github.com/edgelesssys/constellation/v2/internal/attestation/variant" "github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider" + "github.com/edgelesssys/constellation/v2/internal/state" "go.uber.org/goleak" ) diff --git a/cli/internal/cmd/BUILD.bazel b/cli/internal/cmd/BUILD.bazel index f4b9797cdc..7beeb2f238 100644 --- a/cli/internal/cmd/BUILD.bazel +++ b/cli/internal/cmd/BUILD.bazel @@ -50,11 +50,7 @@ go_library( "//bootstrapper/initproto", "//cli/internal/cloudcmd", "//cli/internal/cmd/pathprefix", - "//cli/internal/featureset", - "//cli/internal/helm", - "//cli/internal/kubecmd", "//cli/internal/libvirt", - "//cli/internal/state", "//cli/internal/terraform", "//disk-mapper/recoverproto", "//internal/api/attestationconfigapi", @@ -72,11 +68,14 @@ go_library( "//internal/config/migration", "//internal/constants", "//internal/crypto", + "//internal/featureset", "//internal/file", "//internal/grpc/dialer", "//internal/grpc/grpclog", "//internal/grpc/retry", + "//internal/helm", "//internal/kms/uri", + "//internal/kubecmd", "//internal/license", "//internal/logger", "//internal/maa", @@ -84,6 +83,7 @@ go_library( "//internal/semver", "//internal/sigstore", "//internal/sigstore/keyselect", + "//internal/state", "//internal/verify", "//internal/versions", "//verify/verifyproto", @@ -149,9 +149,6 @@ go_test( "//bootstrapper/initproto", "//cli/internal/cloudcmd", "//cli/internal/cmd/pathprefix", - "//cli/internal/helm", - "//cli/internal/kubecmd", - "//cli/internal/state", "//cli/internal/terraform", "//disk-mapper/recoverproto", "//internal/api/attestationconfigapi", @@ -169,11 +166,14 @@ go_test( "//internal/grpc/atlscredentials", "//internal/grpc/dialer", "//internal/grpc/testdialer", + "//internal/helm", "//internal/kms/uri", + "//internal/kubecmd", "//internal/license", "//internal/logger", "//internal/semver", "//internal/sigstore", + "//internal/state", "//internal/versions", "//operators/constellation-node-operator/api/v1alpha1", "//verify/verifyproto", diff --git a/cli/internal/cmd/apply.go b/cli/internal/cmd/apply.go index 5bed60ab1c..445d1358dc 100644 --- a/cli/internal/cmd/apply.go +++ b/cli/internal/cmd/apply.go @@ -20,9 +20,6 @@ import ( "time" "github.com/edgelesssys/constellation/v2/cli/internal/cloudcmd" - "github.com/edgelesssys/constellation/v2/cli/internal/helm" - "github.com/edgelesssys/constellation/v2/cli/internal/kubecmd" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/internal/api/attestationconfigapi" "github.com/edgelesssys/constellation/v2/internal/atls" "github.com/edgelesssys/constellation/v2/internal/attestation/variant" @@ -32,7 +29,10 @@ import ( "github.com/edgelesssys/constellation/v2/internal/constants" "github.com/edgelesssys/constellation/v2/internal/file" "github.com/edgelesssys/constellation/v2/internal/grpc/dialer" + "github.com/edgelesssys/constellation/v2/internal/helm" + "github.com/edgelesssys/constellation/v2/internal/kubecmd" "github.com/edgelesssys/constellation/v2/internal/license" + "github.com/edgelesssys/constellation/v2/internal/state" "github.com/edgelesssys/constellation/v2/internal/versions" "github.com/spf13/afero" "github.com/spf13/cobra" diff --git a/cli/internal/cmd/apply_test.go b/cli/internal/cmd/apply_test.go index 434cdd7048..43ee030e67 100644 --- a/cli/internal/cmd/apply_test.go +++ b/cli/internal/cmd/apply_test.go @@ -16,15 +16,15 @@ import ( "testing" "time" - "github.com/edgelesssys/constellation/v2/cli/internal/helm" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider" "github.com/edgelesssys/constellation/v2/internal/cloud/gcpshared" "github.com/edgelesssys/constellation/v2/internal/config" "github.com/edgelesssys/constellation/v2/internal/constants" "github.com/edgelesssys/constellation/v2/internal/file" + "github.com/edgelesssys/constellation/v2/internal/helm" "github.com/edgelesssys/constellation/v2/internal/kms/uri" "github.com/edgelesssys/constellation/v2/internal/logger" + "github.com/edgelesssys/constellation/v2/internal/state" "github.com/spf13/afero" "github.com/spf13/pflag" "github.com/stretchr/testify/assert" diff --git a/cli/internal/cmd/applyhelm.go b/cli/internal/cmd/applyhelm.go index 0f932b5ace..12dcd4c5f9 100644 --- a/cli/internal/cmd/applyhelm.go +++ b/cli/internal/cmd/applyhelm.go @@ -13,12 +13,12 @@ import ( "path/filepath" "github.com/edgelesssys/constellation/v2/cli/internal/cloudcmd" - "github.com/edgelesssys/constellation/v2/cli/internal/helm" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/internal/compatibility" "github.com/edgelesssys/constellation/v2/internal/config" "github.com/edgelesssys/constellation/v2/internal/constants" + "github.com/edgelesssys/constellation/v2/internal/helm" "github.com/edgelesssys/constellation/v2/internal/kms/uri" + "github.com/edgelesssys/constellation/v2/internal/state" "github.com/spf13/cobra" ) diff --git a/cli/internal/cmd/applyinit.go b/cli/internal/cmd/applyinit.go index b7bd0958f1..0a52c9779e 100644 --- a/cli/internal/cmd/applyinit.go +++ b/cli/internal/cmd/applyinit.go @@ -22,7 +22,6 @@ import ( "github.com/edgelesssys/constellation/v2/bootstrapper/initproto" "github.com/edgelesssys/constellation/v2/cli/internal/cloudcmd" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/internal/config" "github.com/edgelesssys/constellation/v2/internal/constants" "github.com/edgelesssys/constellation/v2/internal/crypto" @@ -30,6 +29,7 @@ import ( grpcRetry "github.com/edgelesssys/constellation/v2/internal/grpc/retry" "github.com/edgelesssys/constellation/v2/internal/kms/uri" "github.com/edgelesssys/constellation/v2/internal/retry" + "github.com/edgelesssys/constellation/v2/internal/state" "github.com/edgelesssys/constellation/v2/internal/versions" "github.com/spf13/afero" "github.com/spf13/cobra" diff --git a/cli/internal/cmd/applyterraform.go b/cli/internal/cmd/applyterraform.go index b82a040159..ad0f448885 100644 --- a/cli/internal/cmd/applyterraform.go +++ b/cli/internal/cmd/applyterraform.go @@ -13,10 +13,10 @@ import ( "path/filepath" "github.com/edgelesssys/constellation/v2/cli/internal/cloudcmd" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider" "github.com/edgelesssys/constellation/v2/internal/config" "github.com/edgelesssys/constellation/v2/internal/constants" + "github.com/edgelesssys/constellation/v2/internal/state" "github.com/spf13/cobra" ) diff --git a/cli/internal/cmd/cloud.go b/cli/internal/cmd/cloud.go index 3a49ed8fbb..be75d0de26 100644 --- a/cli/internal/cmd/cloud.go +++ b/cli/internal/cmd/cloud.go @@ -10,11 +10,11 @@ import ( "context" "github.com/edgelesssys/constellation/v2/cli/internal/cloudcmd" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/cli/internal/terraform" "github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider" "github.com/edgelesssys/constellation/v2/internal/cloud/gcpshared" "github.com/edgelesssys/constellation/v2/internal/config" + "github.com/edgelesssys/constellation/v2/internal/state" ) type cloudApplier interface { diff --git a/cli/internal/cmd/cloud_test.go b/cli/internal/cmd/cloud_test.go index 4e8b60ea82..9049d3839e 100644 --- a/cli/internal/cmd/cloud_test.go +++ b/cli/internal/cmd/cloud_test.go @@ -11,11 +11,11 @@ import ( "testing" "github.com/edgelesssys/constellation/v2/cli/internal/cloudcmd" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/cli/internal/terraform" "github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider" "github.com/edgelesssys/constellation/v2/internal/cloud/gcpshared" "github.com/edgelesssys/constellation/v2/internal/config" + "github.com/edgelesssys/constellation/v2/internal/state" "go.uber.org/goleak" ) diff --git a/cli/internal/cmd/configfetchmeasurements.go b/cli/internal/cmd/configfetchmeasurements.go index 6630c8ec46..ccaa13a91f 100644 --- a/cli/internal/cmd/configfetchmeasurements.go +++ b/cli/internal/cmd/configfetchmeasurements.go @@ -14,12 +14,12 @@ import ( "net/url" "time" - "github.com/edgelesssys/constellation/v2/cli/internal/featureset" "github.com/edgelesssys/constellation/v2/internal/api/attestationconfigapi" "github.com/edgelesssys/constellation/v2/internal/api/versionsapi" "github.com/edgelesssys/constellation/v2/internal/attestation/measurements" "github.com/edgelesssys/constellation/v2/internal/config" "github.com/edgelesssys/constellation/v2/internal/constants" + "github.com/edgelesssys/constellation/v2/internal/featureset" "github.com/edgelesssys/constellation/v2/internal/file" "github.com/edgelesssys/constellation/v2/internal/sigstore" "github.com/edgelesssys/constellation/v2/internal/sigstore/keyselect" diff --git a/cli/internal/cmd/configgenerate.go b/cli/internal/cmd/configgenerate.go index 36c7448917..e85cb2bb73 100644 --- a/cli/internal/cmd/configgenerate.go +++ b/cli/internal/cmd/configgenerate.go @@ -10,12 +10,12 @@ import ( "fmt" "strings" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/internal/attestation/variant" "github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider" "github.com/edgelesssys/constellation/v2/internal/config" "github.com/edgelesssys/constellation/v2/internal/constants" "github.com/edgelesssys/constellation/v2/internal/file" + "github.com/edgelesssys/constellation/v2/internal/state" "github.com/edgelesssys/constellation/v2/internal/versions" "github.com/spf13/afero" "github.com/spf13/cobra" diff --git a/cli/internal/cmd/configgenerate_test.go b/cli/internal/cmd/configgenerate_test.go index 6c84179889..5247ec615e 100644 --- a/cli/internal/cmd/configgenerate_test.go +++ b/cli/internal/cmd/configgenerate_test.go @@ -11,13 +11,13 @@ import ( "strings" "testing" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/internal/attestation/variant" "github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider" "github.com/edgelesssys/constellation/v2/internal/config" "github.com/edgelesssys/constellation/v2/internal/constants" "github.com/edgelesssys/constellation/v2/internal/file" "github.com/edgelesssys/constellation/v2/internal/logger" + "github.com/edgelesssys/constellation/v2/internal/state" "github.com/edgelesssys/constellation/v2/internal/versions" "github.com/spf13/afero" "github.com/stretchr/testify/assert" diff --git a/cli/internal/cmd/create_test.go b/cli/internal/cmd/create_test.go index db261de527..719682dc33 100644 --- a/cli/internal/cmd/create_test.go +++ b/cli/internal/cmd/create_test.go @@ -11,13 +11,13 @@ import ( "context" "testing" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider" "github.com/edgelesssys/constellation/v2/internal/config" "github.com/edgelesssys/constellation/v2/internal/constants" "github.com/edgelesssys/constellation/v2/internal/file" "github.com/edgelesssys/constellation/v2/internal/logger" consemver "github.com/edgelesssys/constellation/v2/internal/semver" + "github.com/edgelesssys/constellation/v2/internal/state" "github.com/spf13/afero" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/cli/internal/cmd/init.go b/cli/internal/cmd/init.go index 266a4b23a4..b3bb4bfdc5 100644 --- a/cli/internal/cmd/init.go +++ b/cli/internal/cmd/init.go @@ -23,13 +23,13 @@ import ( "sigs.k8s.io/yaml" "github.com/edgelesssys/constellation/v2/bootstrapper/initproto" - "github.com/edgelesssys/constellation/v2/cli/internal/helm" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/internal/config" "github.com/edgelesssys/constellation/v2/internal/constants" "github.com/edgelesssys/constellation/v2/internal/file" "github.com/edgelesssys/constellation/v2/internal/grpc/grpclog" + "github.com/edgelesssys/constellation/v2/internal/helm" "github.com/edgelesssys/constellation/v2/internal/kms/uri" + "github.com/edgelesssys/constellation/v2/internal/state" ) // NewInitCmd returns a new cobra.Command for the init command. diff --git a/cli/internal/cmd/init_test.go b/cli/internal/cmd/init_test.go index 0761ba780c..4e00afb960 100644 --- a/cli/internal/cmd/init_test.go +++ b/cli/internal/cmd/init_test.go @@ -22,8 +22,6 @@ import ( "github.com/edgelesssys/constellation/v2/bootstrapper/initproto" "github.com/edgelesssys/constellation/v2/cli/internal/cmd/pathprefix" - "github.com/edgelesssys/constellation/v2/cli/internal/helm" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/internal/atls" "github.com/edgelesssys/constellation/v2/internal/attestation/measurements" "github.com/edgelesssys/constellation/v2/internal/attestation/variant" @@ -35,10 +33,12 @@ import ( "github.com/edgelesssys/constellation/v2/internal/grpc/atlscredentials" "github.com/edgelesssys/constellation/v2/internal/grpc/dialer" "github.com/edgelesssys/constellation/v2/internal/grpc/testdialer" + "github.com/edgelesssys/constellation/v2/internal/helm" "github.com/edgelesssys/constellation/v2/internal/kms/uri" "github.com/edgelesssys/constellation/v2/internal/license" "github.com/edgelesssys/constellation/v2/internal/logger" "github.com/edgelesssys/constellation/v2/internal/semver" + "github.com/edgelesssys/constellation/v2/internal/state" "github.com/edgelesssys/constellation/v2/internal/versions" "github.com/spf13/afero" "github.com/stretchr/testify/assert" diff --git a/cli/internal/cmd/minidown.go b/cli/internal/cmd/minidown.go index a236783f92..f5bde4c3ad 100644 --- a/cli/internal/cmd/minidown.go +++ b/cli/internal/cmd/minidown.go @@ -11,9 +11,9 @@ import ( "fmt" "os" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/internal/constants" "github.com/edgelesssys/constellation/v2/internal/file" + "github.com/edgelesssys/constellation/v2/internal/state" "github.com/spf13/afero" "github.com/spf13/cobra" ) diff --git a/cli/internal/cmd/miniup.go b/cli/internal/cmd/miniup.go index 54f46d9c4d..2f1a71eb8b 100644 --- a/cli/internal/cmd/miniup.go +++ b/cli/internal/cmd/miniup.go @@ -12,12 +12,12 @@ import ( "os" "time" - "github.com/edgelesssys/constellation/v2/cli/internal/featureset" "github.com/edgelesssys/constellation/v2/cli/internal/libvirt" "github.com/edgelesssys/constellation/v2/internal/api/attestationconfigapi" "github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider" "github.com/edgelesssys/constellation/v2/internal/config" "github.com/edgelesssys/constellation/v2/internal/constants" + "github.com/edgelesssys/constellation/v2/internal/featureset" "github.com/edgelesssys/constellation/v2/internal/file" "github.com/spf13/afero" "github.com/spf13/cobra" diff --git a/cli/internal/cmd/recover.go b/cli/internal/cmd/recover.go index e285f340c2..735f97524e 100644 --- a/cli/internal/cmd/recover.go +++ b/cli/internal/cmd/recover.go @@ -16,7 +16,6 @@ import ( "time" "github.com/edgelesssys/constellation/v2/cli/internal/cloudcmd" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/disk-mapper/recoverproto" "github.com/edgelesssys/constellation/v2/internal/api/attestationconfigapi" "github.com/edgelesssys/constellation/v2/internal/atls" @@ -28,6 +27,7 @@ import ( grpcRetry "github.com/edgelesssys/constellation/v2/internal/grpc/retry" "github.com/edgelesssys/constellation/v2/internal/kms/uri" "github.com/edgelesssys/constellation/v2/internal/retry" + "github.com/edgelesssys/constellation/v2/internal/state" "github.com/spf13/afero" "github.com/spf13/cobra" "github.com/spf13/pflag" diff --git a/cli/internal/cmd/status.go b/cli/internal/cmd/status.go index 41467e8884..bcf8a6623c 100644 --- a/cli/internal/cmd/status.go +++ b/cli/internal/cmd/status.go @@ -12,13 +12,13 @@ import ( "fmt" "strings" - "github.com/edgelesssys/constellation/v2/cli/internal/helm" - "github.com/edgelesssys/constellation/v2/cli/internal/kubecmd" "github.com/edgelesssys/constellation/v2/internal/api/attestationconfigapi" "github.com/edgelesssys/constellation/v2/internal/attestation/variant" "github.com/edgelesssys/constellation/v2/internal/config" "github.com/edgelesssys/constellation/v2/internal/constants" "github.com/edgelesssys/constellation/v2/internal/file" + "github.com/edgelesssys/constellation/v2/internal/helm" + "github.com/edgelesssys/constellation/v2/internal/kubecmd" "github.com/spf13/afero" "github.com/spf13/cobra" "gopkg.in/yaml.v3" diff --git a/cli/internal/cmd/status_test.go b/cli/internal/cmd/status_test.go index 6d94b6a415..22af81adec 100644 --- a/cli/internal/cmd/status_test.go +++ b/cli/internal/cmd/status_test.go @@ -12,13 +12,13 @@ import ( "fmt" "testing" - "github.com/edgelesssys/constellation/v2/cli/internal/kubecmd" "github.com/edgelesssys/constellation/v2/internal/attestation/measurements" "github.com/edgelesssys/constellation/v2/internal/attestation/variant" "github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider" "github.com/edgelesssys/constellation/v2/internal/config" "github.com/edgelesssys/constellation/v2/internal/constants" "github.com/edgelesssys/constellation/v2/internal/file" + "github.com/edgelesssys/constellation/v2/internal/kubecmd" updatev1alpha1 "github.com/edgelesssys/constellation/v2/operators/constellation-node-operator/v2/api/v1alpha1" "github.com/spf13/afero" "github.com/stretchr/testify/assert" diff --git a/cli/internal/cmd/terminate_test.go b/cli/internal/cmd/terminate_test.go index 6780f240eb..b56767cbc4 100644 --- a/cli/internal/cmd/terminate_test.go +++ b/cli/internal/cmd/terminate_test.go @@ -11,10 +11,10 @@ import ( "errors" "testing" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/internal/constants" "github.com/edgelesssys/constellation/v2/internal/file" "github.com/edgelesssys/constellation/v2/internal/logger" + "github.com/edgelesssys/constellation/v2/internal/state" "github.com/spf13/afero" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/cli/internal/cmd/upgradeapply_test.go b/cli/internal/cmd/upgradeapply_test.go index b01a626b13..d5536b296e 100644 --- a/cli/internal/cmd/upgradeapply_test.go +++ b/cli/internal/cmd/upgradeapply_test.go @@ -13,17 +13,17 @@ import ( "testing" "github.com/edgelesssys/constellation/v2/cli/internal/cloudcmd" - "github.com/edgelesssys/constellation/v2/cli/internal/helm" - "github.com/edgelesssys/constellation/v2/cli/internal/kubecmd" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/internal/attestation/variant" "github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider" "github.com/edgelesssys/constellation/v2/internal/config" "github.com/edgelesssys/constellation/v2/internal/constants" "github.com/edgelesssys/constellation/v2/internal/file" + "github.com/edgelesssys/constellation/v2/internal/helm" "github.com/edgelesssys/constellation/v2/internal/kms/uri" + "github.com/edgelesssys/constellation/v2/internal/kubecmd" "github.com/edgelesssys/constellation/v2/internal/logger" "github.com/edgelesssys/constellation/v2/internal/semver" + "github.com/edgelesssys/constellation/v2/internal/state" "github.com/edgelesssys/constellation/v2/internal/versions" "github.com/spf13/afero" "github.com/stretchr/testify/assert" diff --git a/cli/internal/cmd/upgradecheck.go b/cli/internal/cmd/upgradecheck.go index 5ac6f996f9..36b8022d42 100644 --- a/cli/internal/cmd/upgradecheck.go +++ b/cli/internal/cmd/upgradecheck.go @@ -17,9 +17,6 @@ import ( "strings" "github.com/edgelesssys/constellation/v2/cli/internal/cloudcmd" - "github.com/edgelesssys/constellation/v2/cli/internal/featureset" - "github.com/edgelesssys/constellation/v2/cli/internal/helm" - "github.com/edgelesssys/constellation/v2/cli/internal/kubecmd" "github.com/edgelesssys/constellation/v2/internal/api/attestationconfigapi" "github.com/edgelesssys/constellation/v2/internal/api/fetcher" "github.com/edgelesssys/constellation/v2/internal/api/versionsapi" @@ -29,7 +26,10 @@ import ( "github.com/edgelesssys/constellation/v2/internal/compatibility" "github.com/edgelesssys/constellation/v2/internal/config" "github.com/edgelesssys/constellation/v2/internal/constants" + "github.com/edgelesssys/constellation/v2/internal/featureset" "github.com/edgelesssys/constellation/v2/internal/file" + "github.com/edgelesssys/constellation/v2/internal/helm" + "github.com/edgelesssys/constellation/v2/internal/kubecmd" consemver "github.com/edgelesssys/constellation/v2/internal/semver" "github.com/edgelesssys/constellation/v2/internal/sigstore" "github.com/edgelesssys/constellation/v2/internal/sigstore/keyselect" diff --git a/cli/internal/cmd/verify.go b/cli/internal/cmd/verify.go index 38adc668a9..b8f31b7007 100644 --- a/cli/internal/cmd/verify.go +++ b/cli/internal/cmd/verify.go @@ -26,7 +26,6 @@ import ( tpmProto "github.com/google/go-tpm-tools/proto/tpm" "github.com/edgelesssys/constellation/v2/cli/internal/cloudcmd" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/internal/api/attestationconfigapi" "github.com/edgelesssys/constellation/v2/internal/atls" "github.com/edgelesssys/constellation/v2/internal/attestation/measurements" @@ -37,6 +36,7 @@ import ( "github.com/edgelesssys/constellation/v2/internal/crypto" "github.com/edgelesssys/constellation/v2/internal/file" "github.com/edgelesssys/constellation/v2/internal/grpc/dialer" + "github.com/edgelesssys/constellation/v2/internal/state" "github.com/edgelesssys/constellation/v2/internal/verify" "github.com/edgelesssys/constellation/v2/verify/verifyproto" "github.com/golang-jwt/jwt/v5" diff --git a/cli/internal/cmd/verify_test.go b/cli/internal/cmd/verify_test.go index e4869f2823..f381c86b83 100644 --- a/cli/internal/cmd/verify_test.go +++ b/cli/internal/cmd/verify_test.go @@ -17,7 +17,6 @@ import ( "strings" "testing" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/internal/atls" "github.com/edgelesssys/constellation/v2/internal/attestation/measurements" "github.com/edgelesssys/constellation/v2/internal/attestation/variant" @@ -28,6 +27,7 @@ import ( "github.com/edgelesssys/constellation/v2/internal/grpc/dialer" "github.com/edgelesssys/constellation/v2/internal/grpc/testdialer" "github.com/edgelesssys/constellation/v2/internal/logger" + "github.com/edgelesssys/constellation/v2/internal/state" "github.com/edgelesssys/constellation/v2/verify/verifyproto" tpmProto "github.com/google/go-tpm-tools/proto/tpm" "github.com/spf13/afero" diff --git a/cli/internal/libvirt/BUILD.bazel b/cli/internal/libvirt/BUILD.bazel index 558ccb9f92..def228d8a3 100644 --- a/cli/internal/libvirt/BUILD.bazel +++ b/cli/internal/libvirt/BUILD.bazel @@ -7,7 +7,7 @@ go_library( name = "libvirt", srcs = ["libvirt.go"], importpath = "github.com/edgelesssys/constellation/v2/cli/internal/libvirt", - visibility = ["//cli:__subpackages__"], + visibility = ["//:__subpackages__"], deps = [ "//internal/file", "@com_github_docker_docker//api/types", diff --git a/cli/internal/terraform/BUILD.bazel b/cli/internal/terraform/BUILD.bazel index 3c277b9ad3..90208fd43c 100644 --- a/cli/internal/terraform/BUILD.bazel +++ b/cli/internal/terraform/BUILD.bazel @@ -10,12 +10,12 @@ go_library( "variables.go", ], importpath = "github.com/edgelesssys/constellation/v2/cli/internal/terraform", - visibility = ["//cli:__subpackages__"], + visibility = ["//:__subpackages__"], deps = [ - "//cli/internal/state", "//internal/cloud/cloudprovider", "//internal/constants", "//internal/file", + "//internal/state", "//terraform", "@com_github_hashicorp_go_version//:go-version", "@com_github_hashicorp_hc_install//:hc-install", @@ -42,11 +42,11 @@ go_test( ], embed = [":terraform"], deps = [ - "//cli/internal/state", "//internal/cloud/cloudprovider", "//internal/constants", "//internal/file", "//internal/role", + "//internal/state", "@com_github_azure_azure_sdk_for_go_sdk_azcore//to", "@com_github_hashicorp_terraform_exec//tfexec", "@com_github_hashicorp_terraform_json//:terraform-json", diff --git a/cli/internal/terraform/terraform.go b/cli/internal/terraform/terraform.go index 59d563a75e..5b92268827 100644 --- a/cli/internal/terraform/terraform.go +++ b/cli/internal/terraform/terraform.go @@ -24,10 +24,10 @@ import ( "io" "path/filepath" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider" "github.com/edgelesssys/constellation/v2/internal/constants" "github.com/edgelesssys/constellation/v2/internal/file" + "github.com/edgelesssys/constellation/v2/internal/state" "github.com/hashicorp/go-version" install "github.com/hashicorp/hc-install" "github.com/hashicorp/hc-install/fs" diff --git a/cli/internal/terraform/terraform_test.go b/cli/internal/terraform/terraform_test.go index 0f8cddc1a2..880a1d5684 100644 --- a/cli/internal/terraform/terraform_test.go +++ b/cli/internal/terraform/terraform_test.go @@ -16,11 +16,11 @@ import ( "strings" "testing" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider" "github.com/edgelesssys/constellation/v2/internal/constants" "github.com/edgelesssys/constellation/v2/internal/file" "github.com/edgelesssys/constellation/v2/internal/role" + "github.com/edgelesssys/constellation/v2/internal/state" "github.com/hashicorp/terraform-exec/tfexec" tfjson "github.com/hashicorp/terraform-json" "github.com/spf13/afero" diff --git a/hack/gocoverage/main_test.go b/hack/gocoverage/main_test.go index ab38b1da0a..7188a118e9 100644 --- a/hack/gocoverage/main_test.go +++ b/hack/gocoverage/main_test.go @@ -38,11 +38,11 @@ ok github.com/edgelesssys/constellation/v2/cli/internal/cloudcmd (cached) cove ok github.com/edgelesssys/constellation/v2/cli/internal/clusterid (cached) coverage: 56.2% of statements ? github.com/edgelesssys/constellation/v2/cli/internal/cmd/pathprefix [no test files] ok github.com/edgelesssys/constellation/v2/cli/internal/cmd (cached) coverage: 54.3% of statements -? github.com/edgelesssys/constellation/v2/cli/internal/featureset [no test files] -? github.com/edgelesssys/constellation/v2/cli/internal/helm/imageversion [no test files] +? github.com/edgelesssys/constellation/v2/internal/featureset [no test files] +? github.com/edgelesssys/constellation/v2/internal/helm/imageversion [no test files] ? github.com/edgelesssys/constellation/v2/cli/internal/libvirt [no test files] ? github.com/edgelesssys/constellation/v2/debugd/cmd/cdbg [no test files] -ok github.com/edgelesssys/constellation/v2/cli/internal/helm (cached) coverage: 36.0% of statements +ok github.com/edgelesssys/constellation/v2/internal/helm (cached) coverage: 36.0% of statements ok github.com/edgelesssys/constellation/v2/cli/internal/kubernetes (cached) coverage: 40.4% of statements ok github.com/edgelesssys/constellation/v2/cli/internal/terraform (cached) coverage: 70.8% of statements ok github.com/edgelesssys/constellation/v2/cli/internal/upgrade (cached) coverage: 66.7% of statements @@ -226,8 +226,8 @@ ok github.com/edgelesssys/constellation/v2/operators/constellation-node-operat ` const ( - exampleReportCLI = `{"Metadate":{"Created":"2023-08-24T16:09:02Z"},"Coverage":{"github.com/edgelesssys/constellation/v2/cli":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/cmd":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/cloudcmd":{"Coverage":65.5,"Notest":false,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/clusterid":{"Coverage":56.2,"Notest":false,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/cmd":{"Coverage":53.5,"Notest":false,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/cmd/pathprefix":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/featureset":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/helm":{"Coverage":47.7,"Notest":false,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/helm/imageversion":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/kubecmd":{"Coverage":54.1,"Notest":false,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/libvirt":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/terraform":{"Coverage":71.3,"Notest":false,"Nostmt":false}}}` - exampleReportCLIOld = `{"Metadate":{"Created":"2023-08-24T16:48:39Z"},"Coverage":{"github.com/edgelesssys/constellation/v2/cli":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/cmd":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/cloudcmd":{"Coverage":73.1,"Notest":false,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/clusterid":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/cmd":{"Coverage":61.6,"Notest":false,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/featureset":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/helm":{"Coverage":51.7,"Notest":false,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/helm/imageversion":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/iamid":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/kubernetes":{"Coverage":49.8,"Notest":false,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/libvirt":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/terraform":{"Coverage":66.7,"Notest":false,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/upgrade":{"Coverage":83,"Notest":false,"Nostmt":false}}}` + exampleReportCLI = `{"Metadate":{"Created":"2023-08-24T16:09:02Z"},"Coverage":{"github.com/edgelesssys/constellation/v2/cli":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/cmd":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/cloudcmd":{"Coverage":65.5,"Notest":false,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/clusterid":{"Coverage":56.2,"Notest":false,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/cmd":{"Coverage":53.5,"Notest":false,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/cmd/pathprefix":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/internal/featureset":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/internal/helm":{"Coverage":47.7,"Notest":false,"Nostmt":false},"github.com/edgelesssys/constellation/v2/internal/helm/imageversion":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/internal/kubecmd":{"Coverage":54.1,"Notest":false,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/libvirt":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/terraform":{"Coverage":71.3,"Notest":false,"Nostmt":false}}}` + exampleReportCLIOld = `{"Metadate":{"Created":"2023-08-24T16:48:39Z"},"Coverage":{"github.com/edgelesssys/constellation/v2/cli":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/cmd":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/cloudcmd":{"Coverage":73.1,"Notest":false,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/clusterid":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/cmd":{"Coverage":61.6,"Notest":false,"Nostmt":false},"github.com/edgelesssys/constellation/v2/internal/featureset":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/internal/helm":{"Coverage":51.7,"Notest":false,"Nostmt":false},"github.com/edgelesssys/constellation/v2/internal/helm/imageversion":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/iamid":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/kubernetes":{"Coverage":49.8,"Notest":false,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/libvirt":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/terraform":{"Coverage":66.7,"Notest":false,"Nostmt":false},"github.com/edgelesssys/constellation/v2/cli/internal/upgrade":{"Coverage":83,"Notest":false,"Nostmt":false}}}` exampleReportDisk = `{"Metadate":{"Created":"2023-08-24T16:40:25Z"},"Coverage":{"github.com/edgelesssys/constellation/v2/disk-mapper/cmd":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/disk-mapper/internal/diskencryption":{"Coverage":0,"Notest":true,"Nostmt":false},"github.com/edgelesssys/constellation/v2/disk-mapper/internal/recoveryserver":{"Coverage":89.1,"Notest":false,"Nostmt":false},"github.com/edgelesssys/constellation/v2/disk-mapper/internal/rejoinclient":{"Coverage":91.8,"Notest":false,"Nostmt":false},"github.com/edgelesssys/constellation/v2/disk-mapper/internal/setup":{"Coverage":68.9,"Notest":false,"Nostmt":false},"github.com/edgelesssys/constellation/v2/disk-mapper/internal/systemd":{"Coverage":25.8,"Notest":false,"Nostmt":false},"github.com/edgelesssys/constellation/v2/disk-mapper/recoverproto":{"Coverage":0,"Notest":true,"Nostmt":false}}}` ) diff --git a/internal/constellation/BUILD.bazel b/internal/constellation/BUILD.bazel new file mode 100644 index 0000000000..4fc1e733e7 --- /dev/null +++ b/internal/constellation/BUILD.bazel @@ -0,0 +1,8 @@ +load("@io_bazel_rules_go//go:def.bzl", "go_library") + +go_library( + name = "constellation", + srcs = ["constellation.go"], + importpath = "github.com/edgelesssys/constellation/v2/internal/constellation", + visibility = ["//:__subpackages__"], +) diff --git a/internal/constellation/constellation.go b/internal/constellation/constellation.go new file mode 100644 index 0000000000..af0fb6b4cd --- /dev/null +++ b/internal/constellation/constellation.go @@ -0,0 +1,14 @@ +/* +Copyright (c) Edgeless Systems GmbH + +SPDX-License-Identifier: AGPL-3.0-only +*/ + +/* +This package capsulates the Constellation API, which is used to manage and interact +with Constellation clusters. + +It should be used as the main entry point for any code that needs to interact with +said entities, with priority over using other internal packages directly. +*/ +package constellation diff --git a/cli/internal/featureset/BUILD.bazel b/internal/featureset/BUILD.bazel similarity index 76% rename from cli/internal/featureset/BUILD.bazel rename to internal/featureset/BUILD.bazel index 17e2db12a6..72a70e244d 100644 --- a/cli/internal/featureset/BUILD.bazel +++ b/internal/featureset/BUILD.bazel @@ -9,6 +9,6 @@ go_library( # keep "featureset_oss.go", ], - importpath = "github.com/edgelesssys/constellation/v2/cli/internal/featureset", + importpath = "github.com/edgelesssys/constellation/v2/internal/featureset", visibility = ["//cli:__subpackages__"], ) diff --git a/cli/internal/featureset/featureset.go b/internal/featureset/featureset.go similarity index 100% rename from cli/internal/featureset/featureset.go rename to internal/featureset/featureset.go diff --git a/cli/internal/featureset/featureset_enterprise.go b/internal/featureset/featureset_enterprise.go similarity index 100% rename from cli/internal/featureset/featureset_enterprise.go rename to internal/featureset/featureset_enterprise.go diff --git a/cli/internal/featureset/featureset_oss.go b/internal/featureset/featureset_oss.go similarity index 100% rename from cli/internal/featureset/featureset_oss.go rename to internal/featureset/featureset_oss.go diff --git a/cli/internal/helm/BUILD.bazel b/internal/helm/BUILD.bazel similarity index 99% rename from cli/internal/helm/BUILD.bazel rename to internal/helm/BUILD.bazel index 392f850a59..64a488adfe 100644 --- a/cli/internal/helm/BUILD.bazel +++ b/internal/helm/BUILD.bazel @@ -454,11 +454,9 @@ go_library( "charts/cilium/templates/spire/server/serviceaccount.yaml", "charts/cilium/templates/spire/server/statefulset.yaml", ], - importpath = "github.com/edgelesssys/constellation/v2/cli/internal/helm", - visibility = ["//cli:__subpackages__"], + importpath = "github.com/edgelesssys/constellation/v2/internal/helm", + visibility = ["//:__subpackages__"], deps = [ - "//cli/internal/helm/imageversion", - "//cli/internal/state", "//internal/cloud/azureshared", "//internal/cloud/cloudprovider", "//internal/cloud/gcpshared", @@ -467,10 +465,12 @@ go_library( "//internal/config", "//internal/constants", "//internal/file", + "//internal/helm/imageversion", "//internal/kms/uri", "//internal/kubernetes/kubectl", "//internal/retry", "//internal/semver", + "//internal/state", "//internal/versions", "@com_github_pkg_errors//:errors", "@io_k8s_client_go//util/retry", @@ -495,7 +495,6 @@ go_test( data = glob(["testdata/**"]), embed = [":helm"], deps = [ - "//cli/internal/state", "//internal/attestation/measurements", "//internal/cloud/azureshared", "//internal/cloud/cloudprovider", @@ -505,6 +504,7 @@ go_test( "//internal/kms/uri", "//internal/logger", "//internal/semver", + "//internal/state", "@com_github_pkg_errors//:errors", "@com_github_stretchr_testify//assert", "@com_github_stretchr_testify//mock", diff --git a/cli/internal/helm/README.md b/internal/helm/README.md similarity index 100% rename from cli/internal/helm/README.md rename to internal/helm/README.md diff --git a/cli/internal/helm/action.go b/internal/helm/action.go similarity index 100% rename from cli/internal/helm/action.go rename to internal/helm/action.go diff --git a/cli/internal/helm/actionfactory.go b/internal/helm/actionfactory.go similarity index 100% rename from cli/internal/helm/actionfactory.go rename to internal/helm/actionfactory.go diff --git a/cli/internal/helm/actionfactory_test.go b/internal/helm/actionfactory_test.go similarity index 100% rename from cli/internal/helm/actionfactory_test.go rename to internal/helm/actionfactory_test.go diff --git a/cli/internal/helm/charts/aws-load-balancer-controller/.helmignore b/internal/helm/charts/aws-load-balancer-controller/.helmignore similarity index 100% rename from cli/internal/helm/charts/aws-load-balancer-controller/.helmignore rename to internal/helm/charts/aws-load-balancer-controller/.helmignore diff --git a/cli/internal/helm/charts/aws-load-balancer-controller/Chart.yaml b/internal/helm/charts/aws-load-balancer-controller/Chart.yaml similarity index 100% rename from cli/internal/helm/charts/aws-load-balancer-controller/Chart.yaml rename to internal/helm/charts/aws-load-balancer-controller/Chart.yaml diff --git a/cli/internal/helm/charts/aws-load-balancer-controller/README.md b/internal/helm/charts/aws-load-balancer-controller/README.md similarity index 100% rename from cli/internal/helm/charts/aws-load-balancer-controller/README.md rename to internal/helm/charts/aws-load-balancer-controller/README.md diff --git a/cli/internal/helm/charts/aws-load-balancer-controller/crds/crds.yaml b/internal/helm/charts/aws-load-balancer-controller/crds/crds.yaml similarity index 100% rename from cli/internal/helm/charts/aws-load-balancer-controller/crds/crds.yaml rename to internal/helm/charts/aws-load-balancer-controller/crds/crds.yaml diff --git a/cli/internal/helm/charts/aws-load-balancer-controller/templates/NOTES.txt b/internal/helm/charts/aws-load-balancer-controller/templates/NOTES.txt similarity index 100% rename from cli/internal/helm/charts/aws-load-balancer-controller/templates/NOTES.txt rename to internal/helm/charts/aws-load-balancer-controller/templates/NOTES.txt diff --git a/cli/internal/helm/charts/aws-load-balancer-controller/templates/_helpers.tpl b/internal/helm/charts/aws-load-balancer-controller/templates/_helpers.tpl similarity index 100% rename from cli/internal/helm/charts/aws-load-balancer-controller/templates/_helpers.tpl rename to internal/helm/charts/aws-load-balancer-controller/templates/_helpers.tpl diff --git a/cli/internal/helm/charts/aws-load-balancer-controller/templates/deployment.yaml b/internal/helm/charts/aws-load-balancer-controller/templates/deployment.yaml similarity index 100% rename from cli/internal/helm/charts/aws-load-balancer-controller/templates/deployment.yaml rename to internal/helm/charts/aws-load-balancer-controller/templates/deployment.yaml diff --git a/cli/internal/helm/charts/aws-load-balancer-controller/templates/ingressclass.yaml b/internal/helm/charts/aws-load-balancer-controller/templates/ingressclass.yaml similarity index 100% rename from cli/internal/helm/charts/aws-load-balancer-controller/templates/ingressclass.yaml rename to internal/helm/charts/aws-load-balancer-controller/templates/ingressclass.yaml diff --git a/cli/internal/helm/charts/aws-load-balancer-controller/templates/pdb.yaml b/internal/helm/charts/aws-load-balancer-controller/templates/pdb.yaml similarity index 100% rename from cli/internal/helm/charts/aws-load-balancer-controller/templates/pdb.yaml rename to internal/helm/charts/aws-load-balancer-controller/templates/pdb.yaml diff --git a/cli/internal/helm/charts/aws-load-balancer-controller/templates/rbac.yaml b/internal/helm/charts/aws-load-balancer-controller/templates/rbac.yaml similarity index 100% rename from cli/internal/helm/charts/aws-load-balancer-controller/templates/rbac.yaml rename to internal/helm/charts/aws-load-balancer-controller/templates/rbac.yaml diff --git a/cli/internal/helm/charts/aws-load-balancer-controller/templates/service.yaml b/internal/helm/charts/aws-load-balancer-controller/templates/service.yaml similarity index 100% rename from cli/internal/helm/charts/aws-load-balancer-controller/templates/service.yaml rename to internal/helm/charts/aws-load-balancer-controller/templates/service.yaml diff --git a/cli/internal/helm/charts/aws-load-balancer-controller/templates/serviceaccount.yaml b/internal/helm/charts/aws-load-balancer-controller/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/charts/aws-load-balancer-controller/templates/serviceaccount.yaml rename to internal/helm/charts/aws-load-balancer-controller/templates/serviceaccount.yaml diff --git a/cli/internal/helm/charts/aws-load-balancer-controller/templates/servicemonitor.yaml b/internal/helm/charts/aws-load-balancer-controller/templates/servicemonitor.yaml similarity index 100% rename from cli/internal/helm/charts/aws-load-balancer-controller/templates/servicemonitor.yaml rename to internal/helm/charts/aws-load-balancer-controller/templates/servicemonitor.yaml diff --git a/cli/internal/helm/charts/aws-load-balancer-controller/templates/webhook.yaml b/internal/helm/charts/aws-load-balancer-controller/templates/webhook.yaml similarity index 100% rename from cli/internal/helm/charts/aws-load-balancer-controller/templates/webhook.yaml rename to internal/helm/charts/aws-load-balancer-controller/templates/webhook.yaml diff --git a/cli/internal/helm/charts/aws-load-balancer-controller/values.yaml b/internal/helm/charts/aws-load-balancer-controller/values.yaml similarity index 100% rename from cli/internal/helm/charts/aws-load-balancer-controller/values.yaml rename to internal/helm/charts/aws-load-balancer-controller/values.yaml diff --git a/cli/internal/helm/charts/cert-manager/Chart.yaml b/internal/helm/charts/cert-manager/Chart.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/Chart.yaml rename to internal/helm/charts/cert-manager/Chart.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/NOTES.txt b/internal/helm/charts/cert-manager/templates/NOTES.txt similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/NOTES.txt rename to internal/helm/charts/cert-manager/templates/NOTES.txt diff --git a/cli/internal/helm/charts/cert-manager/templates/_helpers.tpl b/internal/helm/charts/cert-manager/templates/_helpers.tpl similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/_helpers.tpl rename to internal/helm/charts/cert-manager/templates/_helpers.tpl diff --git a/cli/internal/helm/charts/cert-manager/templates/cainjector-deployment.yaml b/internal/helm/charts/cert-manager/templates/cainjector-deployment.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/cainjector-deployment.yaml rename to internal/helm/charts/cert-manager/templates/cainjector-deployment.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/cainjector-psp-clusterrole.yaml b/internal/helm/charts/cert-manager/templates/cainjector-psp-clusterrole.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/cainjector-psp-clusterrole.yaml rename to internal/helm/charts/cert-manager/templates/cainjector-psp-clusterrole.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/cainjector-psp-clusterrolebinding.yaml b/internal/helm/charts/cert-manager/templates/cainjector-psp-clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/cainjector-psp-clusterrolebinding.yaml rename to internal/helm/charts/cert-manager/templates/cainjector-psp-clusterrolebinding.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/cainjector-psp.yaml b/internal/helm/charts/cert-manager/templates/cainjector-psp.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/cainjector-psp.yaml rename to internal/helm/charts/cert-manager/templates/cainjector-psp.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/cainjector-rbac.yaml b/internal/helm/charts/cert-manager/templates/cainjector-rbac.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/cainjector-rbac.yaml rename to internal/helm/charts/cert-manager/templates/cainjector-rbac.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/cainjector-serviceaccount.yaml b/internal/helm/charts/cert-manager/templates/cainjector-serviceaccount.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/cainjector-serviceaccount.yaml rename to internal/helm/charts/cert-manager/templates/cainjector-serviceaccount.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/crds.yaml b/internal/helm/charts/cert-manager/templates/crds.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/crds.yaml rename to internal/helm/charts/cert-manager/templates/crds.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/deployment.yaml b/internal/helm/charts/cert-manager/templates/deployment.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/deployment.yaml rename to internal/helm/charts/cert-manager/templates/deployment.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/networkpolicy-egress.yaml b/internal/helm/charts/cert-manager/templates/networkpolicy-egress.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/networkpolicy-egress.yaml rename to internal/helm/charts/cert-manager/templates/networkpolicy-egress.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/networkpolicy-webhooks.yaml b/internal/helm/charts/cert-manager/templates/networkpolicy-webhooks.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/networkpolicy-webhooks.yaml rename to internal/helm/charts/cert-manager/templates/networkpolicy-webhooks.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/psp-clusterrole.yaml b/internal/helm/charts/cert-manager/templates/psp-clusterrole.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/psp-clusterrole.yaml rename to internal/helm/charts/cert-manager/templates/psp-clusterrole.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/psp-clusterrolebinding.yaml b/internal/helm/charts/cert-manager/templates/psp-clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/psp-clusterrolebinding.yaml rename to internal/helm/charts/cert-manager/templates/psp-clusterrolebinding.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/psp.yaml b/internal/helm/charts/cert-manager/templates/psp.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/psp.yaml rename to internal/helm/charts/cert-manager/templates/psp.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/rbac.yaml b/internal/helm/charts/cert-manager/templates/rbac.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/rbac.yaml rename to internal/helm/charts/cert-manager/templates/rbac.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/service.yaml b/internal/helm/charts/cert-manager/templates/service.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/service.yaml rename to internal/helm/charts/cert-manager/templates/service.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/serviceaccount.yaml b/internal/helm/charts/cert-manager/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/serviceaccount.yaml rename to internal/helm/charts/cert-manager/templates/serviceaccount.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/servicemonitor.yaml b/internal/helm/charts/cert-manager/templates/servicemonitor.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/servicemonitor.yaml rename to internal/helm/charts/cert-manager/templates/servicemonitor.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/startupapicheck-job.yaml b/internal/helm/charts/cert-manager/templates/startupapicheck-job.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/startupapicheck-job.yaml rename to internal/helm/charts/cert-manager/templates/startupapicheck-job.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/startupapicheck-psp-clusterrole.yaml b/internal/helm/charts/cert-manager/templates/startupapicheck-psp-clusterrole.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/startupapicheck-psp-clusterrole.yaml rename to internal/helm/charts/cert-manager/templates/startupapicheck-psp-clusterrole.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/startupapicheck-psp-clusterrolebinding.yaml b/internal/helm/charts/cert-manager/templates/startupapicheck-psp-clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/startupapicheck-psp-clusterrolebinding.yaml rename to internal/helm/charts/cert-manager/templates/startupapicheck-psp-clusterrolebinding.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/startupapicheck-psp.yaml b/internal/helm/charts/cert-manager/templates/startupapicheck-psp.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/startupapicheck-psp.yaml rename to internal/helm/charts/cert-manager/templates/startupapicheck-psp.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/startupapicheck-rbac.yaml b/internal/helm/charts/cert-manager/templates/startupapicheck-rbac.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/startupapicheck-rbac.yaml rename to internal/helm/charts/cert-manager/templates/startupapicheck-rbac.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/startupapicheck-serviceaccount.yaml b/internal/helm/charts/cert-manager/templates/startupapicheck-serviceaccount.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/startupapicheck-serviceaccount.yaml rename to internal/helm/charts/cert-manager/templates/startupapicheck-serviceaccount.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/webhook-config.yaml b/internal/helm/charts/cert-manager/templates/webhook-config.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/webhook-config.yaml rename to internal/helm/charts/cert-manager/templates/webhook-config.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/webhook-deployment.yaml b/internal/helm/charts/cert-manager/templates/webhook-deployment.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/webhook-deployment.yaml rename to internal/helm/charts/cert-manager/templates/webhook-deployment.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/webhook-mutating-webhook.yaml b/internal/helm/charts/cert-manager/templates/webhook-mutating-webhook.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/webhook-mutating-webhook.yaml rename to internal/helm/charts/cert-manager/templates/webhook-mutating-webhook.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/webhook-psp-clusterrole.yaml b/internal/helm/charts/cert-manager/templates/webhook-psp-clusterrole.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/webhook-psp-clusterrole.yaml rename to internal/helm/charts/cert-manager/templates/webhook-psp-clusterrole.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/webhook-psp-clusterrolebinding.yaml b/internal/helm/charts/cert-manager/templates/webhook-psp-clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/webhook-psp-clusterrolebinding.yaml rename to internal/helm/charts/cert-manager/templates/webhook-psp-clusterrolebinding.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/webhook-psp.yaml b/internal/helm/charts/cert-manager/templates/webhook-psp.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/webhook-psp.yaml rename to internal/helm/charts/cert-manager/templates/webhook-psp.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/webhook-rbac.yaml b/internal/helm/charts/cert-manager/templates/webhook-rbac.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/webhook-rbac.yaml rename to internal/helm/charts/cert-manager/templates/webhook-rbac.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/webhook-service.yaml b/internal/helm/charts/cert-manager/templates/webhook-service.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/webhook-service.yaml rename to internal/helm/charts/cert-manager/templates/webhook-service.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/webhook-serviceaccount.yaml b/internal/helm/charts/cert-manager/templates/webhook-serviceaccount.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/webhook-serviceaccount.yaml rename to internal/helm/charts/cert-manager/templates/webhook-serviceaccount.yaml diff --git a/cli/internal/helm/charts/cert-manager/templates/webhook-validating-webhook.yaml b/internal/helm/charts/cert-manager/templates/webhook-validating-webhook.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/templates/webhook-validating-webhook.yaml rename to internal/helm/charts/cert-manager/templates/webhook-validating-webhook.yaml diff --git a/cli/internal/helm/charts/cert-manager/values.yaml b/internal/helm/charts/cert-manager/values.yaml similarity index 100% rename from cli/internal/helm/charts/cert-manager/values.yaml rename to internal/helm/charts/cert-manager/values.yaml diff --git a/cli/internal/helm/charts/cilium/.helmignore b/internal/helm/charts/cilium/.helmignore similarity index 100% rename from cli/internal/helm/charts/cilium/.helmignore rename to internal/helm/charts/cilium/.helmignore diff --git a/cli/internal/helm/charts/cilium/Chart.yaml b/internal/helm/charts/cilium/Chart.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/Chart.yaml rename to internal/helm/charts/cilium/Chart.yaml diff --git a/cli/internal/helm/charts/cilium/LICENSE b/internal/helm/charts/cilium/LICENSE similarity index 100% rename from cli/internal/helm/charts/cilium/LICENSE rename to internal/helm/charts/cilium/LICENSE diff --git a/cli/internal/helm/charts/cilium/README.md b/internal/helm/charts/cilium/README.md similarity index 100% rename from cli/internal/helm/charts/cilium/README.md rename to internal/helm/charts/cilium/README.md diff --git a/cli/internal/helm/charts/cilium/README.md.gotmpl b/internal/helm/charts/cilium/README.md.gotmpl similarity index 100% rename from cli/internal/helm/charts/cilium/README.md.gotmpl rename to internal/helm/charts/cilium/README.md.gotmpl diff --git a/cli/internal/helm/charts/cilium/files/agent/poststart-eni.bash b/internal/helm/charts/cilium/files/agent/poststart-eni.bash similarity index 100% rename from cli/internal/helm/charts/cilium/files/agent/poststart-eni.bash rename to internal/helm/charts/cilium/files/agent/poststart-eni.bash diff --git a/cli/internal/helm/charts/cilium/files/cilium-agent/dashboards/cilium-dashboard.json b/internal/helm/charts/cilium/files/cilium-agent/dashboards/cilium-dashboard.json similarity index 100% rename from cli/internal/helm/charts/cilium/files/cilium-agent/dashboards/cilium-dashboard.json rename to internal/helm/charts/cilium/files/cilium-agent/dashboards/cilium-dashboard.json diff --git a/cli/internal/helm/charts/cilium/files/cilium-envoy/configmap/bootstrap-config.json b/internal/helm/charts/cilium/files/cilium-envoy/configmap/bootstrap-config.json similarity index 100% rename from cli/internal/helm/charts/cilium/files/cilium-envoy/configmap/bootstrap-config.json rename to internal/helm/charts/cilium/files/cilium-envoy/configmap/bootstrap-config.json diff --git a/cli/internal/helm/charts/cilium/files/cilium-operator/dashboards/cilium-operator-dashboard.json b/internal/helm/charts/cilium/files/cilium-operator/dashboards/cilium-operator-dashboard.json similarity index 100% rename from cli/internal/helm/charts/cilium/files/cilium-operator/dashboards/cilium-operator-dashboard.json rename to internal/helm/charts/cilium/files/cilium-operator/dashboards/cilium-operator-dashboard.json diff --git a/cli/internal/helm/charts/cilium/files/hubble/dashboards/hubble-dashboard.json b/internal/helm/charts/cilium/files/hubble/dashboards/hubble-dashboard.json similarity index 100% rename from cli/internal/helm/charts/cilium/files/hubble/dashboards/hubble-dashboard.json rename to internal/helm/charts/cilium/files/hubble/dashboards/hubble-dashboard.json diff --git a/cli/internal/helm/charts/cilium/files/hubble/dashboards/hubble-dns-namespace.json b/internal/helm/charts/cilium/files/hubble/dashboards/hubble-dns-namespace.json similarity index 100% rename from cli/internal/helm/charts/cilium/files/hubble/dashboards/hubble-dns-namespace.json rename to internal/helm/charts/cilium/files/hubble/dashboards/hubble-dns-namespace.json diff --git a/cli/internal/helm/charts/cilium/files/hubble/dashboards/hubble-l7-http-metrics-by-workload.json b/internal/helm/charts/cilium/files/hubble/dashboards/hubble-l7-http-metrics-by-workload.json similarity index 100% rename from cli/internal/helm/charts/cilium/files/hubble/dashboards/hubble-l7-http-metrics-by-workload.json rename to internal/helm/charts/cilium/files/hubble/dashboards/hubble-l7-http-metrics-by-workload.json diff --git a/cli/internal/helm/charts/cilium/files/hubble/dashboards/hubble-network-overview-namespace.json b/internal/helm/charts/cilium/files/hubble/dashboards/hubble-network-overview-namespace.json similarity index 100% rename from cli/internal/helm/charts/cilium/files/hubble/dashboards/hubble-network-overview-namespace.json rename to internal/helm/charts/cilium/files/hubble/dashboards/hubble-network-overview-namespace.json diff --git a/cli/internal/helm/charts/cilium/files/nodeinit/poststart-eni.bash b/internal/helm/charts/cilium/files/nodeinit/poststart-eni.bash similarity index 75% rename from cli/internal/helm/charts/cilium/files/nodeinit/poststart-eni.bash rename to internal/helm/charts/cilium/files/nodeinit/poststart-eni.bash index 3c75f12aa3..e89d9a853f 100644 --- a/cli/internal/helm/charts/cilium/files/nodeinit/poststart-eni.bash +++ b/internal/helm/charts/cilium/files/nodeinit/poststart-eni.bash @@ -13,9 +13,8 @@ set -o nounset # dependencies on anything that is part of the startup script # itself, and can be safely run multiple times per node (e.g. in # case of a restart). -if [[ "$(iptables-save | grep -c AWS-SNAT-CHAIN)" != "0" ]]; -then - echo 'Deleting iptables rules created by the AWS CNI VPC plugin' - iptables-save | grep -v AWS-SNAT-CHAIN | iptables-restore +if [[ "$(iptables-save | grep -c AWS-SNAT-CHAIN)" != "0" ]]; then + echo 'Deleting iptables rules created by the AWS CNI VPC plugin' + iptables-save | grep -v AWS-SNAT-CHAIN | iptables-restore fi echo 'Done!' diff --git a/cli/internal/helm/charts/cilium/files/nodeinit/prestop.bash b/internal/helm/charts/cilium/files/nodeinit/prestop.bash similarity index 100% rename from cli/internal/helm/charts/cilium/files/nodeinit/prestop.bash rename to internal/helm/charts/cilium/files/nodeinit/prestop.bash diff --git a/cli/internal/helm/charts/cilium/files/nodeinit/startup.bash b/internal/helm/charts/cilium/files/nodeinit/startup.bash similarity index 100% rename from cli/internal/helm/charts/cilium/files/nodeinit/startup.bash rename to internal/helm/charts/cilium/files/nodeinit/startup.bash diff --git a/cli/internal/helm/charts/cilium/files/spire/init.bash b/internal/helm/charts/cilium/files/spire/init.bash similarity index 100% rename from cli/internal/helm/charts/cilium/files/spire/init.bash rename to internal/helm/charts/cilium/files/spire/init.bash diff --git a/cli/internal/helm/charts/cilium/files/spire/wait-for-spire.bash b/internal/helm/charts/cilium/files/spire/wait-for-spire.bash similarity index 100% rename from cli/internal/helm/charts/cilium/files/spire/wait-for-spire.bash rename to internal/helm/charts/cilium/files/spire/wait-for-spire.bash diff --git a/cli/internal/helm/charts/cilium/templates/NOTES.txt b/internal/helm/charts/cilium/templates/NOTES.txt similarity index 100% rename from cli/internal/helm/charts/cilium/templates/NOTES.txt rename to internal/helm/charts/cilium/templates/NOTES.txt diff --git a/cli/internal/helm/charts/cilium/templates/_helpers.tpl b/internal/helm/charts/cilium/templates/_helpers.tpl similarity index 100% rename from cli/internal/helm/charts/cilium/templates/_helpers.tpl rename to internal/helm/charts/cilium/templates/_helpers.tpl diff --git a/cli/internal/helm/charts/cilium/templates/cilium-agent/clusterrole.yaml b/internal/helm/charts/cilium/templates/cilium-agent/clusterrole.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-agent/clusterrole.yaml rename to internal/helm/charts/cilium/templates/cilium-agent/clusterrole.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-agent/clusterrolebinding.yaml b/internal/helm/charts/cilium/templates/cilium-agent/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-agent/clusterrolebinding.yaml rename to internal/helm/charts/cilium/templates/cilium-agent/clusterrolebinding.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-agent/daemonset.yaml b/internal/helm/charts/cilium/templates/cilium-agent/daemonset.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-agent/daemonset.yaml rename to internal/helm/charts/cilium/templates/cilium-agent/daemonset.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-agent/dashboards-configmap.yaml b/internal/helm/charts/cilium/templates/cilium-agent/dashboards-configmap.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-agent/dashboards-configmap.yaml rename to internal/helm/charts/cilium/templates/cilium-agent/dashboards-configmap.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-agent/role.yaml b/internal/helm/charts/cilium/templates/cilium-agent/role.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-agent/role.yaml rename to internal/helm/charts/cilium/templates/cilium-agent/role.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-agent/rolebinding.yaml b/internal/helm/charts/cilium/templates/cilium-agent/rolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-agent/rolebinding.yaml rename to internal/helm/charts/cilium/templates/cilium-agent/rolebinding.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-agent/service.yaml b/internal/helm/charts/cilium/templates/cilium-agent/service.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-agent/service.yaml rename to internal/helm/charts/cilium/templates/cilium-agent/service.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-agent/serviceaccount.yaml b/internal/helm/charts/cilium/templates/cilium-agent/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-agent/serviceaccount.yaml rename to internal/helm/charts/cilium/templates/cilium-agent/serviceaccount.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-agent/servicemonitor.yaml b/internal/helm/charts/cilium/templates/cilium-agent/servicemonitor.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-agent/servicemonitor.yaml rename to internal/helm/charts/cilium/templates/cilium-agent/servicemonitor.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-ca-bundle-configmap.yaml b/internal/helm/charts/cilium/templates/cilium-ca-bundle-configmap.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-ca-bundle-configmap.yaml rename to internal/helm/charts/cilium/templates/cilium-ca-bundle-configmap.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-ca-secret.yaml b/internal/helm/charts/cilium/templates/cilium-ca-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-ca-secret.yaml rename to internal/helm/charts/cilium/templates/cilium-ca-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-configmap.yaml b/internal/helm/charts/cilium/templates/cilium-configmap.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-configmap.yaml rename to internal/helm/charts/cilium/templates/cilium-configmap.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-envoy/configmap.yaml b/internal/helm/charts/cilium/templates/cilium-envoy/configmap.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-envoy/configmap.yaml rename to internal/helm/charts/cilium/templates/cilium-envoy/configmap.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-envoy/daemonset.yaml b/internal/helm/charts/cilium/templates/cilium-envoy/daemonset.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-envoy/daemonset.yaml rename to internal/helm/charts/cilium/templates/cilium-envoy/daemonset.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-envoy/service.yaml b/internal/helm/charts/cilium/templates/cilium-envoy/service.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-envoy/service.yaml rename to internal/helm/charts/cilium/templates/cilium-envoy/service.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-envoy/serviceaccount.yaml b/internal/helm/charts/cilium/templates/cilium-envoy/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-envoy/serviceaccount.yaml rename to internal/helm/charts/cilium/templates/cilium-envoy/serviceaccount.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-envoy/servicemonitor.yaml b/internal/helm/charts/cilium/templates/cilium-envoy/servicemonitor.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-envoy/servicemonitor.yaml rename to internal/helm/charts/cilium/templates/cilium-envoy/servicemonitor.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-gateway-api-class.yaml b/internal/helm/charts/cilium/templates/cilium-gateway-api-class.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-gateway-api-class.yaml rename to internal/helm/charts/cilium/templates/cilium-gateway-api-class.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-ingress-class.yaml b/internal/helm/charts/cilium/templates/cilium-ingress-class.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-ingress-class.yaml rename to internal/helm/charts/cilium/templates/cilium-ingress-class.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-ingress-service.yaml b/internal/helm/charts/cilium/templates/cilium-ingress-service.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-ingress-service.yaml rename to internal/helm/charts/cilium/templates/cilium-ingress-service.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-nodeinit/daemonset.yaml b/internal/helm/charts/cilium/templates/cilium-nodeinit/daemonset.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-nodeinit/daemonset.yaml rename to internal/helm/charts/cilium/templates/cilium-nodeinit/daemonset.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-nodeinit/serviceaccount.yaml b/internal/helm/charts/cilium/templates/cilium-nodeinit/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-nodeinit/serviceaccount.yaml rename to internal/helm/charts/cilium/templates/cilium-nodeinit/serviceaccount.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-operator/_helpers.tpl b/internal/helm/charts/cilium/templates/cilium-operator/_helpers.tpl similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-operator/_helpers.tpl rename to internal/helm/charts/cilium/templates/cilium-operator/_helpers.tpl diff --git a/cli/internal/helm/charts/cilium/templates/cilium-operator/clusterrole.yaml b/internal/helm/charts/cilium/templates/cilium-operator/clusterrole.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-operator/clusterrole.yaml rename to internal/helm/charts/cilium/templates/cilium-operator/clusterrole.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-operator/clusterrolebinding.yaml b/internal/helm/charts/cilium/templates/cilium-operator/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-operator/clusterrolebinding.yaml rename to internal/helm/charts/cilium/templates/cilium-operator/clusterrolebinding.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-operator/dashboards-configmap.yaml b/internal/helm/charts/cilium/templates/cilium-operator/dashboards-configmap.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-operator/dashboards-configmap.yaml rename to internal/helm/charts/cilium/templates/cilium-operator/dashboards-configmap.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-operator/deployment.yaml b/internal/helm/charts/cilium/templates/cilium-operator/deployment.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-operator/deployment.yaml rename to internal/helm/charts/cilium/templates/cilium-operator/deployment.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-operator/poddisruptionbudget.yaml b/internal/helm/charts/cilium/templates/cilium-operator/poddisruptionbudget.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-operator/poddisruptionbudget.yaml rename to internal/helm/charts/cilium/templates/cilium-operator/poddisruptionbudget.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-operator/role.yaml b/internal/helm/charts/cilium/templates/cilium-operator/role.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-operator/role.yaml rename to internal/helm/charts/cilium/templates/cilium-operator/role.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-operator/rolebinding.yaml b/internal/helm/charts/cilium/templates/cilium-operator/rolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-operator/rolebinding.yaml rename to internal/helm/charts/cilium/templates/cilium-operator/rolebinding.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-operator/secret.yaml b/internal/helm/charts/cilium/templates/cilium-operator/secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-operator/secret.yaml rename to internal/helm/charts/cilium/templates/cilium-operator/secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-operator/service.yaml b/internal/helm/charts/cilium/templates/cilium-operator/service.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-operator/service.yaml rename to internal/helm/charts/cilium/templates/cilium-operator/service.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-operator/serviceaccount.yaml b/internal/helm/charts/cilium/templates/cilium-operator/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-operator/serviceaccount.yaml rename to internal/helm/charts/cilium/templates/cilium-operator/serviceaccount.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-operator/servicemonitor.yaml b/internal/helm/charts/cilium/templates/cilium-operator/servicemonitor.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-operator/servicemonitor.yaml rename to internal/helm/charts/cilium/templates/cilium-operator/servicemonitor.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-preflight/clusterrole.yaml b/internal/helm/charts/cilium/templates/cilium-preflight/clusterrole.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-preflight/clusterrole.yaml rename to internal/helm/charts/cilium/templates/cilium-preflight/clusterrole.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-preflight/clusterrolebinding.yaml b/internal/helm/charts/cilium/templates/cilium-preflight/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-preflight/clusterrolebinding.yaml rename to internal/helm/charts/cilium/templates/cilium-preflight/clusterrolebinding.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-preflight/daemonset.yaml b/internal/helm/charts/cilium/templates/cilium-preflight/daemonset.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-preflight/daemonset.yaml rename to internal/helm/charts/cilium/templates/cilium-preflight/daemonset.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-preflight/deployment.yaml b/internal/helm/charts/cilium/templates/cilium-preflight/deployment.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-preflight/deployment.yaml rename to internal/helm/charts/cilium/templates/cilium-preflight/deployment.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-preflight/poddisruptionbudget.yaml b/internal/helm/charts/cilium/templates/cilium-preflight/poddisruptionbudget.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-preflight/poddisruptionbudget.yaml rename to internal/helm/charts/cilium/templates/cilium-preflight/poddisruptionbudget.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-preflight/serviceaccount.yaml b/internal/helm/charts/cilium/templates/cilium-preflight/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-preflight/serviceaccount.yaml rename to internal/helm/charts/cilium/templates/cilium-preflight/serviceaccount.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-resource-quota.yaml b/internal/helm/charts/cilium/templates/cilium-resource-quota.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-resource-quota.yaml rename to internal/helm/charts/cilium/templates/cilium-resource-quota.yaml diff --git a/cli/internal/helm/charts/cilium/templates/cilium-secrets-namespace.yaml b/internal/helm/charts/cilium/templates/cilium-secrets-namespace.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/cilium-secrets-namespace.yaml rename to internal/helm/charts/cilium/templates/cilium-secrets-namespace.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/_helpers.tpl b/internal/helm/charts/cilium/templates/clustermesh-apiserver/_helpers.tpl similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/_helpers.tpl rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/_helpers.tpl diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/clusterrole.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/clusterrole.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/clusterrole.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/clusterrole.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/clusterrolebinding.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/clusterrolebinding.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/clusterrolebinding.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/deployment.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/deployment.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/deployment.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/deployment.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/metrics-service.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/metrics-service.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/metrics-service.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/metrics-service.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/poddisruptionbudget.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/poddisruptionbudget.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/poddisruptionbudget.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/poddisruptionbudget.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/service.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/service.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/service.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/service.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/serviceaccount.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/serviceaccount.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/serviceaccount.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/servicemonitor.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/servicemonitor.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/servicemonitor.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/servicemonitor.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/_helpers.tpl b/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/_helpers.tpl similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/_helpers.tpl rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/_helpers.tpl diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/admin-secret.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/admin-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/admin-secret.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/admin-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/client-secret.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/client-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/client-secret.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/client-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/clustermesh-apiserver-issuer.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/clustermesh-apiserver-issuer.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/clustermesh-apiserver-issuer.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/clustermesh-apiserver-issuer.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/remote-secret.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/remote-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/remote-secret.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/remote-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/server-secret.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/server-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/server-secret.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/server-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/_job-spec.tpl b/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/_job-spec.tpl similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/_job-spec.tpl rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/_job-spec.tpl diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/ca-secret.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/ca-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/ca-secret.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/ca-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/cronjob.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/cronjob.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/cronjob.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/cronjob.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/job.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/job.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/job.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/job.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/role.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/role.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/role.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/role.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/rolebinding.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/rolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/rolebinding.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/rolebinding.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/serviceaccount.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/serviceaccount.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/serviceaccount.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-helm/_helpers.tpl b/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-helm/_helpers.tpl similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-helm/_helpers.tpl rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-helm/_helpers.tpl diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-helm/admin-secret.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-helm/admin-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-helm/admin-secret.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-helm/admin-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-helm/ca-secret.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-helm/ca-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-helm/ca-secret.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-helm/ca-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-helm/client-secret.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-helm/client-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-helm/client-secret.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-helm/client-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-helm/remote-secret.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-helm/remote-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-helm/remote-secret.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-helm/remote-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-helm/server-secret.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-helm/server-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-helm/server-secret.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-helm/server-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-provided/admin-secret.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-provided/admin-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-provided/admin-secret.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-provided/admin-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-provided/ca-secret.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-provided/ca-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-provided/ca-secret.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-provided/ca-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-provided/client-secret.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-provided/client-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-provided/client-secret.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-provided/client-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-provided/remote-secret.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-provided/remote-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-provided/remote-secret.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-provided/remote-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-provided/server-secret.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-provided/server-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-provided/server-secret.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/tls-provided/server-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/users-configmap.yaml b/internal/helm/charts/cilium/templates/clustermesh-apiserver/users-configmap.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-apiserver/users-configmap.yaml rename to internal/helm/charts/cilium/templates/clustermesh-apiserver/users-configmap.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-config/_helpers.tpl b/internal/helm/charts/cilium/templates/clustermesh-config/_helpers.tpl similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-config/_helpers.tpl rename to internal/helm/charts/cilium/templates/clustermesh-config/_helpers.tpl diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-config/clustermesh-secret.yaml b/internal/helm/charts/cilium/templates/clustermesh-config/clustermesh-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-config/clustermesh-secret.yaml rename to internal/helm/charts/cilium/templates/clustermesh-config/clustermesh-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/clustermesh-config/kvstoremesh-secret.yaml b/internal/helm/charts/cilium/templates/clustermesh-config/kvstoremesh-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/clustermesh-config/kvstoremesh-secret.yaml rename to internal/helm/charts/cilium/templates/clustermesh-config/kvstoremesh-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/etcd-operator/cilium-etcd-operator-clusterrole.yaml b/internal/helm/charts/cilium/templates/etcd-operator/cilium-etcd-operator-clusterrole.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/etcd-operator/cilium-etcd-operator-clusterrole.yaml rename to internal/helm/charts/cilium/templates/etcd-operator/cilium-etcd-operator-clusterrole.yaml diff --git a/cli/internal/helm/charts/cilium/templates/etcd-operator/cilium-etcd-operator-clusterrolebinding.yaml b/internal/helm/charts/cilium/templates/etcd-operator/cilium-etcd-operator-clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/etcd-operator/cilium-etcd-operator-clusterrolebinding.yaml rename to internal/helm/charts/cilium/templates/etcd-operator/cilium-etcd-operator-clusterrolebinding.yaml diff --git a/cli/internal/helm/charts/cilium/templates/etcd-operator/cilium-etcd-operator-deployment.yaml b/internal/helm/charts/cilium/templates/etcd-operator/cilium-etcd-operator-deployment.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/etcd-operator/cilium-etcd-operator-deployment.yaml rename to internal/helm/charts/cilium/templates/etcd-operator/cilium-etcd-operator-deployment.yaml diff --git a/cli/internal/helm/charts/cilium/templates/etcd-operator/cilium-etcd-operator-serviceaccount.yaml b/internal/helm/charts/cilium/templates/etcd-operator/cilium-etcd-operator-serviceaccount.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/etcd-operator/cilium-etcd-operator-serviceaccount.yaml rename to internal/helm/charts/cilium/templates/etcd-operator/cilium-etcd-operator-serviceaccount.yaml diff --git a/cli/internal/helm/charts/cilium/templates/etcd-operator/etcd-operator-clusterrole.yaml b/internal/helm/charts/cilium/templates/etcd-operator/etcd-operator-clusterrole.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/etcd-operator/etcd-operator-clusterrole.yaml rename to internal/helm/charts/cilium/templates/etcd-operator/etcd-operator-clusterrole.yaml diff --git a/cli/internal/helm/charts/cilium/templates/etcd-operator/etcd-operator-clusterrolebinding.yaml b/internal/helm/charts/cilium/templates/etcd-operator/etcd-operator-clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/etcd-operator/etcd-operator-clusterrolebinding.yaml rename to internal/helm/charts/cilium/templates/etcd-operator/etcd-operator-clusterrolebinding.yaml diff --git a/cli/internal/helm/charts/cilium/templates/etcd-operator/etcd-operator-serviceaccount.yaml b/internal/helm/charts/cilium/templates/etcd-operator/etcd-operator-serviceaccount.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/etcd-operator/etcd-operator-serviceaccount.yaml rename to internal/helm/charts/cilium/templates/etcd-operator/etcd-operator-serviceaccount.yaml diff --git a/cli/internal/helm/charts/cilium/templates/etcd-operator/poddisruptionbudget.yaml b/internal/helm/charts/cilium/templates/etcd-operator/poddisruptionbudget.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/etcd-operator/poddisruptionbudget.yaml rename to internal/helm/charts/cilium/templates/etcd-operator/poddisruptionbudget.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble-relay/configmap.yaml b/internal/helm/charts/cilium/templates/hubble-relay/configmap.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble-relay/configmap.yaml rename to internal/helm/charts/cilium/templates/hubble-relay/configmap.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble-relay/deployment.yaml b/internal/helm/charts/cilium/templates/hubble-relay/deployment.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble-relay/deployment.yaml rename to internal/helm/charts/cilium/templates/hubble-relay/deployment.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble-relay/metrics-service.yaml b/internal/helm/charts/cilium/templates/hubble-relay/metrics-service.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble-relay/metrics-service.yaml rename to internal/helm/charts/cilium/templates/hubble-relay/metrics-service.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble-relay/poddisruptionbudget.yaml b/internal/helm/charts/cilium/templates/hubble-relay/poddisruptionbudget.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble-relay/poddisruptionbudget.yaml rename to internal/helm/charts/cilium/templates/hubble-relay/poddisruptionbudget.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble-relay/service.yaml b/internal/helm/charts/cilium/templates/hubble-relay/service.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble-relay/service.yaml rename to internal/helm/charts/cilium/templates/hubble-relay/service.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble-relay/serviceaccount.yaml b/internal/helm/charts/cilium/templates/hubble-relay/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble-relay/serviceaccount.yaml rename to internal/helm/charts/cilium/templates/hubble-relay/serviceaccount.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble-relay/servicemonitor.yaml b/internal/helm/charts/cilium/templates/hubble-relay/servicemonitor.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble-relay/servicemonitor.yaml rename to internal/helm/charts/cilium/templates/hubble-relay/servicemonitor.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble-ui/_nginx.tpl b/internal/helm/charts/cilium/templates/hubble-ui/_nginx.tpl similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble-ui/_nginx.tpl rename to internal/helm/charts/cilium/templates/hubble-ui/_nginx.tpl diff --git a/cli/internal/helm/charts/cilium/templates/hubble-ui/clusterrole.yaml b/internal/helm/charts/cilium/templates/hubble-ui/clusterrole.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble-ui/clusterrole.yaml rename to internal/helm/charts/cilium/templates/hubble-ui/clusterrole.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble-ui/clusterrolebinding.yaml b/internal/helm/charts/cilium/templates/hubble-ui/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble-ui/clusterrolebinding.yaml rename to internal/helm/charts/cilium/templates/hubble-ui/clusterrolebinding.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble-ui/configmap.yaml b/internal/helm/charts/cilium/templates/hubble-ui/configmap.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble-ui/configmap.yaml rename to internal/helm/charts/cilium/templates/hubble-ui/configmap.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble-ui/deployment.yaml b/internal/helm/charts/cilium/templates/hubble-ui/deployment.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble-ui/deployment.yaml rename to internal/helm/charts/cilium/templates/hubble-ui/deployment.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble-ui/ingress.yaml b/internal/helm/charts/cilium/templates/hubble-ui/ingress.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble-ui/ingress.yaml rename to internal/helm/charts/cilium/templates/hubble-ui/ingress.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble-ui/poddisruptionbudget.yaml b/internal/helm/charts/cilium/templates/hubble-ui/poddisruptionbudget.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble-ui/poddisruptionbudget.yaml rename to internal/helm/charts/cilium/templates/hubble-ui/poddisruptionbudget.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble-ui/service.yaml b/internal/helm/charts/cilium/templates/hubble-ui/service.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble-ui/service.yaml rename to internal/helm/charts/cilium/templates/hubble-ui/service.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble-ui/serviceaccount.yaml b/internal/helm/charts/cilium/templates/hubble-ui/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble-ui/serviceaccount.yaml rename to internal/helm/charts/cilium/templates/hubble-ui/serviceaccount.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble/dashboards-configmap.yaml b/internal/helm/charts/cilium/templates/hubble/dashboards-configmap.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/dashboards-configmap.yaml rename to internal/helm/charts/cilium/templates/hubble/dashboards-configmap.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble/metrics-service.yaml b/internal/helm/charts/cilium/templates/hubble/metrics-service.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/metrics-service.yaml rename to internal/helm/charts/cilium/templates/hubble/metrics-service.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble/peer-service.yaml b/internal/helm/charts/cilium/templates/hubble/peer-service.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/peer-service.yaml rename to internal/helm/charts/cilium/templates/hubble/peer-service.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble/servicemonitor.yaml b/internal/helm/charts/cilium/templates/hubble/servicemonitor.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/servicemonitor.yaml rename to internal/helm/charts/cilium/templates/hubble/servicemonitor.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble/tls-certmanager/_helpers.tpl b/internal/helm/charts/cilium/templates/hubble/tls-certmanager/_helpers.tpl similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/tls-certmanager/_helpers.tpl rename to internal/helm/charts/cilium/templates/hubble/tls-certmanager/_helpers.tpl diff --git a/cli/internal/helm/charts/cilium/templates/hubble/tls-certmanager/hubble-issuer.yaml b/internal/helm/charts/cilium/templates/hubble/tls-certmanager/hubble-issuer.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/tls-certmanager/hubble-issuer.yaml rename to internal/helm/charts/cilium/templates/hubble/tls-certmanager/hubble-issuer.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble/tls-certmanager/relay-client-secret.yaml b/internal/helm/charts/cilium/templates/hubble/tls-certmanager/relay-client-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/tls-certmanager/relay-client-secret.yaml rename to internal/helm/charts/cilium/templates/hubble/tls-certmanager/relay-client-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble/tls-certmanager/relay-server-secret.yaml b/internal/helm/charts/cilium/templates/hubble/tls-certmanager/relay-server-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/tls-certmanager/relay-server-secret.yaml rename to internal/helm/charts/cilium/templates/hubble/tls-certmanager/relay-server-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble/tls-certmanager/server-secret.yaml b/internal/helm/charts/cilium/templates/hubble/tls-certmanager/server-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/tls-certmanager/server-secret.yaml rename to internal/helm/charts/cilium/templates/hubble/tls-certmanager/server-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble/tls-certmanager/ui-client-certs.yaml b/internal/helm/charts/cilium/templates/hubble/tls-certmanager/ui-client-certs.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/tls-certmanager/ui-client-certs.yaml rename to internal/helm/charts/cilium/templates/hubble/tls-certmanager/ui-client-certs.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble/tls-cronjob/_job-spec.tpl b/internal/helm/charts/cilium/templates/hubble/tls-cronjob/_job-spec.tpl similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/tls-cronjob/_job-spec.tpl rename to internal/helm/charts/cilium/templates/hubble/tls-cronjob/_job-spec.tpl diff --git a/cli/internal/helm/charts/cilium/templates/hubble/tls-cronjob/ca-secret.yaml b/internal/helm/charts/cilium/templates/hubble/tls-cronjob/ca-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/tls-cronjob/ca-secret.yaml rename to internal/helm/charts/cilium/templates/hubble/tls-cronjob/ca-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble/tls-cronjob/clusterrole.yaml b/internal/helm/charts/cilium/templates/hubble/tls-cronjob/clusterrole.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/tls-cronjob/clusterrole.yaml rename to internal/helm/charts/cilium/templates/hubble/tls-cronjob/clusterrole.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble/tls-cronjob/clusterrolebinding.yaml b/internal/helm/charts/cilium/templates/hubble/tls-cronjob/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/tls-cronjob/clusterrolebinding.yaml rename to internal/helm/charts/cilium/templates/hubble/tls-cronjob/clusterrolebinding.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble/tls-cronjob/cronjob.yaml b/internal/helm/charts/cilium/templates/hubble/tls-cronjob/cronjob.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/tls-cronjob/cronjob.yaml rename to internal/helm/charts/cilium/templates/hubble/tls-cronjob/cronjob.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble/tls-cronjob/job.yaml b/internal/helm/charts/cilium/templates/hubble/tls-cronjob/job.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/tls-cronjob/job.yaml rename to internal/helm/charts/cilium/templates/hubble/tls-cronjob/job.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble/tls-cronjob/serviceaccount.yaml b/internal/helm/charts/cilium/templates/hubble/tls-cronjob/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/tls-cronjob/serviceaccount.yaml rename to internal/helm/charts/cilium/templates/hubble/tls-cronjob/serviceaccount.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble/tls-helm/_helpers.tpl b/internal/helm/charts/cilium/templates/hubble/tls-helm/_helpers.tpl similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/tls-helm/_helpers.tpl rename to internal/helm/charts/cilium/templates/hubble/tls-helm/_helpers.tpl diff --git a/cli/internal/helm/charts/cilium/templates/hubble/tls-helm/ca-secret.yaml b/internal/helm/charts/cilium/templates/hubble/tls-helm/ca-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/tls-helm/ca-secret.yaml rename to internal/helm/charts/cilium/templates/hubble/tls-helm/ca-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble/tls-helm/relay-client-secret.yaml b/internal/helm/charts/cilium/templates/hubble/tls-helm/relay-client-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/tls-helm/relay-client-secret.yaml rename to internal/helm/charts/cilium/templates/hubble/tls-helm/relay-client-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble/tls-helm/relay-server-secret.yaml b/internal/helm/charts/cilium/templates/hubble/tls-helm/relay-server-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/tls-helm/relay-server-secret.yaml rename to internal/helm/charts/cilium/templates/hubble/tls-helm/relay-server-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble/tls-helm/server-secret.yaml b/internal/helm/charts/cilium/templates/hubble/tls-helm/server-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/tls-helm/server-secret.yaml rename to internal/helm/charts/cilium/templates/hubble/tls-helm/server-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble/tls-helm/ui-client-certs.yaml b/internal/helm/charts/cilium/templates/hubble/tls-helm/ui-client-certs.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/tls-helm/ui-client-certs.yaml rename to internal/helm/charts/cilium/templates/hubble/tls-helm/ui-client-certs.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble/tls-provided/ca-secret.yaml b/internal/helm/charts/cilium/templates/hubble/tls-provided/ca-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/tls-provided/ca-secret.yaml rename to internal/helm/charts/cilium/templates/hubble/tls-provided/ca-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble/tls-provided/relay-client-secret.yaml b/internal/helm/charts/cilium/templates/hubble/tls-provided/relay-client-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/tls-provided/relay-client-secret.yaml rename to internal/helm/charts/cilium/templates/hubble/tls-provided/relay-client-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble/tls-provided/relay-server-secret.yaml b/internal/helm/charts/cilium/templates/hubble/tls-provided/relay-server-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/tls-provided/relay-server-secret.yaml rename to internal/helm/charts/cilium/templates/hubble/tls-provided/relay-server-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble/tls-provided/server-secret.yaml b/internal/helm/charts/cilium/templates/hubble/tls-provided/server-secret.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/tls-provided/server-secret.yaml rename to internal/helm/charts/cilium/templates/hubble/tls-provided/server-secret.yaml diff --git a/cli/internal/helm/charts/cilium/templates/hubble/tls-provided/ui-client-certs.yaml b/internal/helm/charts/cilium/templates/hubble/tls-provided/ui-client-certs.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/hubble/tls-provided/ui-client-certs.yaml rename to internal/helm/charts/cilium/templates/hubble/tls-provided/ui-client-certs.yaml diff --git a/cli/internal/helm/charts/cilium/templates/spire/agent/clusterrole.yaml b/internal/helm/charts/cilium/templates/spire/agent/clusterrole.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/spire/agent/clusterrole.yaml rename to internal/helm/charts/cilium/templates/spire/agent/clusterrole.yaml diff --git a/cli/internal/helm/charts/cilium/templates/spire/agent/clusterrolebinding.yaml b/internal/helm/charts/cilium/templates/spire/agent/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/spire/agent/clusterrolebinding.yaml rename to internal/helm/charts/cilium/templates/spire/agent/clusterrolebinding.yaml diff --git a/cli/internal/helm/charts/cilium/templates/spire/agent/configmap.yaml b/internal/helm/charts/cilium/templates/spire/agent/configmap.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/spire/agent/configmap.yaml rename to internal/helm/charts/cilium/templates/spire/agent/configmap.yaml diff --git a/cli/internal/helm/charts/cilium/templates/spire/agent/daemonset.yaml b/internal/helm/charts/cilium/templates/spire/agent/daemonset.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/spire/agent/daemonset.yaml rename to internal/helm/charts/cilium/templates/spire/agent/daemonset.yaml diff --git a/cli/internal/helm/charts/cilium/templates/spire/agent/serviceaccount.yaml b/internal/helm/charts/cilium/templates/spire/agent/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/spire/agent/serviceaccount.yaml rename to internal/helm/charts/cilium/templates/spire/agent/serviceaccount.yaml diff --git a/cli/internal/helm/charts/cilium/templates/spire/bundle-configmap.yaml b/internal/helm/charts/cilium/templates/spire/bundle-configmap.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/spire/bundle-configmap.yaml rename to internal/helm/charts/cilium/templates/spire/bundle-configmap.yaml diff --git a/cli/internal/helm/charts/cilium/templates/spire/namespace.yaml b/internal/helm/charts/cilium/templates/spire/namespace.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/spire/namespace.yaml rename to internal/helm/charts/cilium/templates/spire/namespace.yaml diff --git a/cli/internal/helm/charts/cilium/templates/spire/server/clusterrole.yaml b/internal/helm/charts/cilium/templates/spire/server/clusterrole.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/spire/server/clusterrole.yaml rename to internal/helm/charts/cilium/templates/spire/server/clusterrole.yaml diff --git a/cli/internal/helm/charts/cilium/templates/spire/server/clusterrolebinding.yaml b/internal/helm/charts/cilium/templates/spire/server/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/spire/server/clusterrolebinding.yaml rename to internal/helm/charts/cilium/templates/spire/server/clusterrolebinding.yaml diff --git a/cli/internal/helm/charts/cilium/templates/spire/server/configmap.yaml b/internal/helm/charts/cilium/templates/spire/server/configmap.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/spire/server/configmap.yaml rename to internal/helm/charts/cilium/templates/spire/server/configmap.yaml diff --git a/cli/internal/helm/charts/cilium/templates/spire/server/role.yaml b/internal/helm/charts/cilium/templates/spire/server/role.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/spire/server/role.yaml rename to internal/helm/charts/cilium/templates/spire/server/role.yaml diff --git a/cli/internal/helm/charts/cilium/templates/spire/server/rolebinding.yaml b/internal/helm/charts/cilium/templates/spire/server/rolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/spire/server/rolebinding.yaml rename to internal/helm/charts/cilium/templates/spire/server/rolebinding.yaml diff --git a/cli/internal/helm/charts/cilium/templates/spire/server/service.yaml b/internal/helm/charts/cilium/templates/spire/server/service.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/spire/server/service.yaml rename to internal/helm/charts/cilium/templates/spire/server/service.yaml diff --git a/cli/internal/helm/charts/cilium/templates/spire/server/serviceaccount.yaml b/internal/helm/charts/cilium/templates/spire/server/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/spire/server/serviceaccount.yaml rename to internal/helm/charts/cilium/templates/spire/server/serviceaccount.yaml diff --git a/cli/internal/helm/charts/cilium/templates/spire/server/statefulset.yaml b/internal/helm/charts/cilium/templates/spire/server/statefulset.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/spire/server/statefulset.yaml rename to internal/helm/charts/cilium/templates/spire/server/statefulset.yaml diff --git a/cli/internal/helm/charts/cilium/templates/validate.yaml b/internal/helm/charts/cilium/templates/validate.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/templates/validate.yaml rename to internal/helm/charts/cilium/templates/validate.yaml diff --git a/cli/internal/helm/charts/cilium/values.yaml b/internal/helm/charts/cilium/values.yaml similarity index 100% rename from cli/internal/helm/charts/cilium/values.yaml rename to internal/helm/charts/cilium/values.yaml diff --git a/cli/internal/helm/charts/cilium/values.yaml.tmpl b/internal/helm/charts/cilium/values.yaml.tmpl similarity index 100% rename from cli/internal/helm/charts/cilium/values.yaml.tmpl rename to internal/helm/charts/cilium/values.yaml.tmpl diff --git a/cli/internal/helm/charts/edgeless/constellation-services/.helmignore b/internal/helm/charts/edgeless/constellation-services/.helmignore similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/.helmignore rename to internal/helm/charts/edgeless/constellation-services/.helmignore diff --git a/cli/internal/helm/charts/edgeless/constellation-services/Chart.yaml b/internal/helm/charts/edgeless/constellation-services/Chart.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/Chart.yaml rename to internal/helm/charts/edgeless/constellation-services/Chart.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/.helmignore b/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/.helmignore similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/.helmignore rename to internal/helm/charts/edgeless/constellation-services/charts/autoscaler/.helmignore diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/Chart.yaml b/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/Chart.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/Chart.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/autoscaler/Chart.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/aws-deployment.yaml b/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/aws-deployment.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/aws-deployment.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/aws-deployment.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/azure-deployment.yaml b/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/azure-deployment.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/azure-deployment.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/azure-deployment.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/clusterrole.yaml b/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/clusterrole.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/clusterrole.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/clusterrole.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/clusterrolebinding.yaml b/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/clusterrolebinding.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/gcp-deployment.yaml b/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/gcp-deployment.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/gcp-deployment.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/gcp-deployment.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/poddisruptionbudget.yaml b/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/poddisruptionbudget.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/poddisruptionbudget.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/poddisruptionbudget.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/role.yaml b/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/role.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/role.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/role.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/rolebinding.yaml b/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/rolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/rolebinding.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/rolebinding.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/service.yaml b/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/service.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/service.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/service.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/serviceaccount.yaml b/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/serviceaccount.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/autoscaler/templates/serviceaccount.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/values.schema.json b/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/values.schema.json similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/values.schema.json rename to internal/helm/charts/edgeless/constellation-services/charts/autoscaler/values.schema.json diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/values.yaml b/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/values.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/autoscaler/values.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/autoscaler/values.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/.helmignore b/internal/helm/charts/edgeless/constellation-services/charts/ccm/.helmignore similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/.helmignore rename to internal/helm/charts/edgeless/constellation-services/charts/ccm/.helmignore diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/Chart.yaml b/internal/helm/charts/edgeless/constellation-services/charts/ccm/Chart.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/Chart.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/ccm/Chart.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/aws-daemonset.yaml b/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/aws-daemonset.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/aws-daemonset.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/aws-daemonset.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/azure-daemonset.yaml b/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/azure-daemonset.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/azure-daemonset.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/azure-daemonset.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/azure-secret.yaml b/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/azure-secret.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/azure-secret.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/azure-secret.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/clusterrolebinding.yaml b/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/clusterrolebinding.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/gcp-clusterrolebinding.yaml b/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/gcp-clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/gcp-clusterrolebinding.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/gcp-clusterrolebinding.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/gcp-cm.yaml b/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/gcp-cm.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/gcp-cm.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/gcp-cm.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/gcp-daemonset.yaml b/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/gcp-daemonset.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/gcp-daemonset.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/gcp-daemonset.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/gcp-secret.yaml b/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/gcp-secret.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/gcp-secret.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/gcp-secret.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/openstack-daemonset.yaml b/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/openstack-daemonset.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/openstack-daemonset.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/openstack-daemonset.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/openstack-secret.yaml b/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/openstack-secret.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/openstack-secret.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/openstack-secret.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/serviceaccount.yaml b/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/serviceaccount.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/ccm/templates/serviceaccount.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/values.schema.json b/internal/helm/charts/edgeless/constellation-services/charts/ccm/values.schema.json similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/values.schema.json rename to internal/helm/charts/edgeless/constellation-services/charts/ccm/values.schema.json diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/values.yaml b/internal/helm/charts/edgeless/constellation-services/charts/ccm/values.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/ccm/values.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/ccm/values.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/cnm/.helmignore b/internal/helm/charts/edgeless/constellation-services/charts/cnm/.helmignore similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/cnm/.helmignore rename to internal/helm/charts/edgeless/constellation-services/charts/cnm/.helmignore diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/cnm/Chart.yaml b/internal/helm/charts/edgeless/constellation-services/charts/cnm/Chart.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/cnm/Chart.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/cnm/Chart.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/cnm/templates/azure-daemonset.yaml b/internal/helm/charts/edgeless/constellation-services/charts/cnm/templates/azure-daemonset.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/cnm/templates/azure-daemonset.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/cnm/templates/azure-daemonset.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/cnm/templates/clusterrole.yaml b/internal/helm/charts/edgeless/constellation-services/charts/cnm/templates/clusterrole.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/cnm/templates/clusterrole.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/cnm/templates/clusterrole.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/cnm/templates/clusterrolebinding.yaml b/internal/helm/charts/edgeless/constellation-services/charts/cnm/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/cnm/templates/clusterrolebinding.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/cnm/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/cnm/templates/serviceaccount.yaml b/internal/helm/charts/edgeless/constellation-services/charts/cnm/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/cnm/templates/serviceaccount.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/cnm/templates/serviceaccount.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/cnm/values.schema.json b/internal/helm/charts/edgeless/constellation-services/charts/cnm/values.schema.json similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/cnm/values.schema.json rename to internal/helm/charts/edgeless/constellation-services/charts/cnm/values.schema.json diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/cnm/values.yaml b/internal/helm/charts/edgeless/constellation-services/charts/cnm/values.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/cnm/values.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/cnm/values.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/gcp-guest-agent/.helmignore b/internal/helm/charts/edgeless/constellation-services/charts/gcp-guest-agent/.helmignore similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/gcp-guest-agent/.helmignore rename to internal/helm/charts/edgeless/constellation-services/charts/gcp-guest-agent/.helmignore diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/gcp-guest-agent/Chart.yaml b/internal/helm/charts/edgeless/constellation-services/charts/gcp-guest-agent/Chart.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/gcp-guest-agent/Chart.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/gcp-guest-agent/Chart.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/gcp-guest-agent/templates/daemonset.yaml b/internal/helm/charts/edgeless/constellation-services/charts/gcp-guest-agent/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/gcp-guest-agent/templates/daemonset.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/gcp-guest-agent/templates/daemonset.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/gcp-guest-agent/values.schema.json b/internal/helm/charts/edgeless/constellation-services/charts/gcp-guest-agent/values.schema.json similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/gcp-guest-agent/values.schema.json rename to internal/helm/charts/edgeless/constellation-services/charts/gcp-guest-agent/values.schema.json diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/gcp-guest-agent/values.yaml b/internal/helm/charts/edgeless/constellation-services/charts/gcp-guest-agent/values.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/gcp-guest-agent/values.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/gcp-guest-agent/values.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/join-service/.helmignore b/internal/helm/charts/edgeless/constellation-services/charts/join-service/.helmignore similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/join-service/.helmignore rename to internal/helm/charts/edgeless/constellation-services/charts/join-service/.helmignore diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/join-service/Chart.yaml b/internal/helm/charts/edgeless/constellation-services/charts/join-service/Chart.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/join-service/Chart.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/join-service/Chart.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/join-service/templates/clusterrole.yaml b/internal/helm/charts/edgeless/constellation-services/charts/join-service/templates/clusterrole.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/join-service/templates/clusterrole.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/join-service/templates/clusterrole.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/join-service/templates/clusterrolebinding.yaml b/internal/helm/charts/edgeless/constellation-services/charts/join-service/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/join-service/templates/clusterrolebinding.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/join-service/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/join-service/templates/daemonset.yaml b/internal/helm/charts/edgeless/constellation-services/charts/join-service/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/join-service/templates/daemonset.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/join-service/templates/daemonset.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/join-service/templates/service.yaml b/internal/helm/charts/edgeless/constellation-services/charts/join-service/templates/service.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/join-service/templates/service.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/join-service/templates/service.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/join-service/templates/serviceaccount.yaml b/internal/helm/charts/edgeless/constellation-services/charts/join-service/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/join-service/templates/serviceaccount.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/join-service/templates/serviceaccount.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/join-service/values.schema.json b/internal/helm/charts/edgeless/constellation-services/charts/join-service/values.schema.json similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/join-service/values.schema.json rename to internal/helm/charts/edgeless/constellation-services/charts/join-service/values.schema.json diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/join-service/values.yaml b/internal/helm/charts/edgeless/constellation-services/charts/join-service/values.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/join-service/values.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/join-service/values.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/key-service/.helmignore b/internal/helm/charts/edgeless/constellation-services/charts/key-service/.helmignore similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/key-service/.helmignore rename to internal/helm/charts/edgeless/constellation-services/charts/key-service/.helmignore diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/key-service/Chart.yaml b/internal/helm/charts/edgeless/constellation-services/charts/key-service/Chart.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/key-service/Chart.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/key-service/Chart.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/key-service/templates/clusterrole.yaml b/internal/helm/charts/edgeless/constellation-services/charts/key-service/templates/clusterrole.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/key-service/templates/clusterrole.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/key-service/templates/clusterrole.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/key-service/templates/clusterrolebinding.yaml b/internal/helm/charts/edgeless/constellation-services/charts/key-service/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/key-service/templates/clusterrolebinding.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/key-service/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/key-service/templates/daemonset.yaml b/internal/helm/charts/edgeless/constellation-services/charts/key-service/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/key-service/templates/daemonset.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/key-service/templates/daemonset.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/key-service/templates/mastersecret.yaml b/internal/helm/charts/edgeless/constellation-services/charts/key-service/templates/mastersecret.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/key-service/templates/mastersecret.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/key-service/templates/mastersecret.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/key-service/templates/service.yaml b/internal/helm/charts/edgeless/constellation-services/charts/key-service/templates/service.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/key-service/templates/service.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/key-service/templates/service.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/key-service/templates/serviceaccount.yaml b/internal/helm/charts/edgeless/constellation-services/charts/key-service/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/key-service/templates/serviceaccount.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/key-service/templates/serviceaccount.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/key-service/values.schema.json b/internal/helm/charts/edgeless/constellation-services/charts/key-service/values.schema.json similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/key-service/values.schema.json rename to internal/helm/charts/edgeless/constellation-services/charts/key-service/values.schema.json diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/key-service/values.yaml b/internal/helm/charts/edgeless/constellation-services/charts/key-service/values.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/key-service/values.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/key-service/values.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/konnectivity/.helmignore b/internal/helm/charts/edgeless/constellation-services/charts/konnectivity/.helmignore similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/konnectivity/.helmignore rename to internal/helm/charts/edgeless/constellation-services/charts/konnectivity/.helmignore diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/konnectivity/Chart.yaml b/internal/helm/charts/edgeless/constellation-services/charts/konnectivity/Chart.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/konnectivity/Chart.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/konnectivity/Chart.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/konnectivity/templates/clusterrolebinding.yaml b/internal/helm/charts/edgeless/constellation-services/charts/konnectivity/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/konnectivity/templates/clusterrolebinding.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/konnectivity/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/konnectivity/templates/daemonset.yaml b/internal/helm/charts/edgeless/constellation-services/charts/konnectivity/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/konnectivity/templates/daemonset.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/konnectivity/templates/daemonset.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/konnectivity/templates/serviceaccount.yaml b/internal/helm/charts/edgeless/constellation-services/charts/konnectivity/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/konnectivity/templates/serviceaccount.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/konnectivity/templates/serviceaccount.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/konnectivity/values.schema.json b/internal/helm/charts/edgeless/constellation-services/charts/konnectivity/values.schema.json similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/konnectivity/values.schema.json rename to internal/helm/charts/edgeless/constellation-services/charts/konnectivity/values.schema.json diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/konnectivity/values.yaml b/internal/helm/charts/edgeless/constellation-services/charts/konnectivity/values.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/konnectivity/values.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/konnectivity/values.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/verification-service/.helmignore b/internal/helm/charts/edgeless/constellation-services/charts/verification-service/.helmignore similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/verification-service/.helmignore rename to internal/helm/charts/edgeless/constellation-services/charts/verification-service/.helmignore diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/verification-service/Chart.yaml b/internal/helm/charts/edgeless/constellation-services/charts/verification-service/Chart.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/verification-service/Chart.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/verification-service/Chart.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/verification-service/templates/daemonset.yaml b/internal/helm/charts/edgeless/constellation-services/charts/verification-service/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/verification-service/templates/daemonset.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/verification-service/templates/daemonset.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/verification-service/templates/nodeport-service.yaml b/internal/helm/charts/edgeless/constellation-services/charts/verification-service/templates/nodeport-service.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/verification-service/templates/nodeport-service.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/verification-service/templates/nodeport-service.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/verification-service/values.schema.json b/internal/helm/charts/edgeless/constellation-services/charts/verification-service/values.schema.json similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/verification-service/values.schema.json rename to internal/helm/charts/edgeless/constellation-services/charts/verification-service/values.schema.json diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/verification-service/values.yaml b/internal/helm/charts/edgeless/constellation-services/charts/verification-service/values.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/verification-service/values.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/verification-service/values.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-config/.helmignore b/internal/helm/charts/edgeless/constellation-services/charts/yawol-config/.helmignore similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-config/.helmignore rename to internal/helm/charts/edgeless/constellation-services/charts/yawol-config/.helmignore diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-config/Chart.yaml b/internal/helm/charts/edgeless/constellation-services/charts/yawol-config/Chart.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-config/Chart.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/yawol-config/Chart.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-config/templates/secret.yaml b/internal/helm/charts/edgeless/constellation-services/charts/yawol-config/templates/secret.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-config/templates/secret.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/yawol-config/templates/secret.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-config/values.schema.json b/internal/helm/charts/edgeless/constellation-services/charts/yawol-config/values.schema.json similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-config/values.schema.json rename to internal/helm/charts/edgeless/constellation-services/charts/yawol-config/values.schema.json diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-config/values.yaml b/internal/helm/charts/edgeless/constellation-services/charts/yawol-config/values.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-config/values.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/yawol-config/values.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/Chart.yaml b/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/Chart.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/Chart.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/Chart.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/README.md b/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/README.md similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/README.md rename to internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/README.md diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/crds/yawol.stackit.cloud_loadbalancermachines.yaml b/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/crds/yawol.stackit.cloud_loadbalancermachines.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/crds/yawol.stackit.cloud_loadbalancermachines.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/crds/yawol.stackit.cloud_loadbalancermachines.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/crds/yawol.stackit.cloud_loadbalancers.yaml b/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/crds/yawol.stackit.cloud_loadbalancers.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/crds/yawol.stackit.cloud_loadbalancers.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/crds/yawol.stackit.cloud_loadbalancers.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/crds/yawol.stackit.cloud_loadbalancersets.yaml b/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/crds/yawol.stackit.cloud_loadbalancersets.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/crds/yawol.stackit.cloud_loadbalancersets.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/crds/yawol.stackit.cloud_loadbalancersets.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/_helpers.tpl b/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/_helpers.tpl similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/_helpers.tpl rename to internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/_helpers.tpl diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/rbac-yawol-cloud-controller.yaml b/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/rbac-yawol-cloud-controller.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/rbac-yawol-cloud-controller.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/rbac-yawol-cloud-controller.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/rbac-yawol-controller.yaml b/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/rbac-yawol-controller.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/rbac-yawol-controller.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/rbac-yawol-controller.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/sa-yawol-cloud-controller.yaml b/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/sa-yawol-cloud-controller.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/sa-yawol-cloud-controller.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/sa-yawol-cloud-controller.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/sa-yawol-controller.yaml b/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/sa-yawol-controller.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/sa-yawol-controller.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/sa-yawol-controller.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/vpa.yaml b/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/vpa.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/vpa.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/vpa.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/yawol-cloud-controller.yaml b/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/yawol-cloud-controller.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/yawol-cloud-controller.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/yawol-cloud-controller.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/yawol-controller.yaml b/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/yawol-controller.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/yawol-controller.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/yawol-controller.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/yawol-gardener-monitoring.yaml b/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/yawol-gardener-monitoring.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/yawol-gardener-monitoring.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/templates/yawol-gardener-monitoring.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/values.yaml b/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/values.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/values.yaml rename to internal/helm/charts/edgeless/constellation-services/charts/yawol-controller/values.yaml diff --git a/cli/internal/helm/charts/edgeless/constellation-services/templates/.gitkeep b/internal/helm/charts/edgeless/constellation-services/templates/.gitkeep similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/templates/.gitkeep rename to internal/helm/charts/edgeless/constellation-services/templates/.gitkeep diff --git a/cli/internal/helm/charts/edgeless/constellation-services/values.yaml b/internal/helm/charts/edgeless/constellation-services/values.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/constellation-services/values.yaml rename to internal/helm/charts/edgeless/constellation-services/values.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/Chart.yaml b/internal/helm/charts/edgeless/csi/Chart.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/Chart.yaml rename to internal/helm/charts/edgeless/csi/Chart.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/CHANGELOG.md b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/CHANGELOG.md similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/CHANGELOG.md rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/CHANGELOG.md diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/Chart.yaml b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/Chart.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/Chart.yaml rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/Chart.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/NOTES.txt b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/NOTES.txt similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/NOTES.txt rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/NOTES.txt diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/_helpers.tpl b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/_helpers.tpl similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/_helpers.tpl rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/_helpers.tpl diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrole-attacher.yaml b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrole-attacher.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrole-attacher.yaml rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrole-attacher.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrole-csi-node.yaml b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrole-csi-node.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrole-csi-node.yaml rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrole-csi-node.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrole-provisioner.yaml b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrole-provisioner.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrole-provisioner.yaml rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrole-provisioner.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrole-resizer.yaml b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrole-resizer.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrole-resizer.yaml rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrole-resizer.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrole-snapshotter.yaml b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrole-snapshotter.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrole-snapshotter.yaml rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrole-snapshotter.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrolebinding-attacher.yaml b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrolebinding-attacher.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrolebinding-attacher.yaml rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrolebinding-attacher.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrolebinding-csi-node.yaml b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrolebinding-csi-node.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrolebinding-csi-node.yaml rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrolebinding-csi-node.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrolebinding-provisioner.yaml b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrolebinding-provisioner.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrolebinding-provisioner.yaml rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrolebinding-provisioner.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrolebinding-resizer.yaml b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrolebinding-resizer.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrolebinding-resizer.yaml rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrolebinding-resizer.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrolebinding-snapshotter.yaml b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrolebinding-snapshotter.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrolebinding-snapshotter.yaml rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/clusterrolebinding-snapshotter.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/controller.yaml b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/controller.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/controller.yaml rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/controller.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/csidriver.yaml b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/csidriver.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/csidriver.yaml rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/csidriver.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/metrics.yaml b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/metrics.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/metrics.yaml rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/metrics.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/node-windows.yaml b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/node-windows.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/node-windows.yaml rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/node-windows.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/node.yaml b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/node.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/node.yaml rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/node.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/poddisruptionbudget-controller.yaml b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/poddisruptionbudget-controller.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/poddisruptionbudget-controller.yaml rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/poddisruptionbudget-controller.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/serviceaccount-csi-controller.yaml b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/serviceaccount-csi-controller.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/serviceaccount-csi-controller.yaml rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/serviceaccount-csi-controller.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/serviceaccount-csi-node.yaml b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/serviceaccount-csi-node.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/serviceaccount-csi-node.yaml rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/serviceaccount-csi-node.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/storageclass.yaml b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/storageclass.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/storageclass.yaml rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/storageclass.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/storageclass_default.yaml b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/storageclass_default.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/storageclass_default.yaml rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/storageclass_default.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/storageclass_integrity.yaml b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/storageclass_integrity.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/storageclass_integrity.yaml rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/storageclass_integrity.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/volumesnapshotclass.yaml b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/volumesnapshotclass.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/volumesnapshotclass.yaml rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/templates/volumesnapshotclass.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/values.yaml b/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/values.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/values.yaml rename to internal/helm/charts/edgeless/csi/charts/aws-csi-driver/values.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/Chart.yaml b/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/Chart.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/Chart.yaml rename to internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/Chart.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/_helpers.tpl b/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/_helpers.tpl similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/_helpers.tpl rename to internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/_helpers.tpl diff --git a/cli/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/csi-azuredisk-controller.yaml b/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/csi-azuredisk-controller.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/csi-azuredisk-controller.yaml rename to internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/csi-azuredisk-controller.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/csi-azuredisk-driver.yaml b/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/csi-azuredisk-driver.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/csi-azuredisk-driver.yaml rename to internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/csi-azuredisk-driver.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/csi-azuredisk-node.yaml b/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/csi-azuredisk-node.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/csi-azuredisk-node.yaml rename to internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/csi-azuredisk-node.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/rbac-csi-azuredisk-controller.yaml b/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/rbac-csi-azuredisk-controller.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/rbac-csi-azuredisk-controller.yaml rename to internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/rbac-csi-azuredisk-controller.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/rbac-csi-azuredisk-node.yaml b/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/rbac-csi-azuredisk-node.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/rbac-csi-azuredisk-node.yaml rename to internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/rbac-csi-azuredisk-node.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/serviceaccount-csi-azuredisk-controller.yaml b/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/serviceaccount-csi-azuredisk-controller.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/serviceaccount-csi-azuredisk-controller.yaml rename to internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/serviceaccount-csi-azuredisk-controller.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/serviceaccount-csi-azuredisk-node.yaml b/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/serviceaccount-csi-azuredisk-node.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/serviceaccount-csi-azuredisk-node.yaml rename to internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/serviceaccount-csi-azuredisk-node.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/storageclass_default.yaml b/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/storageclass_default.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/storageclass_default.yaml rename to internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/storageclass_default.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/storageclass_integrity.yaml b/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/storageclass_integrity.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/storageclass_integrity.yaml rename to internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/templates/storageclass_integrity.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/values.yaml b/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/values.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/values.yaml rename to internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/values.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/cinder-config/.helmignore b/internal/helm/charts/edgeless/csi/charts/cinder-config/.helmignore similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/cinder-config/.helmignore rename to internal/helm/charts/edgeless/csi/charts/cinder-config/.helmignore diff --git a/cli/internal/helm/charts/edgeless/csi/charts/cinder-config/Chart.yaml b/internal/helm/charts/edgeless/csi/charts/cinder-config/Chart.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/cinder-config/Chart.yaml rename to internal/helm/charts/edgeless/csi/charts/cinder-config/Chart.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/cinder-config/templates/secret.yaml b/internal/helm/charts/edgeless/csi/charts/cinder-config/templates/secret.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/cinder-config/templates/secret.yaml rename to internal/helm/charts/edgeless/csi/charts/cinder-config/templates/secret.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/cinder-config/values.schema.json b/internal/helm/charts/edgeless/csi/charts/cinder-config/values.schema.json similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/cinder-config/values.schema.json rename to internal/helm/charts/edgeless/csi/charts/cinder-config/values.schema.json diff --git a/cli/internal/helm/charts/edgeless/csi/charts/cinder-config/values.yaml b/internal/helm/charts/edgeless/csi/charts/cinder-config/values.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/cinder-config/values.yaml rename to internal/helm/charts/edgeless/csi/charts/cinder-config/values.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/Chart.yaml b/internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/Chart.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/Chart.yaml rename to internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/Chart.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/templates/cluster_setup.yaml b/internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/templates/cluster_setup.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/templates/cluster_setup.yaml rename to internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/templates/cluster_setup.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/templates/controller.yaml b/internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/templates/controller.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/templates/controller.yaml rename to internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/templates/controller.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/templates/node.yaml b/internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/templates/node.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/templates/node.yaml rename to internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/templates/node.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/templates/storageclass_default.yaml b/internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/templates/storageclass_default.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/templates/storageclass_default.yaml rename to internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/templates/storageclass_default.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/templates/storageclass_integrity.yaml b/internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/templates/storageclass_integrity.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/templates/storageclass_integrity.yaml rename to internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/templates/storageclass_integrity.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/templates/v1_csidriver.yaml b/internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/templates/v1_csidriver.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/templates/v1_csidriver.yaml rename to internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/templates/v1_csidriver.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/values.yaml b/internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/values.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/values.yaml rename to internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/values.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/Chart.yaml b/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/Chart.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/Chart.yaml rename to internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/Chart.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/README.md b/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/README.md similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/README.md rename to internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/README.md diff --git a/cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/NOTES.txt b/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/NOTES.txt similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/NOTES.txt rename to internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/NOTES.txt diff --git a/cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/_helpers.tpl b/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/_helpers.tpl similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/_helpers.tpl rename to internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/_helpers.tpl diff --git a/cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/cinder-csi-driver.yaml b/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/cinder-csi-driver.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/cinder-csi-driver.yaml rename to internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/cinder-csi-driver.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/controllerplugin-deployment.yaml b/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/controllerplugin-deployment.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/controllerplugin-deployment.yaml rename to internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/controllerplugin-deployment.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/controllerplugin-rbac.yaml b/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/controllerplugin-rbac.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/controllerplugin-rbac.yaml rename to internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/controllerplugin-rbac.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/custom_storageclass.yaml b/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/custom_storageclass.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/custom_storageclass.yaml rename to internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/custom_storageclass.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/nodeplugin-daemonset.yaml b/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/nodeplugin-daemonset.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/nodeplugin-daemonset.yaml rename to internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/nodeplugin-daemonset.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/nodeplugin-rbac.yaml b/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/nodeplugin-rbac.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/nodeplugin-rbac.yaml rename to internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/nodeplugin-rbac.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/secret.yaml b/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/secret.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/secret.yaml rename to internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/secret.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/storageclass.yaml b/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/storageclass.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/storageclass.yaml rename to internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/templates/storageclass.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/values.yaml b/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/values.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/values.yaml rename to internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/values.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/snapshot-controller/Chart.yaml b/internal/helm/charts/edgeless/csi/charts/snapshot-controller/Chart.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/snapshot-controller/Chart.yaml rename to internal/helm/charts/edgeless/csi/charts/snapshot-controller/Chart.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/admission-configuration.yaml b/internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/admission-configuration.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/admission-configuration.yaml rename to internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/admission-configuration.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/rbac-snapshot-controller.yaml b/internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/rbac-snapshot-controller.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/rbac-snapshot-controller.yaml rename to internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/rbac-snapshot-controller.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/rbac-snapshot-webhook.yaml b/internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/rbac-snapshot-webhook.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/rbac-snapshot-webhook.yaml rename to internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/rbac-snapshot-webhook.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/selfsigned-issuer.yaml b/internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/selfsigned-issuer.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/selfsigned-issuer.yaml rename to internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/selfsigned-issuer.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/serving-cert.yaml b/internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/serving-cert.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/serving-cert.yaml rename to internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/serving-cert.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/snapshot-controller.yaml b/internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/snapshot-controller.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/snapshot-controller.yaml rename to internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/snapshot-controller.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/snapshot-webhook.yaml b/internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/snapshot-webhook.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/snapshot-webhook.yaml rename to internal/helm/charts/edgeless/csi/charts/snapshot-controller/templates/snapshot-webhook.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/snapshot-controller/values.yaml b/internal/helm/charts/edgeless/csi/charts/snapshot-controller/values.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/snapshot-controller/values.yaml rename to internal/helm/charts/edgeless/csi/charts/snapshot-controller/values.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/snapshot-crds/Chart.yaml b/internal/helm/charts/edgeless/csi/charts/snapshot-crds/Chart.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/snapshot-crds/Chart.yaml rename to internal/helm/charts/edgeless/csi/charts/snapshot-crds/Chart.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/snapshot-crds/templates/volumesnapshotclasses.yaml b/internal/helm/charts/edgeless/csi/charts/snapshot-crds/templates/volumesnapshotclasses.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/snapshot-crds/templates/volumesnapshotclasses.yaml rename to internal/helm/charts/edgeless/csi/charts/snapshot-crds/templates/volumesnapshotclasses.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/snapshot-crds/templates/volumesnapshotcontents.yaml b/internal/helm/charts/edgeless/csi/charts/snapshot-crds/templates/volumesnapshotcontents.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/snapshot-crds/templates/volumesnapshotcontents.yaml rename to internal/helm/charts/edgeless/csi/charts/snapshot-crds/templates/volumesnapshotcontents.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/snapshot-crds/templates/volumesnapshots.yaml b/internal/helm/charts/edgeless/csi/charts/snapshot-crds/templates/volumesnapshots.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/snapshot-crds/templates/volumesnapshots.yaml rename to internal/helm/charts/edgeless/csi/charts/snapshot-crds/templates/volumesnapshots.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/charts/snapshot-crds/values.yaml b/internal/helm/charts/edgeless/csi/charts/snapshot-crds/values.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/charts/snapshot-crds/values.yaml rename to internal/helm/charts/edgeless/csi/charts/snapshot-crds/values.yaml diff --git a/cli/internal/helm/charts/edgeless/csi/values.yaml b/internal/helm/charts/edgeless/csi/values.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/csi/values.yaml rename to internal/helm/charts/edgeless/csi/values.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/.helmignore b/internal/helm/charts/edgeless/operators/.helmignore similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/.helmignore rename to internal/helm/charts/edgeless/operators/.helmignore diff --git a/cli/internal/helm/charts/edgeless/operators/Chart.yaml b/internal/helm/charts/edgeless/operators/Chart.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/Chart.yaml rename to internal/helm/charts/edgeless/operators/Chart.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/.helmignore b/internal/helm/charts/edgeless/operators/charts/constellation-operator/.helmignore similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/.helmignore rename to internal/helm/charts/edgeless/operators/charts/constellation-operator/.helmignore diff --git a/cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/Chart.yaml b/internal/helm/charts/edgeless/operators/charts/constellation-operator/Chart.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/Chart.yaml rename to internal/helm/charts/edgeless/operators/charts/constellation-operator/Chart.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/crds/autoscalingstrategy-crd.yaml b/internal/helm/charts/edgeless/operators/charts/constellation-operator/crds/autoscalingstrategy-crd.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/crds/autoscalingstrategy-crd.yaml rename to internal/helm/charts/edgeless/operators/charts/constellation-operator/crds/autoscalingstrategy-crd.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/crds/joiningnode-crd.yaml b/internal/helm/charts/edgeless/operators/charts/constellation-operator/crds/joiningnode-crd.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/crds/joiningnode-crd.yaml rename to internal/helm/charts/edgeless/operators/charts/constellation-operator/crds/joiningnode-crd.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/crds/nodeversion-crd.yaml b/internal/helm/charts/edgeless/operators/charts/constellation-operator/crds/nodeversion-crd.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/crds/nodeversion-crd.yaml rename to internal/helm/charts/edgeless/operators/charts/constellation-operator/crds/nodeversion-crd.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/crds/pendingnode-crd.yaml b/internal/helm/charts/edgeless/operators/charts/constellation-operator/crds/pendingnode-crd.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/crds/pendingnode-crd.yaml rename to internal/helm/charts/edgeless/operators/charts/constellation-operator/crds/pendingnode-crd.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/crds/scalinggroup-crd.yaml b/internal/helm/charts/edgeless/operators/charts/constellation-operator/crds/scalinggroup-crd.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/crds/scalinggroup-crd.yaml rename to internal/helm/charts/edgeless/operators/charts/constellation-operator/crds/scalinggroup-crd.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/_helpers.tpl b/internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/_helpers.tpl similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/_helpers.tpl rename to internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/_helpers.tpl diff --git a/cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/deployment.yaml b/internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/deployment.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/deployment.yaml rename to internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/deployment.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/leader-election-rbac.yaml b/internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/leader-election-rbac.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/leader-election-rbac.yaml rename to internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/leader-election-rbac.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/manager-config.yaml b/internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/manager-config.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/manager-config.yaml rename to internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/manager-config.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/manager-rbac.yaml b/internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/manager-rbac.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/manager-rbac.yaml rename to internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/manager-rbac.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/metrics-reader-rbac.yaml b/internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/metrics-reader-rbac.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/metrics-reader-rbac.yaml rename to internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/metrics-reader-rbac.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/metrics-service.yaml b/internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/metrics-service.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/metrics-service.yaml rename to internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/metrics-service.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/proxy-rbac.yaml b/internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/proxy-rbac.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/proxy-rbac.yaml rename to internal/helm/charts/edgeless/operators/charts/constellation-operator/templates/proxy-rbac.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/values.schema.json b/internal/helm/charts/edgeless/operators/charts/constellation-operator/values.schema.json similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/values.schema.json rename to internal/helm/charts/edgeless/operators/charts/constellation-operator/values.schema.json diff --git a/cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/values.yaml b/internal/helm/charts/edgeless/operators/charts/constellation-operator/values.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/constellation-operator/values.yaml rename to internal/helm/charts/edgeless/operators/charts/constellation-operator/values.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/.helmignore b/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/.helmignore similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/.helmignore rename to internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/.helmignore diff --git a/cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/Chart.yaml b/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/Chart.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/Chart.yaml rename to internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/Chart.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/crds/nodemaintenance-crd.yaml b/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/crds/nodemaintenance-crd.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/crds/nodemaintenance-crd.yaml rename to internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/crds/nodemaintenance-crd.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/_helpers.tpl b/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/_helpers.tpl similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/_helpers.tpl rename to internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/_helpers.tpl diff --git a/cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/deployment.yaml b/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/deployment.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/deployment.yaml rename to internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/deployment.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/leader-election-rbac.yaml b/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/leader-election-rbac.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/leader-election-rbac.yaml rename to internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/leader-election-rbac.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/manager-rbac.yaml b/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/manager-rbac.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/manager-rbac.yaml rename to internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/manager-rbac.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/metrics-reader-rbac.yaml b/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/metrics-reader-rbac.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/metrics-reader-rbac.yaml rename to internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/metrics-reader-rbac.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/metrics-service.yaml b/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/metrics-service.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/metrics-service.yaml rename to internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/metrics-service.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/proxy-rbac.yaml b/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/proxy-rbac.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/proxy-rbac.yaml rename to internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/proxy-rbac.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/selfsigned-issuer.yaml b/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/selfsigned-issuer.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/selfsigned-issuer.yaml rename to internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/selfsigned-issuer.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/serving-cert.yaml b/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/serving-cert.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/serving-cert.yaml rename to internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/serving-cert.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/validating-webhook-configuration.yaml b/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/validating-webhook-configuration.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/validating-webhook-configuration.yaml rename to internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/validating-webhook-configuration.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/webhook-service.yaml b/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/webhook-service.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/webhook-service.yaml rename to internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/templates/webhook-service.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/values.schema.json b/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/values.schema.json similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/values.schema.json rename to internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/values.schema.json diff --git a/cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/values.yaml b/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/values.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/values.yaml rename to internal/helm/charts/edgeless/operators/charts/node-maintenance-operator/values.yaml diff --git a/cli/internal/helm/charts/edgeless/operators/values.yaml b/internal/helm/charts/edgeless/operators/values.yaml similarity index 100% rename from cli/internal/helm/charts/edgeless/operators/values.yaml rename to internal/helm/charts/edgeless/operators/values.yaml diff --git a/cli/internal/helm/chartutil.go b/internal/helm/chartutil.go similarity index 100% rename from cli/internal/helm/chartutil.go rename to internal/helm/chartutil.go diff --git a/cli/internal/helm/cilium.patch b/internal/helm/cilium.patch similarity index 100% rename from cli/internal/helm/cilium.patch rename to internal/helm/cilium.patch diff --git a/cli/internal/helm/generateCertManager.sh b/internal/helm/generateCertManager.sh similarity index 100% rename from cli/internal/helm/generateCertManager.sh rename to internal/helm/generateCertManager.sh diff --git a/cli/internal/helm/generateCilium.sh b/internal/helm/generateCilium.sh similarity index 100% rename from cli/internal/helm/generateCilium.sh rename to internal/helm/generateCilium.sh diff --git a/cli/internal/helm/helm.go b/internal/helm/helm.go similarity index 98% rename from cli/internal/helm/helm.go rename to internal/helm/helm.go index d859580972..a0ae6bd9bf 100644 --- a/cli/internal/helm/helm.go +++ b/internal/helm/helm.go @@ -32,13 +32,13 @@ import ( "context" "fmt" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/internal/config" "github.com/edgelesssys/constellation/v2/internal/constants" "github.com/edgelesssys/constellation/v2/internal/file" "github.com/edgelesssys/constellation/v2/internal/kms/uri" "github.com/edgelesssys/constellation/v2/internal/kubernetes/kubectl" "github.com/edgelesssys/constellation/v2/internal/semver" + "github.com/edgelesssys/constellation/v2/internal/state" ) const ( diff --git a/cli/internal/helm/helm_test.go b/internal/helm/helm_test.go similarity index 99% rename from cli/internal/helm/helm_test.go rename to internal/helm/helm_test.go index 9b3f836151..74d5c6ad4e 100644 --- a/cli/internal/helm/helm_test.go +++ b/internal/helm/helm_test.go @@ -10,13 +10,13 @@ import ( "errors" "testing" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider" "github.com/edgelesssys/constellation/v2/internal/compatibility" "github.com/edgelesssys/constellation/v2/internal/config" "github.com/edgelesssys/constellation/v2/internal/kms/uri" "github.com/edgelesssys/constellation/v2/internal/logger" "github.com/edgelesssys/constellation/v2/internal/semver" + "github.com/edgelesssys/constellation/v2/internal/state" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" "helm.sh/helm/v3/pkg/action" diff --git a/cli/internal/helm/imageversion/BUILD.bazel b/internal/helm/imageversion/BUILD.bazel similarity index 82% rename from cli/internal/helm/imageversion/BUILD.bazel rename to internal/helm/imageversion/BUILD.bazel index eed0e184ec..af3461c6c8 100644 --- a/cli/internal/helm/imageversion/BUILD.bazel +++ b/internal/helm/imageversion/BUILD.bazel @@ -12,8 +12,8 @@ GENERATED_SRCS = [ go_library( name = "imageversion", srcs = ["imageversion.go"] + GENERATED_SRCS, # keep - importpath = "github.com/edgelesssys/constellation/v2/cli/internal/helm/imageversion", - visibility = ["//cli:__subpackages__"], + importpath = "github.com/edgelesssys/constellation/v2/internal/helm/imageversion", + visibility = ["//:__subpackages__"], deps = ["//internal/containerimage"], ) @@ -25,7 +25,7 @@ go_library( oci = container["oci"], package = "imageversion", repotag_file = container["repotag_file"], - visibility = ["//cli:__subpackages__"], + visibility = ["//:__subpackages__"], ) for container in helm_containers() ] diff --git a/cli/internal/helm/imageversion/imageversion.go b/internal/helm/imageversion/imageversion.go similarity index 100% rename from cli/internal/helm/imageversion/imageversion.go rename to internal/helm/imageversion/imageversion.go diff --git a/cli/internal/helm/imageversion/placeholder.go b/internal/helm/imageversion/placeholder.go similarity index 100% rename from cli/internal/helm/imageversion/placeholder.go rename to internal/helm/imageversion/placeholder.go diff --git a/cli/internal/helm/loader.go b/internal/helm/loader.go similarity index 99% rename from cli/internal/helm/loader.go rename to internal/helm/loader.go index c91ec96e71..fdcdd91452 100644 --- a/cli/internal/helm/loader.go +++ b/internal/helm/loader.go @@ -19,13 +19,13 @@ import ( "helm.sh/helm/v3/pkg/chart" "helm.sh/helm/v3/pkg/chart/loader" - "github.com/edgelesssys/constellation/v2/cli/internal/helm/imageversion" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider" "github.com/edgelesssys/constellation/v2/internal/config" "github.com/edgelesssys/constellation/v2/internal/constants" + "github.com/edgelesssys/constellation/v2/internal/helm/imageversion" "github.com/edgelesssys/constellation/v2/internal/kms/uri" "github.com/edgelesssys/constellation/v2/internal/semver" + "github.com/edgelesssys/constellation/v2/internal/state" "github.com/edgelesssys/constellation/v2/internal/versions" ) diff --git a/cli/internal/helm/loader_test.go b/internal/helm/loader_test.go similarity index 99% rename from cli/internal/helm/loader_test.go rename to internal/helm/loader_test.go index 1fd5c03dfb..456722ce03 100644 --- a/cli/internal/helm/loader_test.go +++ b/internal/helm/loader_test.go @@ -22,7 +22,6 @@ import ( "helm.sh/helm/v3/pkg/chartutil" "helm.sh/helm/v3/pkg/engine" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/internal/attestation/measurements" "github.com/edgelesssys/constellation/v2/internal/cloud/azureshared" "github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider" @@ -30,6 +29,7 @@ import ( "github.com/edgelesssys/constellation/v2/internal/config" "github.com/edgelesssys/constellation/v2/internal/kms/uri" "github.com/edgelesssys/constellation/v2/internal/semver" + "github.com/edgelesssys/constellation/v2/internal/state" ) func fakeServiceAccURI(provider cloudprovider.Provider) string { diff --git a/cli/internal/helm/overrides.go b/internal/helm/overrides.go similarity index 99% rename from cli/internal/helm/overrides.go rename to internal/helm/overrides.go index 60eb315d62..063d74b80f 100644 --- a/cli/internal/helm/overrides.go +++ b/internal/helm/overrides.go @@ -13,7 +13,6 @@ import ( "encoding/json" "fmt" - "github.com/edgelesssys/constellation/v2/cli/internal/state" "github.com/edgelesssys/constellation/v2/internal/cloud/azureshared" "github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider" "github.com/edgelesssys/constellation/v2/internal/cloud/gcpshared" @@ -21,6 +20,7 @@ import ( "github.com/edgelesssys/constellation/v2/internal/config" "github.com/edgelesssys/constellation/v2/internal/constants" "github.com/edgelesssys/constellation/v2/internal/kms/uri" + "github.com/edgelesssys/constellation/v2/internal/state" ) // TODO(malt3): switch over to DNS name on AWS and Azure diff --git a/cli/internal/helm/release.go b/internal/helm/release.go similarity index 100% rename from cli/internal/helm/release.go rename to internal/helm/release.go diff --git a/cli/internal/helm/retryaction.go b/internal/helm/retryaction.go similarity index 100% rename from cli/internal/helm/retryaction.go rename to internal/helm/retryaction.go diff --git a/cli/internal/helm/retryaction_test.go b/internal/helm/retryaction_test.go similarity index 100% rename from cli/internal/helm/retryaction_test.go rename to internal/helm/retryaction_test.go diff --git a/cli/internal/helm/serviceversion.go b/internal/helm/serviceversion.go similarity index 100% rename from cli/internal/helm/serviceversion.go rename to internal/helm/serviceversion.go diff --git a/cli/internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/deployment.yaml b/internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/deployment.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/deployment.yaml rename to internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/deployment.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/leader-election-rbac.yaml b/internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/leader-election-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/leader-election-rbac.yaml rename to internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/leader-election-rbac.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/manager-config.yaml b/internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/manager-config.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/manager-config.yaml rename to internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/manager-config.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/manager-rbac.yaml b/internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/manager-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/manager-rbac.yaml rename to internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/manager-rbac.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/metrics-reader-rbac.yaml b/internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/metrics-reader-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/metrics-reader-rbac.yaml rename to internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/metrics-reader-rbac.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/metrics-service.yaml b/internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/metrics-service.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/metrics-service.yaml rename to internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/metrics-service.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/proxy-rbac.yaml b/internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/proxy-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/proxy-rbac.yaml rename to internal/helm/testdata/AWS/constellation-operators/charts/constellation-operator/templates/proxy-rbac.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/deployment.yaml b/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/deployment.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/deployment.yaml rename to internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/deployment.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/leader-election-rbac.yaml b/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/leader-election-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/leader-election-rbac.yaml rename to internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/leader-election-rbac.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/manager-rbac.yaml b/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/manager-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/manager-rbac.yaml rename to internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/manager-rbac.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/metrics-reader-rbac.yaml b/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/metrics-reader-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/metrics-reader-rbac.yaml rename to internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/metrics-reader-rbac.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/metrics-service.yaml b/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/metrics-service.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/metrics-service.yaml rename to internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/metrics-service.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/proxy-rbac.yaml b/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/proxy-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/proxy-rbac.yaml rename to internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/proxy-rbac.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/selfsigned-issuer.yaml b/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/selfsigned-issuer.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/selfsigned-issuer.yaml rename to internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/selfsigned-issuer.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/serving-cert.yaml b/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/serving-cert.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/serving-cert.yaml rename to internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/serving-cert.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/validating-webhook-configuration.yaml b/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/validating-webhook-configuration.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/validating-webhook-configuration.yaml rename to internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/validating-webhook-configuration.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/webhook-service.yaml b/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/webhook-service.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/webhook-service.yaml rename to internal/helm/testdata/AWS/constellation-operators/charts/node-maintenance-operator/templates/webhook-service.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/aws-deployment.yaml b/internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/aws-deployment.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/aws-deployment.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/aws-deployment.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/clusterrole.yaml b/internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/clusterrole.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/clusterrole.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/clusterrole.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/clusterrolebinding.yaml b/internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/clusterrolebinding.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/poddisruptionbudget.yaml b/internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/poddisruptionbudget.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/poddisruptionbudget.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/poddisruptionbudget.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/role.yaml b/internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/role.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/role.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/role.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/rolebinding.yaml b/internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/rolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/rolebinding.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/rolebinding.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/service.yaml b/internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/service.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/service.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/service.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/serviceaccount.yaml b/internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/serviceaccount.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/serviceaccount.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/ccm/templates/aws-daemonset.yaml b/internal/helm/testdata/AWS/constellation-services/charts/ccm/templates/aws-daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/ccm/templates/aws-daemonset.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/ccm/templates/aws-daemonset.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/ccm/templates/clusterrolebinding.yaml b/internal/helm/testdata/AWS/constellation-services/charts/ccm/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/ccm/templates/clusterrolebinding.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/ccm/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/ccm/templates/serviceaccount.yaml b/internal/helm/testdata/AWS/constellation-services/charts/ccm/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/ccm/templates/serviceaccount.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/ccm/templates/serviceaccount.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/join-service/templates/clusterrole.yaml b/internal/helm/testdata/AWS/constellation-services/charts/join-service/templates/clusterrole.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/join-service/templates/clusterrole.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/join-service/templates/clusterrole.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/join-service/templates/clusterrolebinding.yaml b/internal/helm/testdata/AWS/constellation-services/charts/join-service/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/join-service/templates/clusterrolebinding.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/join-service/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/join-service/templates/daemonset.yaml b/internal/helm/testdata/AWS/constellation-services/charts/join-service/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/join-service/templates/daemonset.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/join-service/templates/daemonset.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/join-service/templates/service.yaml b/internal/helm/testdata/AWS/constellation-services/charts/join-service/templates/service.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/join-service/templates/service.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/join-service/templates/service.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/join-service/templates/serviceaccount.yaml b/internal/helm/testdata/AWS/constellation-services/charts/join-service/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/join-service/templates/serviceaccount.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/join-service/templates/serviceaccount.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/key-service/templates/clusterrole.yaml b/internal/helm/testdata/AWS/constellation-services/charts/key-service/templates/clusterrole.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/key-service/templates/clusterrole.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/key-service/templates/clusterrole.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/key-service/templates/clusterrolebinding.yaml b/internal/helm/testdata/AWS/constellation-services/charts/key-service/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/key-service/templates/clusterrolebinding.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/key-service/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/key-service/templates/daemonset.yaml b/internal/helm/testdata/AWS/constellation-services/charts/key-service/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/key-service/templates/daemonset.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/key-service/templates/daemonset.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/key-service/templates/mastersecret.yaml b/internal/helm/testdata/AWS/constellation-services/charts/key-service/templates/mastersecret.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/key-service/templates/mastersecret.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/key-service/templates/mastersecret.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/key-service/templates/service.yaml b/internal/helm/testdata/AWS/constellation-services/charts/key-service/templates/service.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/key-service/templates/service.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/key-service/templates/service.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/key-service/templates/serviceaccount.yaml b/internal/helm/testdata/AWS/constellation-services/charts/key-service/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/key-service/templates/serviceaccount.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/key-service/templates/serviceaccount.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/konnectivity/templates/clusterrolebinding.yaml b/internal/helm/testdata/AWS/constellation-services/charts/konnectivity/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/konnectivity/templates/clusterrolebinding.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/konnectivity/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/konnectivity/templates/daemonset.yaml b/internal/helm/testdata/AWS/constellation-services/charts/konnectivity/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/konnectivity/templates/daemonset.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/konnectivity/templates/daemonset.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/konnectivity/templates/serviceaccount.yaml b/internal/helm/testdata/AWS/constellation-services/charts/konnectivity/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/konnectivity/templates/serviceaccount.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/konnectivity/templates/serviceaccount.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/verification-service/templates/daemonset.yaml b/internal/helm/testdata/AWS/constellation-services/charts/verification-service/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/verification-service/templates/daemonset.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/verification-service/templates/daemonset.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/verification-service/templates/loadbalancer-service.yaml b/internal/helm/testdata/AWS/constellation-services/charts/verification-service/templates/loadbalancer-service.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/verification-service/templates/loadbalancer-service.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/verification-service/templates/loadbalancer-service.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/charts/verification-service/templates/nodeport-service.yaml b/internal/helm/testdata/AWS/constellation-services/charts/verification-service/templates/nodeport-service.yaml similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/charts/verification-service/templates/nodeport-service.yaml rename to internal/helm/testdata/AWS/constellation-services/charts/verification-service/templates/nodeport-service.yaml diff --git a/cli/internal/helm/testdata/AWS/constellation-services/templates/.gitkeep b/internal/helm/testdata/AWS/constellation-services/templates/.gitkeep similarity index 100% rename from cli/internal/helm/testdata/AWS/constellation-services/templates/.gitkeep rename to internal/helm/testdata/AWS/constellation-services/templates/.gitkeep diff --git a/cli/internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/deployment.yaml b/internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/deployment.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/deployment.yaml rename to internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/deployment.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/leader-election-rbac.yaml b/internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/leader-election-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/leader-election-rbac.yaml rename to internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/leader-election-rbac.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/manager-config.yaml b/internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/manager-config.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/manager-config.yaml rename to internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/manager-config.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/manager-rbac.yaml b/internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/manager-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/manager-rbac.yaml rename to internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/manager-rbac.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/metrics-reader-rbac.yaml b/internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/metrics-reader-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/metrics-reader-rbac.yaml rename to internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/metrics-reader-rbac.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/metrics-service.yaml b/internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/metrics-service.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/metrics-service.yaml rename to internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/metrics-service.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/proxy-rbac.yaml b/internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/proxy-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/proxy-rbac.yaml rename to internal/helm/testdata/Azure/constellation-operators/charts/constellation-operator/templates/proxy-rbac.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/deployment.yaml b/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/deployment.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/deployment.yaml rename to internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/deployment.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/leader-election-rbac.yaml b/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/leader-election-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/leader-election-rbac.yaml rename to internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/leader-election-rbac.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/manager-rbac.yaml b/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/manager-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/manager-rbac.yaml rename to internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/manager-rbac.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/metrics-reader-rbac.yaml b/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/metrics-reader-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/metrics-reader-rbac.yaml rename to internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/metrics-reader-rbac.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/metrics-service.yaml b/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/metrics-service.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/metrics-service.yaml rename to internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/metrics-service.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/proxy-rbac.yaml b/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/proxy-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/proxy-rbac.yaml rename to internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/proxy-rbac.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/selfsigned-issuer.yaml b/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/selfsigned-issuer.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/selfsigned-issuer.yaml rename to internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/selfsigned-issuer.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/serving-cert.yaml b/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/serving-cert.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/serving-cert.yaml rename to internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/serving-cert.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/validating-webhook-configuration.yaml b/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/validating-webhook-configuration.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/validating-webhook-configuration.yaml rename to internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/validating-webhook-configuration.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/webhook-service.yaml b/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/webhook-service.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/webhook-service.yaml rename to internal/helm/testdata/Azure/constellation-operators/charts/node-maintenance-operator/templates/webhook-service.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/azure-deployment.yaml b/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/azure-deployment.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/azure-deployment.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/azure-deployment.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/azure-secret.yaml b/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/azure-secret.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/azure-secret.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/azure-secret.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/clusterrole.yaml b/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/clusterrole.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/clusterrole.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/clusterrole.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/clusterrolebinding.yaml b/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/clusterrolebinding.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/poddisruptionbudget.yaml b/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/poddisruptionbudget.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/poddisruptionbudget.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/poddisruptionbudget.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/role.yaml b/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/role.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/role.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/role.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/rolebinding.yaml b/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/rolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/rolebinding.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/rolebinding.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/service.yaml b/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/service.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/service.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/service.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/serviceaccount.yaml b/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/serviceaccount.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/serviceaccount.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/ccm/templates/azure-daemonset.yaml b/internal/helm/testdata/Azure/constellation-services/charts/ccm/templates/azure-daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/ccm/templates/azure-daemonset.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/ccm/templates/azure-daemonset.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/ccm/templates/azure-secret.yaml b/internal/helm/testdata/Azure/constellation-services/charts/ccm/templates/azure-secret.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/ccm/templates/azure-secret.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/ccm/templates/azure-secret.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/ccm/templates/clusterrolebinding.yaml b/internal/helm/testdata/Azure/constellation-services/charts/ccm/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/ccm/templates/clusterrolebinding.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/ccm/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/ccm/templates/serviceaccount.yaml b/internal/helm/testdata/Azure/constellation-services/charts/ccm/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/ccm/templates/serviceaccount.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/ccm/templates/serviceaccount.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/cnm/templates/azure-daemonset.yaml b/internal/helm/testdata/Azure/constellation-services/charts/cnm/templates/azure-daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/cnm/templates/azure-daemonset.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/cnm/templates/azure-daemonset.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/cnm/templates/clusterrole.yaml b/internal/helm/testdata/Azure/constellation-services/charts/cnm/templates/clusterrole.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/cnm/templates/clusterrole.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/cnm/templates/clusterrole.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/cnm/templates/clusterrolebinding.yaml b/internal/helm/testdata/Azure/constellation-services/charts/cnm/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/cnm/templates/clusterrolebinding.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/cnm/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/cnm/templates/serviceaccount.yaml b/internal/helm/testdata/Azure/constellation-services/charts/cnm/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/cnm/templates/serviceaccount.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/cnm/templates/serviceaccount.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/join-service/templates/clusterrole.yaml b/internal/helm/testdata/Azure/constellation-services/charts/join-service/templates/clusterrole.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/join-service/templates/clusterrole.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/join-service/templates/clusterrole.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/join-service/templates/clusterrolebinding.yaml b/internal/helm/testdata/Azure/constellation-services/charts/join-service/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/join-service/templates/clusterrolebinding.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/join-service/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/join-service/templates/daemonset.yaml b/internal/helm/testdata/Azure/constellation-services/charts/join-service/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/join-service/templates/daemonset.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/join-service/templates/daemonset.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/join-service/templates/service.yaml b/internal/helm/testdata/Azure/constellation-services/charts/join-service/templates/service.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/join-service/templates/service.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/join-service/templates/service.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/join-service/templates/serviceaccount.yaml b/internal/helm/testdata/Azure/constellation-services/charts/join-service/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/join-service/templates/serviceaccount.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/join-service/templates/serviceaccount.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/key-service/templates/clusterrole.yaml b/internal/helm/testdata/Azure/constellation-services/charts/key-service/templates/clusterrole.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/key-service/templates/clusterrole.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/key-service/templates/clusterrole.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/key-service/templates/clusterrolebinding.yaml b/internal/helm/testdata/Azure/constellation-services/charts/key-service/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/key-service/templates/clusterrolebinding.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/key-service/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/key-service/templates/daemonset.yaml b/internal/helm/testdata/Azure/constellation-services/charts/key-service/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/key-service/templates/daemonset.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/key-service/templates/daemonset.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/key-service/templates/mastersecret.yaml b/internal/helm/testdata/Azure/constellation-services/charts/key-service/templates/mastersecret.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/key-service/templates/mastersecret.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/key-service/templates/mastersecret.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/key-service/templates/service.yaml b/internal/helm/testdata/Azure/constellation-services/charts/key-service/templates/service.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/key-service/templates/service.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/key-service/templates/service.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/key-service/templates/serviceaccount.yaml b/internal/helm/testdata/Azure/constellation-services/charts/key-service/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/key-service/templates/serviceaccount.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/key-service/templates/serviceaccount.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/konnectivity/templates/clusterrolebinding.yaml b/internal/helm/testdata/Azure/constellation-services/charts/konnectivity/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/konnectivity/templates/clusterrolebinding.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/konnectivity/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/konnectivity/templates/daemonset.yaml b/internal/helm/testdata/Azure/constellation-services/charts/konnectivity/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/konnectivity/templates/daemonset.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/konnectivity/templates/daemonset.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/konnectivity/templates/serviceaccount.yaml b/internal/helm/testdata/Azure/constellation-services/charts/konnectivity/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/konnectivity/templates/serviceaccount.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/konnectivity/templates/serviceaccount.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/verification-service/templates/daemonset.yaml b/internal/helm/testdata/Azure/constellation-services/charts/verification-service/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/verification-service/templates/daemonset.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/verification-service/templates/daemonset.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/verification-service/templates/loadbalancer-service.yaml b/internal/helm/testdata/Azure/constellation-services/charts/verification-service/templates/loadbalancer-service.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/verification-service/templates/loadbalancer-service.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/verification-service/templates/loadbalancer-service.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/charts/verification-service/templates/nodeport-service.yaml b/internal/helm/testdata/Azure/constellation-services/charts/verification-service/templates/nodeport-service.yaml similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/charts/verification-service/templates/nodeport-service.yaml rename to internal/helm/testdata/Azure/constellation-services/charts/verification-service/templates/nodeport-service.yaml diff --git a/cli/internal/helm/testdata/Azure/constellation-services/templates/.gitkeep b/internal/helm/testdata/Azure/constellation-services/templates/.gitkeep similarity index 100% rename from cli/internal/helm/testdata/Azure/constellation-services/templates/.gitkeep rename to internal/helm/testdata/Azure/constellation-services/templates/.gitkeep diff --git a/cli/internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/deployment.yaml b/internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/deployment.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/deployment.yaml rename to internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/deployment.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/leader-election-rbac.yaml b/internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/leader-election-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/leader-election-rbac.yaml rename to internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/leader-election-rbac.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/manager-config.yaml b/internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/manager-config.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/manager-config.yaml rename to internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/manager-config.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/manager-rbac.yaml b/internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/manager-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/manager-rbac.yaml rename to internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/manager-rbac.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/metrics-reader-rbac.yaml b/internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/metrics-reader-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/metrics-reader-rbac.yaml rename to internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/metrics-reader-rbac.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/metrics-service.yaml b/internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/metrics-service.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/metrics-service.yaml rename to internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/metrics-service.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/proxy-rbac.yaml b/internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/proxy-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/proxy-rbac.yaml rename to internal/helm/testdata/GCP/constellation-operators/charts/constellation-operator/templates/proxy-rbac.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/deployment.yaml b/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/deployment.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/deployment.yaml rename to internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/deployment.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/leader-election-rbac.yaml b/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/leader-election-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/leader-election-rbac.yaml rename to internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/leader-election-rbac.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/manager-rbac.yaml b/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/manager-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/manager-rbac.yaml rename to internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/manager-rbac.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/metrics-reader-rbac.yaml b/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/metrics-reader-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/metrics-reader-rbac.yaml rename to internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/metrics-reader-rbac.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/metrics-service.yaml b/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/metrics-service.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/metrics-service.yaml rename to internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/metrics-service.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/proxy-rbac.yaml b/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/proxy-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/proxy-rbac.yaml rename to internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/proxy-rbac.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/selfsigned-issuer.yaml b/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/selfsigned-issuer.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/selfsigned-issuer.yaml rename to internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/selfsigned-issuer.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/serving-cert.yaml b/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/serving-cert.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/serving-cert.yaml rename to internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/serving-cert.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/validating-webhook-configuration.yaml b/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/validating-webhook-configuration.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/validating-webhook-configuration.yaml rename to internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/validating-webhook-configuration.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/webhook-service.yaml b/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/webhook-service.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/webhook-service.yaml rename to internal/helm/testdata/GCP/constellation-operators/charts/node-maintenance-operator/templates/webhook-service.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/clusterrole.yaml b/internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/clusterrole.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/clusterrole.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/clusterrole.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/clusterrolebinding.yaml b/internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/clusterrolebinding.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/gcp-deployment.yaml b/internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/gcp-deployment.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/gcp-deployment.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/gcp-deployment.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/poddisruptionbudget.yaml b/internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/poddisruptionbudget.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/poddisruptionbudget.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/poddisruptionbudget.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/role.yaml b/internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/role.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/role.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/role.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/rolebinding.yaml b/internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/rolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/rolebinding.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/rolebinding.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/service.yaml b/internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/service.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/service.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/service.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/serviceaccount.yaml b/internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/serviceaccount.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/serviceaccount.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/ccm/templates/clusterrolebinding.yaml b/internal/helm/testdata/GCP/constellation-services/charts/ccm/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/ccm/templates/clusterrolebinding.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/ccm/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/ccm/templates/gcp-clusterrolebinding.yaml b/internal/helm/testdata/GCP/constellation-services/charts/ccm/templates/gcp-clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/ccm/templates/gcp-clusterrolebinding.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/ccm/templates/gcp-clusterrolebinding.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/ccm/templates/gcp-cm.yaml b/internal/helm/testdata/GCP/constellation-services/charts/ccm/templates/gcp-cm.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/ccm/templates/gcp-cm.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/ccm/templates/gcp-cm.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/ccm/templates/gcp-daemonset.yaml b/internal/helm/testdata/GCP/constellation-services/charts/ccm/templates/gcp-daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/ccm/templates/gcp-daemonset.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/ccm/templates/gcp-daemonset.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/ccm/templates/gcp-secret.yaml b/internal/helm/testdata/GCP/constellation-services/charts/ccm/templates/gcp-secret.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/ccm/templates/gcp-secret.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/ccm/templates/gcp-secret.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/ccm/templates/serviceaccount.yaml b/internal/helm/testdata/GCP/constellation-services/charts/ccm/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/ccm/templates/serviceaccount.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/ccm/templates/serviceaccount.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/gcp-guest-agent/templates/daemonset.yaml b/internal/helm/testdata/GCP/constellation-services/charts/gcp-guest-agent/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/gcp-guest-agent/templates/daemonset.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/gcp-guest-agent/templates/daemonset.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/join-service/templates/clusterrole.yaml b/internal/helm/testdata/GCP/constellation-services/charts/join-service/templates/clusterrole.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/join-service/templates/clusterrole.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/join-service/templates/clusterrole.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/join-service/templates/clusterrolebinding.yaml b/internal/helm/testdata/GCP/constellation-services/charts/join-service/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/join-service/templates/clusterrolebinding.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/join-service/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/join-service/templates/daemonset.yaml b/internal/helm/testdata/GCP/constellation-services/charts/join-service/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/join-service/templates/daemonset.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/join-service/templates/daemonset.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/join-service/templates/service.yaml b/internal/helm/testdata/GCP/constellation-services/charts/join-service/templates/service.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/join-service/templates/service.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/join-service/templates/service.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/join-service/templates/serviceaccount.yaml b/internal/helm/testdata/GCP/constellation-services/charts/join-service/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/join-service/templates/serviceaccount.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/join-service/templates/serviceaccount.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/key-service/templates/clusterrole.yaml b/internal/helm/testdata/GCP/constellation-services/charts/key-service/templates/clusterrole.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/key-service/templates/clusterrole.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/key-service/templates/clusterrole.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/key-service/templates/clusterrolebinding.yaml b/internal/helm/testdata/GCP/constellation-services/charts/key-service/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/key-service/templates/clusterrolebinding.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/key-service/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/key-service/templates/daemonset.yaml b/internal/helm/testdata/GCP/constellation-services/charts/key-service/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/key-service/templates/daemonset.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/key-service/templates/daemonset.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/key-service/templates/mastersecret.yaml b/internal/helm/testdata/GCP/constellation-services/charts/key-service/templates/mastersecret.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/key-service/templates/mastersecret.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/key-service/templates/mastersecret.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/key-service/templates/service.yaml b/internal/helm/testdata/GCP/constellation-services/charts/key-service/templates/service.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/key-service/templates/service.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/key-service/templates/service.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/key-service/templates/serviceaccount.yaml b/internal/helm/testdata/GCP/constellation-services/charts/key-service/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/key-service/templates/serviceaccount.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/key-service/templates/serviceaccount.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/konnectivity/templates/clusterrolebinding.yaml b/internal/helm/testdata/GCP/constellation-services/charts/konnectivity/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/konnectivity/templates/clusterrolebinding.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/konnectivity/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/konnectivity/templates/daemonset.yaml b/internal/helm/testdata/GCP/constellation-services/charts/konnectivity/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/konnectivity/templates/daemonset.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/konnectivity/templates/daemonset.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/konnectivity/templates/serviceaccount.yaml b/internal/helm/testdata/GCP/constellation-services/charts/konnectivity/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/konnectivity/templates/serviceaccount.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/konnectivity/templates/serviceaccount.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/verification-service/templates/daemonset.yaml b/internal/helm/testdata/GCP/constellation-services/charts/verification-service/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/verification-service/templates/daemonset.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/verification-service/templates/daemonset.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/verification-service/templates/loadbalancer-service.yaml b/internal/helm/testdata/GCP/constellation-services/charts/verification-service/templates/loadbalancer-service.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/verification-service/templates/loadbalancer-service.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/verification-service/templates/loadbalancer-service.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/charts/verification-service/templates/nodeport-service.yaml b/internal/helm/testdata/GCP/constellation-services/charts/verification-service/templates/nodeport-service.yaml similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/charts/verification-service/templates/nodeport-service.yaml rename to internal/helm/testdata/GCP/constellation-services/charts/verification-service/templates/nodeport-service.yaml diff --git a/cli/internal/helm/testdata/GCP/constellation-services/templates/.gitkeep b/internal/helm/testdata/GCP/constellation-services/templates/.gitkeep similarity index 100% rename from cli/internal/helm/testdata/GCP/constellation-services/templates/.gitkeep rename to internal/helm/testdata/GCP/constellation-services/templates/.gitkeep diff --git a/cli/internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/deployment.yaml b/internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/deployment.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/deployment.yaml rename to internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/deployment.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/leader-election-rbac.yaml b/internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/leader-election-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/leader-election-rbac.yaml rename to internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/leader-election-rbac.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/manager-config.yaml b/internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/manager-config.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/manager-config.yaml rename to internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/manager-config.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/manager-rbac.yaml b/internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/manager-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/manager-rbac.yaml rename to internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/manager-rbac.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/metrics-reader-rbac.yaml b/internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/metrics-reader-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/metrics-reader-rbac.yaml rename to internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/metrics-reader-rbac.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/metrics-service.yaml b/internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/metrics-service.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/metrics-service.yaml rename to internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/metrics-service.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/proxy-rbac.yaml b/internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/proxy-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/proxy-rbac.yaml rename to internal/helm/testdata/OpenStack/constellation-operators/charts/constellation-operator/templates/proxy-rbac.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/deployment.yaml b/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/deployment.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/deployment.yaml rename to internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/deployment.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/leader-election-rbac.yaml b/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/leader-election-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/leader-election-rbac.yaml rename to internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/leader-election-rbac.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/manager-rbac.yaml b/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/manager-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/manager-rbac.yaml rename to internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/manager-rbac.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/metrics-reader-rbac.yaml b/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/metrics-reader-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/metrics-reader-rbac.yaml rename to internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/metrics-reader-rbac.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/metrics-service.yaml b/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/metrics-service.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/metrics-service.yaml rename to internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/metrics-service.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/proxy-rbac.yaml b/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/proxy-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/proxy-rbac.yaml rename to internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/proxy-rbac.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/selfsigned-issuer.yaml b/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/selfsigned-issuer.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/selfsigned-issuer.yaml rename to internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/selfsigned-issuer.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/serving-cert.yaml b/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/serving-cert.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/serving-cert.yaml rename to internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/serving-cert.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/validating-webhook-configuration.yaml b/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/validating-webhook-configuration.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/validating-webhook-configuration.yaml rename to internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/validating-webhook-configuration.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/webhook-service.yaml b/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/webhook-service.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/webhook-service.yaml rename to internal/helm/testdata/OpenStack/constellation-operators/charts/node-maintenance-operator/templates/webhook-service.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-services/charts/ccm/templates/clusterrolebinding.yaml b/internal/helm/testdata/OpenStack/constellation-services/charts/ccm/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-services/charts/ccm/templates/clusterrolebinding.yaml rename to internal/helm/testdata/OpenStack/constellation-services/charts/ccm/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-services/charts/ccm/templates/openstack-daemonset.yaml b/internal/helm/testdata/OpenStack/constellation-services/charts/ccm/templates/openstack-daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-services/charts/ccm/templates/openstack-daemonset.yaml rename to internal/helm/testdata/OpenStack/constellation-services/charts/ccm/templates/openstack-daemonset.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-services/charts/ccm/templates/openstack-secret.yaml b/internal/helm/testdata/OpenStack/constellation-services/charts/ccm/templates/openstack-secret.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-services/charts/ccm/templates/openstack-secret.yaml rename to internal/helm/testdata/OpenStack/constellation-services/charts/ccm/templates/openstack-secret.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-services/charts/ccm/templates/serviceaccount.yaml b/internal/helm/testdata/OpenStack/constellation-services/charts/ccm/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-services/charts/ccm/templates/serviceaccount.yaml rename to internal/helm/testdata/OpenStack/constellation-services/charts/ccm/templates/serviceaccount.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-services/charts/join-service/templates/clusterrole.yaml b/internal/helm/testdata/OpenStack/constellation-services/charts/join-service/templates/clusterrole.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-services/charts/join-service/templates/clusterrole.yaml rename to internal/helm/testdata/OpenStack/constellation-services/charts/join-service/templates/clusterrole.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-services/charts/join-service/templates/clusterrolebinding.yaml b/internal/helm/testdata/OpenStack/constellation-services/charts/join-service/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-services/charts/join-service/templates/clusterrolebinding.yaml rename to internal/helm/testdata/OpenStack/constellation-services/charts/join-service/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-services/charts/join-service/templates/daemonset.yaml b/internal/helm/testdata/OpenStack/constellation-services/charts/join-service/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-services/charts/join-service/templates/daemonset.yaml rename to internal/helm/testdata/OpenStack/constellation-services/charts/join-service/templates/daemonset.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-services/charts/join-service/templates/service.yaml b/internal/helm/testdata/OpenStack/constellation-services/charts/join-service/templates/service.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-services/charts/join-service/templates/service.yaml rename to internal/helm/testdata/OpenStack/constellation-services/charts/join-service/templates/service.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-services/charts/join-service/templates/serviceaccount.yaml b/internal/helm/testdata/OpenStack/constellation-services/charts/join-service/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-services/charts/join-service/templates/serviceaccount.yaml rename to internal/helm/testdata/OpenStack/constellation-services/charts/join-service/templates/serviceaccount.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-services/charts/key-service/templates/clusterrole.yaml b/internal/helm/testdata/OpenStack/constellation-services/charts/key-service/templates/clusterrole.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-services/charts/key-service/templates/clusterrole.yaml rename to internal/helm/testdata/OpenStack/constellation-services/charts/key-service/templates/clusterrole.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-services/charts/key-service/templates/clusterrolebinding.yaml b/internal/helm/testdata/OpenStack/constellation-services/charts/key-service/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-services/charts/key-service/templates/clusterrolebinding.yaml rename to internal/helm/testdata/OpenStack/constellation-services/charts/key-service/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-services/charts/key-service/templates/daemonset.yaml b/internal/helm/testdata/OpenStack/constellation-services/charts/key-service/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-services/charts/key-service/templates/daemonset.yaml rename to internal/helm/testdata/OpenStack/constellation-services/charts/key-service/templates/daemonset.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-services/charts/key-service/templates/mastersecret.yaml b/internal/helm/testdata/OpenStack/constellation-services/charts/key-service/templates/mastersecret.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-services/charts/key-service/templates/mastersecret.yaml rename to internal/helm/testdata/OpenStack/constellation-services/charts/key-service/templates/mastersecret.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-services/charts/key-service/templates/service.yaml b/internal/helm/testdata/OpenStack/constellation-services/charts/key-service/templates/service.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-services/charts/key-service/templates/service.yaml rename to internal/helm/testdata/OpenStack/constellation-services/charts/key-service/templates/service.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-services/charts/key-service/templates/serviceaccount.yaml b/internal/helm/testdata/OpenStack/constellation-services/charts/key-service/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-services/charts/key-service/templates/serviceaccount.yaml rename to internal/helm/testdata/OpenStack/constellation-services/charts/key-service/templates/serviceaccount.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-services/charts/konnectivity/templates/clusterrolebinding.yaml b/internal/helm/testdata/OpenStack/constellation-services/charts/konnectivity/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-services/charts/konnectivity/templates/clusterrolebinding.yaml rename to internal/helm/testdata/OpenStack/constellation-services/charts/konnectivity/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-services/charts/konnectivity/templates/daemonset.yaml b/internal/helm/testdata/OpenStack/constellation-services/charts/konnectivity/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-services/charts/konnectivity/templates/daemonset.yaml rename to internal/helm/testdata/OpenStack/constellation-services/charts/konnectivity/templates/daemonset.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-services/charts/konnectivity/templates/serviceaccount.yaml b/internal/helm/testdata/OpenStack/constellation-services/charts/konnectivity/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-services/charts/konnectivity/templates/serviceaccount.yaml rename to internal/helm/testdata/OpenStack/constellation-services/charts/konnectivity/templates/serviceaccount.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-services/charts/verification-service/templates/daemonset.yaml b/internal/helm/testdata/OpenStack/constellation-services/charts/verification-service/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-services/charts/verification-service/templates/daemonset.yaml rename to internal/helm/testdata/OpenStack/constellation-services/charts/verification-service/templates/daemonset.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-services/charts/verification-service/templates/loadbalancer-service.yaml b/internal/helm/testdata/OpenStack/constellation-services/charts/verification-service/templates/loadbalancer-service.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-services/charts/verification-service/templates/loadbalancer-service.yaml rename to internal/helm/testdata/OpenStack/constellation-services/charts/verification-service/templates/loadbalancer-service.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-services/charts/verification-service/templates/nodeport-service.yaml b/internal/helm/testdata/OpenStack/constellation-services/charts/verification-service/templates/nodeport-service.yaml similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-services/charts/verification-service/templates/nodeport-service.yaml rename to internal/helm/testdata/OpenStack/constellation-services/charts/verification-service/templates/nodeport-service.yaml diff --git a/cli/internal/helm/testdata/OpenStack/constellation-services/templates/.gitkeep b/internal/helm/testdata/OpenStack/constellation-services/templates/.gitkeep similarity index 100% rename from cli/internal/helm/testdata/OpenStack/constellation-services/templates/.gitkeep rename to internal/helm/testdata/OpenStack/constellation-services/templates/.gitkeep diff --git a/cli/internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/deployment.yaml b/internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/deployment.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/deployment.yaml rename to internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/deployment.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/leader-election-rbac.yaml b/internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/leader-election-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/leader-election-rbac.yaml rename to internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/leader-election-rbac.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/manager-config.yaml b/internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/manager-config.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/manager-config.yaml rename to internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/manager-config.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/manager-rbac.yaml b/internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/manager-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/manager-rbac.yaml rename to internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/manager-rbac.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/metrics-reader-rbac.yaml b/internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/metrics-reader-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/metrics-reader-rbac.yaml rename to internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/metrics-reader-rbac.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/metrics-service.yaml b/internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/metrics-service.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/metrics-service.yaml rename to internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/metrics-service.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/proxy-rbac.yaml b/internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/proxy-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/proxy-rbac.yaml rename to internal/helm/testdata/QEMU/constellation-operators/charts/constellation-operator/templates/proxy-rbac.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/deployment.yaml b/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/deployment.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/deployment.yaml rename to internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/deployment.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/leader-election-rbac.yaml b/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/leader-election-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/leader-election-rbac.yaml rename to internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/leader-election-rbac.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/manager-rbac.yaml b/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/manager-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/manager-rbac.yaml rename to internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/manager-rbac.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/metrics-reader-rbac.yaml b/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/metrics-reader-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/metrics-reader-rbac.yaml rename to internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/metrics-reader-rbac.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/metrics-service.yaml b/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/metrics-service.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/metrics-service.yaml rename to internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/metrics-service.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/proxy-rbac.yaml b/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/proxy-rbac.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/proxy-rbac.yaml rename to internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/proxy-rbac.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/selfsigned-issuer.yaml b/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/selfsigned-issuer.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/selfsigned-issuer.yaml rename to internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/selfsigned-issuer.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/serving-cert.yaml b/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/serving-cert.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/serving-cert.yaml rename to internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/serving-cert.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/validating-webhook-configuration.yaml b/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/validating-webhook-configuration.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/validating-webhook-configuration.yaml rename to internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/validating-webhook-configuration.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/webhook-service.yaml b/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/webhook-service.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/webhook-service.yaml rename to internal/helm/testdata/QEMU/constellation-operators/charts/node-maintenance-operator/templates/webhook-service.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-services/charts/join-service/templates/clusterrole.yaml b/internal/helm/testdata/QEMU/constellation-services/charts/join-service/templates/clusterrole.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-services/charts/join-service/templates/clusterrole.yaml rename to internal/helm/testdata/QEMU/constellation-services/charts/join-service/templates/clusterrole.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-services/charts/join-service/templates/clusterrolebinding.yaml b/internal/helm/testdata/QEMU/constellation-services/charts/join-service/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-services/charts/join-service/templates/clusterrolebinding.yaml rename to internal/helm/testdata/QEMU/constellation-services/charts/join-service/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-services/charts/join-service/templates/daemonset.yaml b/internal/helm/testdata/QEMU/constellation-services/charts/join-service/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-services/charts/join-service/templates/daemonset.yaml rename to internal/helm/testdata/QEMU/constellation-services/charts/join-service/templates/daemonset.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-services/charts/join-service/templates/service.yaml b/internal/helm/testdata/QEMU/constellation-services/charts/join-service/templates/service.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-services/charts/join-service/templates/service.yaml rename to internal/helm/testdata/QEMU/constellation-services/charts/join-service/templates/service.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-services/charts/join-service/templates/serviceaccount.yaml b/internal/helm/testdata/QEMU/constellation-services/charts/join-service/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-services/charts/join-service/templates/serviceaccount.yaml rename to internal/helm/testdata/QEMU/constellation-services/charts/join-service/templates/serviceaccount.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-services/charts/key-service/templates/clusterrole.yaml b/internal/helm/testdata/QEMU/constellation-services/charts/key-service/templates/clusterrole.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-services/charts/key-service/templates/clusterrole.yaml rename to internal/helm/testdata/QEMU/constellation-services/charts/key-service/templates/clusterrole.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-services/charts/key-service/templates/clusterrolebinding.yaml b/internal/helm/testdata/QEMU/constellation-services/charts/key-service/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-services/charts/key-service/templates/clusterrolebinding.yaml rename to internal/helm/testdata/QEMU/constellation-services/charts/key-service/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-services/charts/key-service/templates/daemonset.yaml b/internal/helm/testdata/QEMU/constellation-services/charts/key-service/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-services/charts/key-service/templates/daemonset.yaml rename to internal/helm/testdata/QEMU/constellation-services/charts/key-service/templates/daemonset.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-services/charts/key-service/templates/mastersecret.yaml b/internal/helm/testdata/QEMU/constellation-services/charts/key-service/templates/mastersecret.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-services/charts/key-service/templates/mastersecret.yaml rename to internal/helm/testdata/QEMU/constellation-services/charts/key-service/templates/mastersecret.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-services/charts/key-service/templates/service.yaml b/internal/helm/testdata/QEMU/constellation-services/charts/key-service/templates/service.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-services/charts/key-service/templates/service.yaml rename to internal/helm/testdata/QEMU/constellation-services/charts/key-service/templates/service.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-services/charts/key-service/templates/serviceaccount.yaml b/internal/helm/testdata/QEMU/constellation-services/charts/key-service/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-services/charts/key-service/templates/serviceaccount.yaml rename to internal/helm/testdata/QEMU/constellation-services/charts/key-service/templates/serviceaccount.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-services/charts/konnectivity/templates/clusterrolebinding.yaml b/internal/helm/testdata/QEMU/constellation-services/charts/konnectivity/templates/clusterrolebinding.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-services/charts/konnectivity/templates/clusterrolebinding.yaml rename to internal/helm/testdata/QEMU/constellation-services/charts/konnectivity/templates/clusterrolebinding.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-services/charts/konnectivity/templates/daemonset.yaml b/internal/helm/testdata/QEMU/constellation-services/charts/konnectivity/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-services/charts/konnectivity/templates/daemonset.yaml rename to internal/helm/testdata/QEMU/constellation-services/charts/konnectivity/templates/daemonset.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-services/charts/konnectivity/templates/serviceaccount.yaml b/internal/helm/testdata/QEMU/constellation-services/charts/konnectivity/templates/serviceaccount.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-services/charts/konnectivity/templates/serviceaccount.yaml rename to internal/helm/testdata/QEMU/constellation-services/charts/konnectivity/templates/serviceaccount.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-services/charts/verification-service/templates/daemonset.yaml b/internal/helm/testdata/QEMU/constellation-services/charts/verification-service/templates/daemonset.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-services/charts/verification-service/templates/daemonset.yaml rename to internal/helm/testdata/QEMU/constellation-services/charts/verification-service/templates/daemonset.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-services/charts/verification-service/templates/loadbalancer-service.yaml b/internal/helm/testdata/QEMU/constellation-services/charts/verification-service/templates/loadbalancer-service.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-services/charts/verification-service/templates/loadbalancer-service.yaml rename to internal/helm/testdata/QEMU/constellation-services/charts/verification-service/templates/loadbalancer-service.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-services/charts/verification-service/templates/nodeport-service.yaml b/internal/helm/testdata/QEMU/constellation-services/charts/verification-service/templates/nodeport-service.yaml similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-services/charts/verification-service/templates/nodeport-service.yaml rename to internal/helm/testdata/QEMU/constellation-services/charts/verification-service/templates/nodeport-service.yaml diff --git a/cli/internal/helm/testdata/QEMU/constellation-services/templates/.gitkeep b/internal/helm/testdata/QEMU/constellation-services/templates/.gitkeep similarity index 100% rename from cli/internal/helm/testdata/QEMU/constellation-services/templates/.gitkeep rename to internal/helm/testdata/QEMU/constellation-services/templates/.gitkeep diff --git a/cli/internal/helm/update-aws-load-balancer-chart.sh b/internal/helm/update-aws-load-balancer-chart.sh similarity index 94% rename from cli/internal/helm/update-aws-load-balancer-chart.sh rename to internal/helm/update-aws-load-balancer-chart.sh index 5927a3814e..9acb832e54 100755 --- a/cli/internal/helm/update-aws-load-balancer-chart.sh +++ b/internal/helm/update-aws-load-balancer-chart.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # updates the Helm charts for the AWS Load Balancer Controller in the CLI. -# script is mostly copied from cli/internal/helm/update-csi-charts.sh +# script is mostly copied from internal/helm/update-csi-charts.sh set -euo pipefail set -o errtrace diff --git a/cli/internal/helm/update-csi-charts.sh b/internal/helm/update-csi-charts.sh similarity index 100% rename from cli/internal/helm/update-csi-charts.sh rename to internal/helm/update-csi-charts.sh diff --git a/cli/internal/helm/values.go b/internal/helm/values.go similarity index 100% rename from cli/internal/helm/values.go rename to internal/helm/values.go diff --git a/cli/internal/helm/versionlister.go b/internal/helm/versionlister.go similarity index 100% rename from cli/internal/helm/versionlister.go rename to internal/helm/versionlister.go diff --git a/cli/internal/kubecmd/BUILD.bazel b/internal/kubecmd/BUILD.bazel similarity index 96% rename from cli/internal/kubecmd/BUILD.bazel rename to internal/kubecmd/BUILD.bazel index e288b52d33..2e0f3ad222 100644 --- a/cli/internal/kubecmd/BUILD.bazel +++ b/internal/kubecmd/BUILD.bazel @@ -8,7 +8,7 @@ go_library( "kubecmd.go", "status.go", ], - importpath = "github.com/edgelesssys/constellation/v2/cli/internal/kubecmd", + importpath = "github.com/edgelesssys/constellation/v2/internal/kubecmd", visibility = ["//cli:__subpackages__"], deps = [ "//internal/api/versionsapi", diff --git a/cli/internal/kubecmd/backup.go b/internal/kubecmd/backup.go similarity index 100% rename from cli/internal/kubecmd/backup.go rename to internal/kubecmd/backup.go diff --git a/cli/internal/kubecmd/backup_test.go b/internal/kubecmd/backup_test.go similarity index 100% rename from cli/internal/kubecmd/backup_test.go rename to internal/kubecmd/backup_test.go diff --git a/cli/internal/kubecmd/kubecmd.go b/internal/kubecmd/kubecmd.go similarity index 100% rename from cli/internal/kubecmd/kubecmd.go rename to internal/kubecmd/kubecmd.go diff --git a/cli/internal/kubecmd/kubecmd_test.go b/internal/kubecmd/kubecmd_test.go similarity index 100% rename from cli/internal/kubecmd/kubecmd_test.go rename to internal/kubecmd/kubecmd_test.go diff --git a/cli/internal/kubecmd/status.go b/internal/kubecmd/status.go similarity index 100% rename from cli/internal/kubecmd/status.go rename to internal/kubecmd/status.go diff --git a/cli/internal/state/BUILD.bazel b/internal/state/BUILD.bazel similarity index 88% rename from cli/internal/state/BUILD.bazel rename to internal/state/BUILD.bazel index 0d24793d65..a1633d3195 100644 --- a/cli/internal/state/BUILD.bazel +++ b/internal/state/BUILD.bazel @@ -7,8 +7,8 @@ go_library( "state.go", "state_doc.go", ], - importpath = "github.com/edgelesssys/constellation/v2/cli/internal/state", - visibility = ["//cli:__subpackages__"], + importpath = "github.com/edgelesssys/constellation/v2/internal/state", + visibility = ["//:__subpackages__"], deps = [ "//internal/cloud/cloudprovider", "//internal/file", diff --git a/cli/internal/state/state.go b/internal/state/state.go similarity index 100% rename from cli/internal/state/state.go rename to internal/state/state.go diff --git a/cli/internal/state/state_doc.go b/internal/state/state_doc.go similarity index 100% rename from cli/internal/state/state_doc.go rename to internal/state/state_doc.go diff --git a/cli/internal/state/state_test.go b/internal/state/state_test.go similarity index 100% rename from cli/internal/state/state_test.go rename to internal/state/state_test.go diff --git a/cli/internal/state/validation_test.go b/internal/state/validation_test.go similarity index 100% rename from cli/internal/state/validation_test.go rename to internal/state/validation_test.go diff --git a/operators/constellation-node-operator/.gitignore b/operators/constellation-node-operator/.gitignore index 607cba2e49..342fb26e30 100644 --- a/operators/constellation-node-operator/.gitignore +++ b/operators/constellation-node-operator/.gitignore @@ -16,8 +16,8 @@ testbin/* # Kubernetes Generated files - skip generated files, except for vendored files -# We hold the charts in the cli/internal/helm directory -chart/ +# We hold the charts in the internal/helm directory +chart/ bundle/ !vendor/**/zz_generated.* diff --git a/operators/constellation-node-operator/README.md b/operators/constellation-node-operator/README.md index 598e054313..a33cb0c758 100644 --- a/operators/constellation-node-operator/README.md +++ b/operators/constellation-node-operator/README.md @@ -206,4 +206,4 @@ More information can be found via the [Kubebuilder Documentation](https://book.k The operator is deployed automatically during `constellation-init`. Prerequisite for this is that cert-manager is installed. cert-manager is also installed during `constellation-init`. -To deploy you can use the Helm chart at `/cli/internal/helm/charts/edgeless/operators/constellation-operator`. +To deploy you can use the Helm chart at `/internal/helm/charts/edgeless/operators/constellation-operator`. diff --git a/renovate.json5 b/renovate.json5 index e7a9fbb1c7..3f9b64fb91 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -13,11 +13,11 @@ "postUpdateOptions": ["gomodTidy", "gomodUpdateImportPaths"], "prConcurrentLimit": 4, "ignorePaths": [ - "cli/internal/helm/charts/cilium/**", - "cli/internal/helm/charts/edgeless/csi/charts/aws-csi-driver/**", - "cli/internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/**", - "cli/internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/**", - "cli/internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/**", + "internal/helm/charts/cilium/**", + "internal/helm/charts/edgeless/csi/charts/aws-csi-driver/**", + "internal/helm/charts/edgeless/csi/charts/azuredisk-csi-driver/**", + "internal/helm/charts/edgeless/csi/charts/gcp-compute-persistent-disk-csi-driver/**", + "internal/helm/charts/edgeless/csi/charts/openstack-cinder-csi/**", "operators/constellation-node-operator/config/manager/kustomization.yaml", ], "ignoreDeps": ["github.com/edgelesssys/constellation/v2"],