2022-03-22 11:03:15 -04:00
|
|
|
package aws
|
|
|
|
|
2022-03-29 07:26:03 -04:00
|
|
|
import (
|
|
|
|
"github.com/edgelesssys/constellation/coordinator/core"
|
|
|
|
"github.com/edgelesssys/constellation/coordinator/kubernetes/k8sapi/resources"
|
|
|
|
k8s "k8s.io/api/core/v1"
|
|
|
|
)
|
|
|
|
|
2022-03-22 11:03:15 -04:00
|
|
|
// Autoscaler holds the AWS cluster-autoscaler configuration.
|
|
|
|
type Autoscaler struct{}
|
|
|
|
|
|
|
|
// Name returns the cloud-provider name as used by k8s cluster-autoscaler.
|
|
|
|
func (a Autoscaler) Name() string {
|
|
|
|
return "aws"
|
|
|
|
}
|
|
|
|
|
2022-03-29 07:26:03 -04:00
|
|
|
// Secrets returns a list of secrets to deploy together with the k8s cluster-autoscaler.
|
|
|
|
func (a Autoscaler) 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 cluster-autoscaler.
|
|
|
|
func (a Autoscaler) Volumes() []k8s.Volume {
|
|
|
|
return []k8s.Volume{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// VolumeMounts returns a list of volume mounts to deploy together with the k8s cluster-autoscaler.
|
|
|
|
func (a Autoscaler) VolumeMounts() []k8s.VolumeMount {
|
|
|
|
return []k8s.VolumeMount{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Env returns a list of k8s environment key-value pairs to deploy together with the k8s cluster-autoscaler.
|
|
|
|
func (a Autoscaler) Env() []k8s.EnvVar {
|
|
|
|
return []k8s.EnvVar{}
|
|
|
|
}
|
|
|
|
|
2022-03-22 11:03:15 -04:00
|
|
|
// Supported is used to determine if we support autoscaling for the cloud provider.
|
|
|
|
func (a Autoscaler) Supported() bool {
|
|
|
|
return false
|
|
|
|
}
|