feat: consolidate provider plugin and chart

This commit is contained in:
2026-07-12 14:42:22 +03:30
parent 4996a511eb
commit 077c472b9d
48 changed files with 1870 additions and 854 deletions
+127
View File
@@ -0,0 +1,127 @@
package api
import (
"bytes"
"context"
"encoding/json"
"errors"
"fmt"
"io"
"net/http"
"strings"
"time"
"github.com/KubelanCloud/kks-provider-plugin/pkg/lb/provisioner"
)
type ClientConfig struct {
BaseURL string
Token string
Timeout time.Duration
}
type Client struct {
baseURL string
token string
client *http.Client
}
func NewClient(cfg ClientConfig) *Client {
timeout := cfg.Timeout
if timeout <= 0 {
timeout = 30 * time.Second
}
return &Client{
baseURL: strings.TrimRight(strings.TrimSpace(cfg.BaseURL), "/"),
token: strings.TrimSpace(cfg.Token),
client: &http.Client{Timeout: timeout},
}
}
func (c *Client) Allocate(ctx context.Context, req provisioner.AllocateRequest) (provisioner.LoadBalancer, error) {
var out provisioner.LoadBalancer
if err := c.doJSON(ctx, http.MethodPost, "/v1/loadbalancers", req, &out); err != nil {
return provisioner.LoadBalancer{}, err
}
return out, nil
}
func (c *Client) Get(ctx context.Context, id string) (provisioner.LoadBalancer, error) {
var out provisioner.LoadBalancer
if err := c.doJSON(ctx, http.MethodGet, "/v1/loadbalancers/"+escapePath(id), nil, &out); err != nil {
return provisioner.LoadBalancer{}, err
}
return out, nil
}
func (c *Client) Release(ctx context.Context, id string) error {
err := c.doJSON(ctx, http.MethodDelete, "/v1/loadbalancers/"+escapePath(id), nil, nil)
if isNotFound(err) {
return nil
}
return err
}
func (c *Client) doJSON(ctx context.Context, method, path string, body any, out any) error {
var reader io.Reader
if body != nil {
raw, err := json.Marshal(body)
if err != nil {
return err
}
reader = bytes.NewReader(raw)
}
req, err := http.NewRequestWithContext(ctx, method, c.baseURL+path, reader)
if err != nil {
return err
}
if body != nil {
req.Header.Set("Content-Type", "application/json")
}
if c.token != "" {
req.Header.Set("Authorization", "Bearer "+c.token)
}
resp, err := c.client.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
raw, err := io.ReadAll(resp.Body)
if err != nil {
return err
}
if resp.StatusCode >= 400 {
message := strings.TrimSpace(string(raw))
var payload struct {
Error string `json:"error"`
}
if json.Unmarshal(raw, &payload) == nil && payload.Error != "" {
message = payload.Error
}
if message == "" {
message = resp.Status
}
if resp.StatusCode == http.StatusNotFound {
return NewHTTPError(http.StatusNotFound, message)
}
return fmt.Errorf("lb api %s %s: %s", method, path, message)
}
if out == nil || len(raw) == 0 || resp.StatusCode == http.StatusNoContent {
return nil
}
if err := json.Unmarshal(raw, out); err != nil {
return fmt.Errorf("decode lb api response: %w", err)
}
return nil
}
func escapePath(value string) string {
return strings.ReplaceAll(value, "/", "%2F")
}
func isNotFound(err error) bool {
var httpErr *HTTPError
return errors.As(err, &httpErr) && httpErr.StatusCode == http.StatusNotFound
}
+39
View File
@@ -0,0 +1,39 @@
package api
import (
"context"
"encoding/json"
"net/http"
"net/http/httptest"
"testing"
"github.com/KubelanCloud/kks-provider-plugin/pkg/lb/provisioner"
)
func TestClientAllocate(t *testing.T) {
t.Parallel()
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.Method != http.MethodPost || r.URL.Path != "/v1/loadbalancers" {
t.Fatalf("unexpected request: %s %s", r.Method, r.URL.Path)
}
w.WriteHeader(http.StatusCreated)
_ = json.NewEncoder(w).Encode(provisioner.LoadBalancer{
ID: "abc",
IP: "172.173.200.1",
})
}))
t.Cleanup(srv.Close)
client := NewClient(ClientConfig{BaseURL: srv.URL})
lb, err := client.Allocate(context.Background(), provisioner.AllocateRequest{
Namespace: "default",
Name: "web",
})
if err != nil {
t.Fatalf("Allocate failed: %v", err)
}
if lb.IP != "172.173.200.1" {
t.Fatalf("unexpected lb: %#v", lb)
}
}
+17
View File
@@ -0,0 +1,17 @@
package api
type HTTPError struct {
StatusCode int
Message string
}
func (e *HTTPError) Error() string {
if e == nil {
return ""
}
return e.Message
}
func NewHTTPError(status int, message string) error {
return &HTTPError{StatusCode: status, Message: message}
}
+13
View File
@@ -0,0 +1,13 @@
package provisioner
type LoadBalancer struct {
ID string `json:"id"`
IP string `json:"ip"`
Namespace string `json:"namespace"`
Name string `json:"name"`
}
type AllocateRequest struct {
Namespace string `json:"namespace"`
Name string `json:"name"`
}