Refactor providers data
This commit is contained in:
parent
a4c8415449
commit
f3e0917471
@ -25,7 +25,7 @@ func (e *EnvironmentsServer) Create(ctx context.Context, in *proto.CreateOptions
|
|||||||
data := &controllers.EnvironemntData{
|
data := &controllers.EnvironemntData{
|
||||||
Name: in.GetMetadata().GetName(),
|
Name: in.GetMetadata().GetName(),
|
||||||
Description: in.GetMetadata().GetDescription(),
|
Description: in.GetMetadata().GetDescription(),
|
||||||
Provider: in.GetSpec().GetProvider().String(),
|
Provider: in.GetSpec().GetProvider(),
|
||||||
Kubernetes: in.GetSpec().GetKubernetes().String(),
|
Kubernetes: in.GetSpec().GetKubernetes().String(),
|
||||||
}
|
}
|
||||||
environment := &controllers.Environemnt{
|
environment := &controllers.Environemnt{
|
||||||
|
2
go.mod
2
go.mod
@ -67,7 +67,7 @@ require (
|
|||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
git.badhouseplants.net/softplayer/softplayer-go-proto v0.1.6
|
git.badhouseplants.net/softplayer/softplayer-go-proto v0.1.7
|
||||||
github.com/golang/protobuf v1.5.4
|
github.com/golang/protobuf v1.5.4
|
||||||
golang.org/x/net v0.22.0 // indirect
|
golang.org/x/net v0.22.0 // indirect
|
||||||
golang.org/x/sys v0.18.0 // indirect
|
golang.org/x/sys v0.18.0 // indirect
|
||||||
|
4
go.sum
4
go.sum
@ -1,5 +1,5 @@
|
|||||||
git.badhouseplants.net/softplayer/softplayer-go-proto v0.1.6 h1:ztek91ZtN2pNsq4VCWNYe8oZf5I7WDUMTDtT2GDKHVU=
|
git.badhouseplants.net/softplayer/softplayer-go-proto v0.1.7 h1:l7v4iWm1cjvEg6BqbWAm21t6WmY0yb5TacKdjIT28rA=
|
||||||
git.badhouseplants.net/softplayer/softplayer-go-proto v0.1.6/go.mod h1:OU+833cHwvecr+gsnPEKQYlAJbpL8bqSJVLobdw63qI=
|
git.badhouseplants.net/softplayer/softplayer-go-proto v0.1.7/go.mod h1:OU+833cHwvecr+gsnPEKQYlAJbpL8bqSJVLobdw63qI=
|
||||||
github.com/alecthomas/assert/v2 v2.6.0 h1:o3WJwILtexrEUk3cUVal3oiQY2tfgr/FHWiz/v2n4FU=
|
github.com/alecthomas/assert/v2 v2.6.0 h1:o3WJwILtexrEUk3cUVal3oiQY2tfgr/FHWiz/v2n4FU=
|
||||||
github.com/alecthomas/assert/v2 v2.6.0/go.mod h1:Bze95FyfUr7x34QZrjL+XP+0qgp/zg8yS+TtBj1WA3k=
|
github.com/alecthomas/assert/v2 v2.6.0/go.mod h1:Bze95FyfUr7x34QZrjL+XP+0qgp/zg8yS+TtBj1WA3k=
|
||||||
github.com/alecthomas/kong v0.9.0 h1:G5diXxc85KvoV2f0ZRVuMsi45IrBgx9zDNGNj165aPA=
|
github.com/alecthomas/kong v0.9.0 h1:G5diXxc85KvoV2f0ZRVuMsi45IrBgx9zDNGNj165aPA=
|
||||||
|
@ -5,11 +5,12 @@ import (
|
|||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
"log"
|
||||||
"strings"
|
|
||||||
|
|
||||||
"github.com/joho/godotenv"
|
"github.com/joho/godotenv"
|
||||||
|
|
||||||
"git.badhouseplants.net/softplayer/softplayer-backend/internal/helpers/kube"
|
"git.badhouseplants.net/softplayer/softplayer-backend/internal/helpers/kube"
|
||||||
|
"git.badhouseplants.net/softplayer/softplayer-backend/internal/providers"
|
||||||
|
proto "git.badhouseplants.net/softplayer/softplayer-go-proto/pkg/environments"
|
||||||
corev1 "k8s.io/api/core/v1"
|
corev1 "k8s.io/api/core/v1"
|
||||||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
||||||
"k8s.io/apimachinery/pkg/types"
|
"k8s.io/apimachinery/pkg/types"
|
||||||
@ -28,29 +29,38 @@ type Environemnt struct {
|
|||||||
type EnvironemntData struct {
|
type EnvironemntData struct {
|
||||||
Name string
|
Name string
|
||||||
Description string
|
Description string
|
||||||
Provider string
|
Provider proto.Provider
|
||||||
Kubernetes string
|
Kubernetes string
|
||||||
HetznerData HetznerData
|
HetznerData proto.HetznerOptions
|
||||||
}
|
}
|
||||||
|
|
||||||
type HetznerData struct {
|
func (e *EnvironemntData) buildVars() (string, error) {
|
||||||
ServerLocation string
|
provider, err := providers.GetProvider(e.Provider)
|
||||||
ServerType string
|
if err != nil {
|
||||||
|
return "", err
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e *EnvironemntData) buildVars() string {
|
serverType, err := provider.GetServerType(e.HetznerData.ServerType)
|
||||||
vars := fmt.Sprintf("SP_PROVIDER=%s\nSP_KUBERNETES=%s", e.providerFmt(), e.kubernetesFmt())
|
if err != nil {
|
||||||
return vars
|
return "", err
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e *EnvironemntData) providerFmt() string {
|
serverLocation, err := provider.GetServerLocation(e.HetznerData.ServerLocation.String())
|
||||||
res := strings.Replace(e.Provider, "PROVIDER_", "", -1)
|
if err != nil {
|
||||||
return strings.ToLower(res)
|
return "", err
|
||||||
}
|
}
|
||||||
|
vars := fmt.Sprintf(`# -- Generated by the softplayer controller
|
||||||
|
SP_PROVIDER=%s
|
||||||
|
SP_KUBERNETES=%s
|
||||||
|
SP_SERVER_TYPE=%s
|
||||||
|
SP_SERVER_LOCATION=%s`,
|
||||||
|
e.Provider,
|
||||||
|
e.Kubernetes,
|
||||||
|
serverType,
|
||||||
|
serverLocation,
|
||||||
|
)
|
||||||
|
|
||||||
func (e *EnvironemntData) kubernetesFmt() string {
|
return vars, nil
|
||||||
res := strings.Replace(e.Kubernetes, "KUBERNETES_", "", -1)
|
|
||||||
return strings.ToLower(res)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (env *Environemnt) isNsVerified(ctx context.Context) error {
|
func (env *Environemnt) isNsVerified(ctx context.Context) error {
|
||||||
@ -74,6 +84,7 @@ func (env *Environemnt) Create(ctx context.Context) error {
|
|||||||
log.Println("Can't verify ns")
|
log.Println("Can't verify ns")
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
env.Controller.GetClient()
|
env.Controller.GetClient()
|
||||||
conf := &rest.Config{
|
conf := &rest.Config{
|
||||||
Host: "https://kubernetes.default.svc.cluster.local:443",
|
Host: "https://kubernetes.default.svc.cluster.local:443",
|
||||||
@ -89,6 +100,10 @@ func (env *Environemnt) Create(ctx context.Context) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
vars, err := env.Data.buildVars()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
obj := corev1.ConfigMap{
|
obj := corev1.ConfigMap{
|
||||||
ObjectMeta: metav1.ObjectMeta{
|
ObjectMeta: metav1.ObjectMeta{
|
||||||
Name: env.Data.Name,
|
Name: env.Data.Name,
|
||||||
@ -100,7 +115,7 @@ func (env *Environemnt) Create(ctx context.Context) error {
|
|||||||
},
|
},
|
||||||
Data: map[string]string{
|
Data: map[string]string{
|
||||||
"description": env.Data.Description,
|
"description": env.Data.Description,
|
||||||
"vars": env.Data.buildVars(),
|
"vars": vars,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
if err := kube.Create(ctx, controller.GetClient(), &obj, false); err != nil {
|
if err := kube.Create(ctx, controller.GetClient(), &obj, false); err != nil {
|
||||||
@ -125,7 +140,6 @@ func (env *Environemnt) Delete(ctx context.Context) error {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
obj := corev1.ConfigMap{
|
obj := corev1.ConfigMap{
|
||||||
ObjectMeta: metav1.ObjectMeta{
|
ObjectMeta: metav1.ObjectMeta{
|
||||||
Name: env.Data.Name,
|
Name: env.Data.Name,
|
||||||
@ -134,9 +148,6 @@ func (env *Environemnt) Delete(ctx context.Context) error {
|
|||||||
"component": "bootstrap",
|
"component": "bootstrap",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
Data: map[string]string{
|
|
||||||
"vars": env.Data.buildVars(),
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
if err := kube.Delete(ctx, controller.GetClient(), &obj, false); err != nil {
|
if err := kube.Delete(ctx, controller.GetClient(), &obj, false); err != nil {
|
||||||
return err
|
return err
|
||||||
@ -194,7 +205,7 @@ func (env *Environemnt) Get(ctx context.Context) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
env.Data.Provider = res["SP_PROVIDER"]
|
// env.Data.Provider = res["SP_PROVIDER"]
|
||||||
env.Data.Kubernetes = res["SP_KUBERNETES"]
|
env.Data.Kubernetes = res["SP_KUBERNETES"]
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1 @@
|
|||||||
package kube_test
|
package kube_test
|
||||||
|
|
||||||
import (
|
|
||||||
"testing"
|
|
||||||
|
|
||||||
"git.badhouseplants.net/softplayer/softplayer-backend/internal/helpers/kube"
|
|
||||||
"github.com/alecthomas/assert/v2"
|
|
||||||
)
|
|
||||||
|
21
internal/providers/common.go
Normal file
21
internal/providers/common.go
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
package providers
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
|
||||||
|
proto "git.badhouseplants.net/softplayer/softplayer-go-proto/pkg/environments"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Providers interface {
|
||||||
|
GetServerType(proto.ServerType) (string, error)
|
||||||
|
GetServerLocation(string) (string, error)
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetProvider(provider proto.Provider) (Providers, error) {
|
||||||
|
switch provider {
|
||||||
|
case proto.Provider_PROVIDER_HETZNER:
|
||||||
|
return &Hetzner{}, nil
|
||||||
|
default:
|
||||||
|
return nil, fmt.Errorf("unknown provider: %s", provider.String())
|
||||||
|
}
|
||||||
|
}
|
@ -1,9 +1,47 @@
|
|||||||
package providers
|
package providers
|
||||||
|
|
||||||
// Hetzner supported regions
|
import (
|
||||||
const (
|
"fmt"
|
||||||
HETZNER_REG_FINLAND = "fn"
|
|
||||||
|
proto "git.badhouseplants.net/softplayer/softplayer-go-proto/pkg/environments"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Hetzner struct {
|
type Hetzner struct{}
|
||||||
|
|
||||||
|
// GetServerLocation implements Providers.
|
||||||
|
func (h *Hetzner) GetServerLocation(location string) (string, error) {
|
||||||
|
switch location {
|
||||||
|
case proto.HetznerLocation_HETZNER_LOCATION_ASHBURN.String():
|
||||||
|
return "ash", nil
|
||||||
|
case proto.HetznerLocation_HETZNER_LOCATION_HILLSBORO.String():
|
||||||
|
return "hil", nil
|
||||||
|
case proto.HetznerLocation_HETZNER_LOCATION_FALKENSTEIN.String():
|
||||||
|
return "fsn1", nil
|
||||||
|
case proto.HetznerLocation_HETZNER_LOCATION_NUREMBERG.String():
|
||||||
|
return "nbg1", nil
|
||||||
|
case proto.HetznerLocation_HETZNER_LOCATION_HELSINKI.String():
|
||||||
|
return "hel1", nil
|
||||||
|
default:
|
||||||
|
return "", fmt.Errorf("unknown location: %s", location)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (h *Hetzner) GetServerType(kind proto.ServerType) (serverType string, err error) {
|
||||||
|
switch kind {
|
||||||
|
case proto.ServerType_SERVER_TYPE_STARTER:
|
||||||
|
serverType = "cpx21"
|
||||||
|
return
|
||||||
|
case proto.ServerType_SERVER_TYPE_REGULAR:
|
||||||
|
serverType = "cpx31"
|
||||||
|
return
|
||||||
|
case proto.ServerType_SERVER_TYPE_PLUS:
|
||||||
|
serverType = "cpx41"
|
||||||
|
return
|
||||||
|
case proto.ServerType_SERVER_TYPE_PRO:
|
||||||
|
serverType = "cpx51"
|
||||||
|
return
|
||||||
|
default:
|
||||||
|
err = fmt.Errorf("unknown server type: %s", kind.String())
|
||||||
|
return
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user