move nodestate and role

Signed-off-by: Fabian Kammel <fk@edgeless.systems>
This commit is contained in:
Fabian Kammel 2022-08-26 09:42:40 +00:00 committed by Malte Poll
parent 26e9c67a00
commit 22c912a56d
30 changed files with 29 additions and 29 deletions

View file

@ -6,8 +6,8 @@ import (
"testing"
compute "cloud.google.com/go/compute/apiv1"
"github.com/edgelesssys/constellation/bootstrapper/role"
"github.com/edgelesssys/constellation/internal/cloud/metadata"
"github.com/edgelesssys/constellation/internal/role"
gax "github.com/googleapis/gax-go/v2"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"

View file

@ -1,7 +1,7 @@
package gcp
import (
"github.com/edgelesssys/constellation/bootstrapper/role"
"github.com/edgelesssys/constellation/internal/role"
)
const roleMetadataKey = "constellation-role"

View file

@ -3,7 +3,7 @@ package gcp
import (
"testing"
"github.com/edgelesssys/constellation/bootstrapper/role"
"github.com/edgelesssys/constellation/internal/role"
"github.com/stretchr/testify/assert"
)