mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-07-26 16:55:19 -04:00
Cloud provider AWS: adopt changes to CCM / CNM for AWS
This commit is contained in:
parent
78d2358b9c
commit
a59ce30e7b
4 changed files with 74 additions and 2 deletions
|
@ -1,13 +1,18 @@
|
||||||
package aws
|
package aws
|
||||||
|
|
||||||
import "github.com/edgelesssys/constellation/coordinator/core"
|
import (
|
||||||
|
"github.com/edgelesssys/constellation/coordinator/cloudprovider"
|
||||||
|
"github.com/edgelesssys/constellation/coordinator/core"
|
||||||
|
"github.com/edgelesssys/constellation/coordinator/kubernetes/k8sapi/resources"
|
||||||
|
k8s "k8s.io/api/core/v1"
|
||||||
|
)
|
||||||
|
|
||||||
// CloudControllerManager holds the AWS cloud-controller-manager configuration.
|
// CloudControllerManager holds the AWS cloud-controller-manager configuration.
|
||||||
type CloudControllerManager struct{}
|
type CloudControllerManager struct{}
|
||||||
|
|
||||||
// Image returns the container image used to provide cloud-controller-manager for the cloud-provider.
|
// Image returns the container image used to provide cloud-controller-manager for the cloud-provider.
|
||||||
func (c CloudControllerManager) Image() string {
|
func (c CloudControllerManager) Image() string {
|
||||||
return "us.gcr.io/k8s-artifacts-prod/provider-aws/cloud-controller-manager:v1.22.0-alpha.0"
|
return cloudprovider.CloudControllerManagerImageAWS
|
||||||
}
|
}
|
||||||
|
|
||||||
// Path returns the path used by cloud-controller-manager executable within the container image.
|
// Path returns the path used by cloud-controller-manager executable within the container image.
|
||||||
|
@ -20,6 +25,39 @@ func (c CloudControllerManager) Name() string {
|
||||||
return "aws"
|
return "aws"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ExtraArgs returns a list of arguments to append to the cloud-controller-manager command.
|
||||||
|
func (c CloudControllerManager) ExtraArgs() []string {
|
||||||
|
return []string{}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ConfigMaps returns a list of ConfigMaps to deploy together with the k8s cloud-controller-manager
|
||||||
|
// Reference: https://kubernetes.io/docs/concepts/configuration/configmap/ .
|
||||||
|
func (c CloudControllerManager) ConfigMaps(instance core.Instance) (resources.ConfigMaps, error) {
|
||||||
|
return resources.ConfigMaps{}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// Secrets returns a list of secrets to deploy together with the k8s cloud-controller-manager.
|
||||||
|
// Reference: https://kubernetes.io/docs/concepts/configuration/secret/ .
|
||||||
|
func (c CloudControllerManager) Secrets(instance core.Instance, cloudServiceAccountURI string) (resources.Secrets, error) {
|
||||||
|
return resources.Secrets{}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// Volumes returns a list of volumes to deploy together with the k8s cloud-controller-manager.
|
||||||
|
// Reference: https://kubernetes.io/docs/concepts/storage/volumes/ .
|
||||||
|
func (c CloudControllerManager) Volumes() []k8s.Volume {
|
||||||
|
return []k8s.Volume{}
|
||||||
|
}
|
||||||
|
|
||||||
|
// VolumeMounts a list of of volume mounts to deploy together with the k8s cloud-controller-manager.
|
||||||
|
func (c CloudControllerManager) VolumeMounts() []k8s.VolumeMount {
|
||||||
|
return []k8s.VolumeMount{}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Env returns a list of k8s environment key-value pairs to deploy together with the k8s cloud-controller-manager.
|
||||||
|
func (c CloudControllerManager) Env() []k8s.EnvVar {
|
||||||
|
return []k8s.EnvVar{}
|
||||||
|
}
|
||||||
|
|
||||||
// PrepareInstance is called on every instance before deploying the cloud-controller-manager.
|
// PrepareInstance is called on every instance before deploying the cloud-controller-manager.
|
||||||
// Allows for cloud-provider specific hooks.
|
// Allows for cloud-provider specific hooks.
|
||||||
func (c CloudControllerManager) PrepareInstance(instance core.Instance, vpnIP string) error {
|
func (c CloudControllerManager) PrepareInstance(instance core.Instance, vpnIP string) error {
|
||||||
|
|
27
coordinator/cloudprovider/aws/cloudnodemanager.go
Normal file
27
coordinator/cloudprovider/aws/cloudnodemanager.go
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
package aws
|
||||||
|
|
||||||
|
// CloudNodeManager holds the AWS cloud-node-manager configuration.
|
||||||
|
type CloudNodeManager struct{}
|
||||||
|
|
||||||
|
// Image returns the container image used to provide cloud-node-manager for the cloud-provider.
|
||||||
|
// Not used on AWS.
|
||||||
|
func (c *CloudNodeManager) Image() string {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path returns the path used by cloud-node-manager executable within the container image.
|
||||||
|
// Not used on AWS.
|
||||||
|
func (c *CloudNodeManager) Path() string {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
// ExtraArgs returns a list of arguments to append to the cloud-node-manager command.
|
||||||
|
// Not used on AWS.
|
||||||
|
func (c *CloudNodeManager) ExtraArgs() []string {
|
||||||
|
return []string{}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Supported is used to determine if cloud node manager is implemented for this cloud provider.
|
||||||
|
func (c *CloudNodeManager) Supported() bool {
|
||||||
|
return false
|
||||||
|
}
|
6
coordinator/cloudprovider/images.go
Normal file
6
coordinator/cloudprovider/images.go
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
package cloudprovider
|
||||||
|
|
||||||
|
const (
|
||||||
|
// CloudControllerManagerImageAWS is the CCM image used on AWS.
|
||||||
|
CloudControllerManagerImageAWS = "us.gcr.io/k8s-artifacts-prod/provider-aws/cloud-controller-manager:v1.22.0-alpha.0"
|
||||||
|
)
|
|
@ -75,6 +75,7 @@ func main() {
|
||||||
kube = kubernetes.New(&k8sapi.KubernetesUtil{}, &k8sapi.AWSConfiguration{}, kubectl.New())
|
kube = kubernetes.New(&k8sapi.KubernetesUtil{}, &k8sapi.AWSConfiguration{}, kubectl.New())
|
||||||
metadata = awscloud.Metadata{}
|
metadata = awscloud.Metadata{}
|
||||||
cloudControllerManager = awscloud.CloudControllerManager{}
|
cloudControllerManager = awscloud.CloudControllerManager{}
|
||||||
|
cloudNodeManager = &awscloud.CloudNodeManager{}
|
||||||
autoscaler = awscloud.Autoscaler{}
|
autoscaler = awscloud.Autoscaler{}
|
||||||
bindIP = gvisorIP
|
bindIP = gvisorIP
|
||||||
bindPort = defaultPort
|
bindPort = defaultPort
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue