mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
cli: add support for constellation init on OpenStack
This commit is contained in:
parent
63d5ddfa11
commit
f066416a43
@ -47,6 +47,7 @@ go_library(
|
|||||||
"//internal/cloud/azureshared",
|
"//internal/cloud/azureshared",
|
||||||
"//internal/cloud/cloudprovider",
|
"//internal/cloud/cloudprovider",
|
||||||
"//internal/cloud/gcpshared",
|
"//internal/cloud/gcpshared",
|
||||||
|
"//internal/cloud/openstack",
|
||||||
"//internal/compatibility",
|
"//internal/compatibility",
|
||||||
"//internal/config",
|
"//internal/config",
|
||||||
"//internal/config/instancetypes",
|
"//internal/config/instancetypes",
|
||||||
|
@ -28,6 +28,7 @@ import (
|
|||||||
"github.com/edgelesssys/constellation/v2/internal/cloud/azureshared"
|
"github.com/edgelesssys/constellation/v2/internal/cloud/azureshared"
|
||||||
"github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider"
|
"github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider"
|
||||||
"github.com/edgelesssys/constellation/v2/internal/cloud/gcpshared"
|
"github.com/edgelesssys/constellation/v2/internal/cloud/gcpshared"
|
||||||
|
"github.com/edgelesssys/constellation/v2/internal/cloud/openstack"
|
||||||
"github.com/edgelesssys/constellation/v2/internal/config"
|
"github.com/edgelesssys/constellation/v2/internal/config"
|
||||||
"github.com/edgelesssys/constellation/v2/internal/constants"
|
"github.com/edgelesssys/constellation/v2/internal/constants"
|
||||||
"github.com/edgelesssys/constellation/v2/internal/crypto"
|
"github.com/edgelesssys/constellation/v2/internal/crypto"
|
||||||
@ -464,6 +465,19 @@ func (i *initCmd) getMarshaledServiceAccountURI(provider cloudprovider.Provider,
|
|||||||
}
|
}
|
||||||
return creds.ToCloudServiceAccountURI(), nil
|
return creds.ToCloudServiceAccountURI(), nil
|
||||||
|
|
||||||
|
case cloudprovider.OpenStack:
|
||||||
|
creds := openstack.AccountKey{
|
||||||
|
AuthURL: config.Provider.OpenStack.AuthURL,
|
||||||
|
Username: config.Provider.OpenStack.Username,
|
||||||
|
Password: config.Provider.OpenStack.Password,
|
||||||
|
ProjectID: config.Provider.OpenStack.ProjectID,
|
||||||
|
ProjectName: config.Provider.OpenStack.ProjectName,
|
||||||
|
UserDomainName: config.Provider.OpenStack.UserDomainName,
|
||||||
|
ProjectDomainName: config.Provider.OpenStack.ProjectDomainName,
|
||||||
|
RegionName: config.Provider.OpenStack.RegionName,
|
||||||
|
}
|
||||||
|
return creds.ToCloudServiceAccountURI(), nil
|
||||||
|
|
||||||
case cloudprovider.QEMU:
|
case cloudprovider.QEMU:
|
||||||
i.log.Debugf("Handling case for QEMU")
|
i.log.Debugf("Handling case for QEMU")
|
||||||
return "", nil // QEMU does not use service account keys
|
return "", nil // QEMU does not use service account keys
|
||||||
|
Loading…
Reference in New Issue
Block a user